/* ===================================
   MODERN AGRITECH LANDING PAGE
   Koperasi Produsen Damai Horti Agro Nusantara
   =================================== */

/* ===================================
   CSS VARIABLES - BRAND COLORS
   =================================== */
:root {
    /* Primary Brand Colors */
    --primary-deep-green: #1B5E20;
    --primary-tech-green: #2E7D32;
    --primary-fresh-green: #66BB6A;
    --primary-soft-bg: #F1F8E9;
    --primary-highlight: #F9A825;
    --highlight-accent: #FF9800;
    
    /* Extended Palette */
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    --color-gray-400: #BDBDBD;
    --color-gray-500: #9E9E9E;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;
    --color-gray-900: #212121;
    
    /* Gradient Colors */
    --gradient-green: linear-gradient(135deg, var(--primary-deep-green) 0%, var(--primary-tech-green) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-soft-bg) 0%, var(--color-white) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(27, 94, 32, 0.95) 0%, rgba(46, 125, 50, 0.90) 100%);
    
    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-deep-green);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-700);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-soft-bg);
    color: var(--primary-deep-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-deep-green);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--highlight-accent);
    border: 2px solid var(--highlight-accent);
}

.btn-secondary:hover {
    background: var(--highlight-accent);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 168, 37, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 70px;
    width: auto;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-deep-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-deep-green);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-tech-green);
}

.nav-link.cta-nav {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-green);
    color: var(--color-white);
    border-radius: 6px;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../assets/greenhouse-aerial.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(241, 248, 233, 0.50) 0%, 
        rgba(249, 168, 37, 0.08) 40%, 
        rgba(255, 255, 255, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(27, 94, 32, 0.95);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-deep-green);
    text-shadow: 0 3px 16px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.8);
}

.highlight-text {
    color: var(--primary-deep-green);
    text-shadow: 0 3px 16px rgba(255, 255, 255, 0.95), 0 1px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--color-gray-800);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9), 0 1px 4px rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.92);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--highlight-accent);
    filter: drop-shadow(0 2px 4px rgba(249, 168, 37, 0.3));
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-deep-green);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--highlight-accent);
    box-shadow: 0 4px 16px rgba(249, 168, 37, 0.25);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a:hover {
    background: var(--highlight-accent);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===================================
   MARKET INSIGHT SECTION
   =================================== */
.market-insight-section {
    background: var(--color-white);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-tech-green);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.insight-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft-bg);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.insight-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--highlight-accent) 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-green);
}

.insight-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.insight-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--primary-soft-bg);
    border-radius: 8px;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.highlight-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--highlight-accent);
}

.market-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--gradient-green);
    border-radius: 16px;
    color: var(--color-white);
    flex-wrap: wrap;
}

.market-cta-content h3 {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.market-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.market-cta .btn {
    background: var(--color-white);
    color: var(--primary-deep-green);
}

.market-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section {
    background: var(--primary-soft-bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid #FF9800;
}

.problem-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 1.75rem;
    color: #FF9800;
}

.problem-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.problem-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.problem-impact {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.problem-impact span {
    font-weight: 700;
    color: #FF9800;
}

.problem-summary {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.summary-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    border-radius: 16px;
}

.summary-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.summary-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-deep-green);
}

.summary-content p {
    margin: 0;
    color: var(--color-gray-600);
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution-section {
    background: var(--color-white);
}

.solution-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--primary-soft-bg);
    border-radius: 16px;
}

.solution-visual {
    text-align: center;
}

.visual-image {
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.solution-main:hover .visual-image img {
    transform: scale(1.05);
}

/* Keep old visual-icon styles for backward compatibility */
.visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    border-radius: 20px;
}

.visual-icon i {
    font-size: 4rem;
    color: var(--color-white);
}

.solution-visual h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-deep-green);
}

.solution-visual p {
    color: var(--color-gray-600);
    font-size: 1rem;
}

.solution-description h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-green);
}

.solution-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solution-benefits {
    list-style: none;
}

.solution-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-gray-700);
}

.solution-benefits i {
    color: var(--primary-tech-green);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.systems-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--primary-deep-green);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.system-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.system-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-system {
    border: 2px solid var(--primary-tech-green);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-green);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.system-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft-bg);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.system-icon i {
    font-size: 2.25rem;
    color: var(--primary-tech-green);
}

.system-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-deep-green);
}

.system-category {
    font-size: 0.875rem;
    color: var(--primary-tech-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.system-description {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.system-advantages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--primary-soft-bg);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.advantage-item i {
    color: var(--primary-tech-green);
    font-size: 1rem;
}

/* Greenhouse Showcase */
.greenhouse-showcase {
    margin: 4rem 0 3rem;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.greenhouse-showcase:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(27, 94, 32, 0.4) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.showcase-badge i {
    font-size: 1.25rem;
    color: var(--highlight-accent);
}

.showcase-badge span {
    font-weight: 700;
    color: var(--primary-deep-green);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-caption {
    padding: 2.5rem;
    text-align: center;
    background: var(--primary-soft-bg);
}

.showcase-caption h4 {
    font-size: 1.75rem;
    color: var(--primary-deep-green);
    margin-bottom: 0.75rem;
}

.showcase-caption p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin: 0;
}

.solution-cta {
    text-align: center;
    padding: 3rem;
    background: var(--primary-soft-bg);
    border-radius: 16px;
}

.solution-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-green);
}

.solution-cta p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

/* ===================================
   AUTHORITY SECTION
   =================================== */
/* ===================================
   AUTHORITY SECTION - REDESIGNED
   =================================== */
.authority-section {
    background: var(--primary-soft-bg);
    padding: 5rem 0;
}

/* Top Section */
.authority-top {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.authority-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.08) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin: 0 auto 2rem;
    width: fit-content;
    border: 2px solid var(--highlight-accent);
}

.authority-badge i {
    font-size: 1.25rem;
    color: var(--highlight-accent);
}

.authority-badge span {
    font-weight: 600;
    color: var(--primary-deep-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.authority-header {
    text-align: center;
    margin-bottom: 3rem;
}

.authority-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-deep-green);
}

.authority-intro {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* Research Highlight Card */
.research-highlight-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.research-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft-bg);
    border-radius: 16px;
}

.research-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-tech-green);
}

.research-highlight-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--primary-deep-green);
}

.research-highlight-card p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.research-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric-box {
    background: var(--primary-soft-bg);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.metric-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.metric-icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
}

.metric-icon-box i {
    font-size: 1.75rem;
    color: var(--primary-tech-green);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-deep-green);
}

/* Two Column Section */
.authority-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Reference Box (Left) */
.reference-box {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid #FF9800;
    background-image: url('../assets/melon-yellow-greenhouse.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.reference-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.reference-box > * {
    position: relative;
    z-index: 1;
}

.reference-box-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft-bg);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.reference-box-icon i {
    font-size: 2rem;
    color: var(--primary-tech-green);
}

.reference-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-tech-green);
    margin-bottom: 1rem;
    display: block;
}

.reference-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-deep-green);
    line-height: 1.4;
}

.reference-institution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-soft-bg);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.reference-institution i {
    font-size: 1.25rem;
    color: var(--primary-tech-green);
}

.reference-institution span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-deep-green);
}

.reference-author-box {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-soft-bg);
    border-radius: 12px;
}

.author-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-tech-green);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-deep-green);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* Quote Box (Right) */
.quote-box {
    background: var(--gradient-green);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.quote-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.quote-icon {
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.quote-box blockquote {
    margin: 0 0 2rem 0;
}

.quote-box blockquote p {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-white);
    margin: 0;
    font-weight: 500;
}

.quote-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

/* Accuracy Indicator Circle */
.accuracy-indicator {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.accuracy-circle {
    position: relative;
    width: 180px;
    height: 180px;
}

.accuracy-circle svg {
    width: 100%;
    height: 100%;
}

.accuracy-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.accuracy-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.accuracy-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===================================
   BUSINESS VALUE SECTION
   =================================== */
.business-value-section {
    background: var(--color-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-tech-green);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.primary-value {
    background: var(--primary-soft-bg);
    border-top: 4px solid var(--primary-deep-green);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-green);
}

.value-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.value-metrics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.metric-tag {
    padding: 0.5rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--primary-tech-green);
    color: var(--primary-tech-green);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.value-summary {
    padding: 3rem;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    border-radius: 16px;
}

.summary-box {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.value-summary .summary-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 94, 32, 0.2);
    border-radius: 16px;
}

.value-summary .summary-icon i {
    font-size: 2.5rem;
    color: var(--primary-deep-green);
}

.value-summary .summary-content h3 {
    color: var(--primary-deep-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-summary .summary-content p {
    color: var(--primary-deep-green);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   PRODUCT GALLERY SECTION
   =================================== */
.product-gallery-section {
    background: var(--color-white);
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(27, 94, 32, 0.95) 0%, rgba(27, 94, 32, 0.7) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--color-white);
    text-align: left;
    width: 100%;
}

.overlay-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.overlay-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
}

.overlay-content h4 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   OFFERS SECTION
   =================================== */
.offers-section {
    background: var(--primary-soft-bg);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-offer {
    border: 2px solid var(--primary-tech-green);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--highlight-accent) 0%, #FF9800 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(249, 168, 37, 0.3);
}

.offer-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft-bg);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.offer-icon i {
    font-size: 2.25rem;
    color: var(--primary-tech-green);
}

.offer-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-deep-green);
}

.offer-category {
    font-size: 0.875rem;
    color: var(--primary-tech-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.offer-description {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray-700);
    font-size: 0.95rem;
}

.offer-features li:last-child {
    margin-bottom: 0;
}

.offer-features i {
    color: var(--primary-tech-green);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.offers-custom {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    background: var(--gradient-green);
    border-radius: 16px;
    color: var(--color-white);
}

.custom-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.custom-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.custom-content h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.custom-content .btn {
    background: var(--color-white);
    color: var(--primary-deep-green);
}

.custom-content .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===================================
   RISK MANAGEMENT SECTION
   =================================== */
.risk-management-section {
    background: var(--color-white);
}

.risk-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.comparison-column {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.conventional {
    border-left: 4px solid #FF9800;
}

.controlled {
    border-left: 4px solid var(--primary-tech-green);
}

.column-header {
    text-align: center;
    margin-bottom: 2rem;
}

.column-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.conventional .column-header i {
    color: #FF9800;
}

.controlled .column-header i {
    color: var(--primary-tech-green);
}

.column-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-deep-green);
}

.risk-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.high-risk {
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
}

.low-risk {
    background: var(--primary-soft-bg);
    color: var(--primary-tech-green);
}

.risk-list {
    list-style: none;
}

.risk-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.risk-list i {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.conventional .risk-list i {
    color: #FF9800;
}

.controlled .risk-list i {
    color: var(--primary-tech-green);
}

.risk-list strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-deep-green);
    margin-bottom: 0.25rem;
}

.risk-list p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow i {
    font-size: 2.5rem;
    color: var(--primary-tech-green);
}

.risk-benefits {
    margin-bottom: 3rem;
}

.risk-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-deep-green);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--primary-soft-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    border-radius: 12px;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--color-white);
}

.benefit-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-deep-green);
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin: 0;
}

.risk-cta {
    text-align: center;
    padding: 3rem;
    background: var(--primary-soft-bg);
    border-radius: 16px;
}

.risk-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-deep-green);
}

.risk-cta p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    background: var(--gradient-light);
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pillar-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft-bg);
    border-radius: 14px;
}

.pillar-icon i {
    font-size: 1.75rem;
    color: var(--primary-tech-green);
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: var(--primary-deep-green);
    line-height: 1.4;
}

.pillar-card p {
    color: var(--color-gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.trust-values {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.values-header {
    text-align: center;
    margin-bottom: 2rem;
}

.values-header h3 {
    font-size: 2rem;
    color: var(--primary-deep-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--primary-soft-bg);
    border-radius: 10px;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-tech-green);
}

.value-item span {
    font-weight: 600;
    color: var(--color-gray-700);
}

.trust-statement {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--primary-deep-green);
}

.statement-icon i {
    font-size: 3rem;
    color: rgba(27, 94, 32, 0.3);
    margin-bottom: 1.5rem;
}

.trust-statement blockquote p {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--primary-deep-green);
    margin-bottom: 2rem;
}

.statement-author strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-deep-green);
}

.statement-author span {
    font-size: 0.95rem;
    color: var(--primary-deep-green);
    opacity: 0.8;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.cta-final-section {
    background: var(--gradient-green);
    color: var(--color-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.cta-icon i {
    font-size: 3.5rem;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-buttons .btn {
    background: var(--color-white);
    color: var(--primary-deep-green);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    font-size: 1.25rem;
}

.cta-assurance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--color-white);
}

.assurance-item i {
    font-size: 1.25rem;
    color: var(--highlight-accent);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.footer-logo {
    height: 250px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
}

.footer-brand h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--primary-fresh-green);
}

.footer-column ul li i {
    margin-right: 0.5rem;
    color: var(--primary-fresh-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-800);
}

.footer-bottom p {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--primary-fresh-green);
    font-weight: 600;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .solution-main {
        grid-template-columns: 1fr;
    }
    
    .risk-comparison {
        grid-template-columns: 1fr;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        height: 55px;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .footer-brand h3 {
        font-size: 1.125rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .showcase-image {
        height: 350px;
    }
    
    .showcase-caption {
        padding: 2rem 1.5rem;
    }
    
    .showcase-caption h4 {
        font-size: 1.375rem;
    }
    
    .nav-content {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .market-grid,
    .problem-grid,
    .systems-grid,
    .value-grid,
    .offers-grid,
    .trust-pillars,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 350px;
    }
    
    .visual-image {
        height: 350px;
    }
    
    .research-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .authority-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .market-cta,
    .offers-custom {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-contact-info,
    .cta-assurance {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 48px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-brand h3 {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .footer-brand p {
        font-size: 0.875rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .showcase-image {
        height: 280px;
    }
    
    .visual-image {
        height: 280px;
    }
    
    .showcase-overlay {
        padding: 1.5rem;
    }
    
    .showcase-badge {
        padding: 0.75rem 1.25rem;
    }
    
    .showcase-badge i {
        font-size: 1rem;
    }
    
    .showcase-badge span {
        font-size: 0.875rem;
    }
    
    .showcase-caption {
        padding: 1.75rem 1.25rem;
    }
    
    .showcase-caption h4 {
        font-size: 1.25rem;
    }
    
    .showcase-caption p {
        font-size: 0.95rem;
    }
    
    .authority-header h2 {
        font-size: 1.875rem;
    }
    
    .research-highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .research-highlight-card h3 {
        font-size: 1.5rem;
    }
    
    .research-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .reference-box,
    .quote-box {
        padding: 2rem 1.5rem;
    }
    
    .quote-box blockquote p {
        font-size: 1.125rem;
    }
    
    .accuracy-circle {
        width: 140px;
        height: 140px;
    }
    
    .accuracy-number {
        font-size: 2.25rem;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.25rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}