/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables - Agtech Inspired */
:root {
    --primary-green: #367C2B;      /* John Deere inspired */
    --citrus-orange: #FF8C42;      /* Citrus industry */
    --tech-blue: #01BEFF;          /* Bayer inspired */
    --light-green: #4CAF50;        /* BASF inspired */
    --dark-forest: #2C5F2D;        /* Deep forest */
    --soft-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--light-green));
    --gradient-secondary: linear-gradient(135deg, var(--tech-blue), var(--citrus-orange));
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

/* Animated Background Elements */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* DNA Helix Animation */
.dna-helix {
    position: absolute;
    width: 4px;
    height: 100px;
    background: linear-gradient(45deg, var(--tech-blue), var(--primary-green));
    border-radius: 2px;
    opacity: 0.1;
    animation: dna-float 15s linear infinite;
}

.dna-helix:before,
.dna-helix:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tech-blue);
}

.dna-helix:before {
    top: 20%;
    left: -2px;
}

.dna-helix:after {
    bottom: 20%;
    right: -2px;
    background: var(--primary-green);
}

@keyframes dna-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Particle Network */
.particle-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--tech-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-drift 20s linear infinite;
}

.particle:nth-child(odd) {
    background: var(--primary-green);
    animation-duration: 25s;
}

@keyframes particle-drift {
    0% {
        transform: translate(0, 100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: scale(1);
    }
    90% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        transform: translate(50px, -100px) scale(0);
        opacity: 0;
    }
}

/* Floating Leaves */
.leaf-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.05;
    animation: leaf-float 30s linear infinite;
}

.leaf-particle:before {
    content: '🍃';
    font-size: 16px;
    color: var(--primary-green);
}

@keyframes leaf-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(75vh) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(50vh) translateX(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(25vh) translateX(30px) rotate(270deg);
    }
    100% {
        transform: translateY(-100px) translateX(0) rotate(360deg);
    }
}

/* Circuit Pattern */
.circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
    opacity: 0.1;
    animation: circuit-flow 8s linear infinite;
}

@keyframes circuit-flow {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        width: 200px;
        opacity: 0;
    }
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 5px;
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--medium-gray);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(54, 124, 43, 0.1);
    color: var(--primary-green);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(54, 124, 43, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="citrusGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23367C2B;stop-opacity:0.1"/><stop offset="50%" style="stop-color:%234CAF50;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%2301BEFF;stop-opacity:0.1"/></linearGradient></defs><rect width="100%" height="100%" fill="url(%23citrusGrad)"/><circle cx="200" cy="150" r="80" fill="%23367C2B" opacity="0.03"/><circle cx="800" cy="300" r="120" fill="%2301BEFF" opacity="0.02"/><circle cx="1000" cy="600" r="100" fill="%23FF8C42" opacity="0.03"/><path d="M0,400 Q300,350 600,400 T1200,400 V800 H0 Z" fill="%23367C2B" opacity="0.05"/></svg>') center/cover;
}

.ai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 190, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(54, 124, 43, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    animation: ai-pulse 10s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--tech-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

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

.secondary-btn {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        inset 0 2px 10px rgba(255,255,255,0.9);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scan-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    animation: scan-line 3s linear infinite;
    opacity: 0.8;
}

@keyframes scan-line {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(520px); opacity: 0; }
}

.detection-result {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
    animation: result-pulse 3s ease-in-out infinite;
}

@keyframes result-pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.result-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
}

.result-indicator.healthy {
    background: var(--light-green);
    animation: healthy-glow 2s ease-in-out infinite;
}

@keyframes healthy-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }
    50% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.8); }
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.challenge-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.solution-section {
    margin-top: 80px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.leaf-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.leaf {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.leaf.healthy {
    background: var(--gradient-primary);
    animation: healthy-pulse 3s ease-in-out infinite;
}

.leaf.infected {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    animation: infected-pulse 3s ease-in-out infinite;
}

@keyframes healthy-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(76, 175, 80, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(76, 175, 80, 0.5); }
}

@keyframes infected-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 107, 107, 0.5); }
}

.vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--medium-gray);
}

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

.solution-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.solution-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--dark-gray);
}

.solution-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background: var(--soft-gray);
    position: relative;
}

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

.tech-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover:before {
    transform: scaleX(1);
}

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

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.workflow-section {
    margin-top: 80px;
}

.workflow-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
}

.step h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: var(--white);
}

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

.metric-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card.highlight {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.metric-card.highlight .metric-value {
    color: white;
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.metric-card.highlight .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

.dataset-info {
    background: var(--soft-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.dataset-info h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tech-blue);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--soft-gray);
}

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

.partner-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

.partner-logo {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

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

.research-highlights {
    margin-top: 60px;
}

.research-highlights h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

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

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Demo/Contact Section */
.demo-contact {
    padding: 100px 0;
    background: var(--primary-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.demo-contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(1, 190, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
}

.demo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.demo-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.action-card .primary-btn {
    background: white;
    color: var(--primary-green);
}

.action-card .secondary-btn {
    background: transparent;
    color: white;
    border-color: white;
}

.action-card .secondary-btn:hover {
    background: white;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }
    
    .language-toggle {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .metric-value {
        font-size: 2rem;
    }
}