/* ============================================
   REPLANER - MODERN RESPONSIVE STYLES
   Enhanced for production-quality standards
   ============================================ */

/* CSS Variables - Enhanced Color System */
:root {
    /* Primary Green Palette */
    --evergreen: #132A13;
    --hunter-green: #31572C;
    --fern: #4F772D;
    --palm-leaf: #90A955;
    --lime-cream: #ECF39E;

    /* Background Variations */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAF5;
    --bg-tertiary: #F0F4EB;
    --cream-light: #F5F9E8;

    /* Text Colors */
    --text-primary: #132A13;
    --text-secondary: #31572C;
    --text-muted: #6B7B5F;
    --text-on-dark: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--fern) 0%, var(--hunter-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--palm-leaf) 0%, var(--lime-cream) 100%);
    --gradient-hero: linear-gradient(145deg, var(--cream-light) 0%, var(--bg-secondary) 50%, rgba(236, 243, 158, 0.4) 100%);
    --gradient-dark: linear-gradient(135deg, var(--evergreen) 0%, var(--hunter-green) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(19, 42, 19, 0.04);
    --shadow-md: 0 4px 12px rgba(19, 42, 19, 0.08);
    --shadow-lg: 0 12px 40px rgba(19, 42, 19, 0.12);
    --shadow-xl: 0 24px 80px rgba(19, 42, 19, 0.16);
    --shadow-glow: 0 0 40px rgba(144, 169, 85, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* ============================================
   NAVBAR - ENHANCED
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(19, 42, 19, 0.06);
    transition: all 0.3s ease;
}

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

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.logo:hover .logo-icon {
    box-shadow: var(--shadow-glow);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fern);
    border-radius: 999px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--fern);
}

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

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* ============================================
   BUTTONS - ENHANCED
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(79, 119, 45, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 119, 45, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--palm-leaf);
}

.btn-secondary:hover {
    background: var(--cream-light);
    border-color: var(--fern);
    color: var(--fern);
}

/* ============================================
   MOBILE MENU - ENHANCED
   ============================================ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 999px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(19, 42, 19, 0.08);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem;
    display: block;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    background: var(--bg-secondary);
    color: var(--fern);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(19, 42, 19, 0.08);
}

/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + 4rem) 1.5rem 5rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--palm-leaf), var(--lime-cream));
    top: -150px;
    right: -100px;
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--lime-cream), var(--palm-leaf));
    bottom: -100px;
    left: -100px;
    opacity: 0.4;
    animation: float 12s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--fern);
    opacity: 0.15;
    top: 40%;
    right: 25%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.25;
    }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    flex-direction: row;
}

.hero-content {
    /* animation: fadeSlideUp 0.8s ease-out; */
    display: flex;
    flex-direction: column;
    align-items: center;

}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(144, 169, 85, 0.1);
    color: var(--fern);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(144, 169, 85, 0.2);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--fern);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--fern);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin: 0 auto 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--fern);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    /* animation: fadeSlideUp 0.8s ease-out 0.2s both; */
    padding-top: 1rem;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    background: var(--evergreen);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, white 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--evergreen);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.app-ui {
    padding: 50px 1rem 1rem;
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.app-greeting {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-greeting strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-top: 2px;
    font-weight: 700;
}

.app-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.app-card {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 1rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.app-card h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.app-card p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.app-button {
    background: white;
    color: var(--fern);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.app-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.app-list-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.app-icon {
    width: 40px;
    height: 40px;
    background: rgba(144, 169, 85, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.app-item-text h4 {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.app-item-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    animation: float-card 6s ease-in-out infinite;
    border: 1px solid rgba(19, 42, 19, 0.06);
}

.floating-card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-stat-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.mini-stat-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
}

.mini-stat-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   STATS SECTION - ENHANCED
   ============================================ */

.stats-section {
    padding: 5rem 1.5rem;
    background: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.08), transparent);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid rgba(144, 169, 85, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--palm-leaf);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   SECTION COMMON STYLES - ENHANCED
   ============================================ */

.section {
    padding: 6rem 1.5rem;
    position: relative;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(144, 169, 85, 0.1);
    color: var(--fern);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(144, 169, 85, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-section {
    background: white;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.06), transparent);
}

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

.about-content {
    padding-right: 1rem;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(144, 169, 85, 0.1);
}

.value-item:hover {
    transform: translateX(8px);
    border-color: var(--palm-leaf);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.about-image-container {
    background: linear-gradient(135deg, var(--cream-light), rgba(144, 169, 85, 0.15));
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-stat {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(144, 169, 85, 0.1);
}

.team-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--palm-leaf);
}

.team-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--fern);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.team-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-mission {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(144, 169, 85, 0.1);
}

.mission-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-mission p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-values {
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .value-item:hover {
        transform: translateX(0) translateY(-4px);
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .team-stat {
        padding: 1rem;
    }

    .team-number {
        font-size: 1.5rem;
    }

    .team-label {
        font-size: 0.8rem;
    }

    .about-image-container {
        padding: 1.5rem;
    }
}

.how-it-works {
    background: var(--bg-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.06), transparent);
}

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

.step-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(144, 169, 85, 0.12);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--palm-leaf);
}

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

.step-connector {
    position: absolute;
    top: 30px;
    right: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--palm-leaf), transparent);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   DUAL AUDIENCE - ENHANCED
   ============================================ */

.dual-audience {
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.audience-card {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(144, 169, 85, 0.12);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

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

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--palm-leaf);
}

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

.audience-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.audience-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.audience-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.audience-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.audience-features li svg {
    width: 22px;
    height: 22px;
    color: var(--fern);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   APP SHOWCASE - ENHANCED
   ============================================ */

.app-showcase {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.app-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(144, 169, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 243, 158, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.app-showcase .section-title {
    color: white;
}

.app-showcase .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.showcase-content {
    position: relative;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.showcase-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(236, 243, 158, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 243, 158, 0.2);
}

.showcase-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.showcase-feature-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-phone {
    width: 280px;
    height: 580px;
    background: white;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.showcase-phone:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.02);
}

.showcase-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.floating-ui-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float-ui 5s ease-in-out infinite;
    border: 1px solid rgba(19, 42, 19, 0.06);
}

.floating-ui-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-ui-2 {
    bottom: 25%;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-ui-3 {
    top: 50%;
    right: -30px;
    animation-delay: 3s;
}

@keyframes float-ui {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* ============================================
   WHY REPLANER - ENHANCED
   ============================================ */

.why-replaner {
    background: var(--bg-secondary);
    position: relative;
}

.why-replaner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.06), transparent);
}

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

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(144, 169, 85, 0.1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--palm-leaf);
}

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

.benefit-card:nth-child(2),
.benefit-card:nth-child(5) {
    background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   IMPACT SECTION - ENHANCED
   ============================================ */

.impact-section {
    background: white;
    position: relative;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.06), transparent);
}

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

.impact-content {
    padding-right: 2rem;
}

.impact-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.impact-stat {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--fern);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.impact-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fern);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.impact-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.impact-visual {
    position: relative;
}

.impact-image-container {
    background: linear-gradient(135deg, var(--lime-cream), rgba(144, 169, 85, 0.2));
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.impact-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(144, 169, 85, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.impact-graphic {
    position: relative;
    z-index: 1;
    text-align: center;
}

.impact-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3.5rem;
    box-shadow: var(--shadow-lg);
    animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.impact-graphic h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.impact-graphic p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============================================
   SOCIAL PRESENCE - ENHANCED
   ============================================ */

.social-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--cream-light) 100%);
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.06), transparent);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(144, 169, 85, 0.12);
    box-shadow: var(--shadow-sm);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--palm-leaf);
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icon.linkedin {
    background: #0077B5;
    color: white;
}

.social-icon.twitter {
    background: #000000;
    color: white;
}

.social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.social-icon.email {
    background: var(--gradient-primary);
    color: white;
}

.social-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.social-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION - ENHANCED
   ============================================ */

.faq-section {
    background: white;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 42, 19, 0.06), transparent);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(144, 169, 85, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: var(--palm-leaf);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--palm-leaf);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--fern);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--fern);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   FINAL CTA - ENHANCED
   ============================================ */

.final-cta {
    background: var(--gradient-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(144, 169, 85, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(236, 243, 158, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .section-container {
    position: relative;
    z-index: 1;
}

.final-cta .section-title {
    color: white;
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.final-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-primary {
    background: var(--lime-cream);
    color: var(--evergreen);
    font-size: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(236, 243, 158, 0.3);
}

.final-cta .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 243, 158, 0.4);
}

.final-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ============================================
   FOOTER - ENHANCED
   ============================================ */

.footer {
    background: var(--evergreen);
    color: white;
    padding: 4rem 1.5rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--evergreen);
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--lime-cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--lime-cream);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--lime-cream);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - COMPREHENSIVE
   ============================================ */

/* Desktop to Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }


    .hero-description {
        margin: 0 auto 2rem;
    }



    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .step-connector {
        display: none;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-content {
        text-align: center;
    }

    .showcase-features {
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .impact-content {
        padding-right: 0;
        text-align: center;
    }

    .impact-stats {
        max-width: 500px;
        margin: 0 auto;
    }

    .impact-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .floating-card,
    .floating-ui-card {
        transform: scale(0.85);
        /* Responsive scaling */
    }
}

/* Tablet and below (768px) */
@media (max-width: 768px) {

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar-container {
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: calc(72px + 2rem) 1rem 3rem;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column-reverse;
    }



    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        flex-direction: column;
        align-items: center;
        padding-top: 0.5rem;
        padding-bottom: 1rem;
        justify-self: center;
        margin-top: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        margin: 0 auto;
    }

    /* Keep floating cards animated but scale them down */
    .floating-card,
    .floating-ui-card {
        transform: scale(0.8) !important;
    }

    .floating-card-1 {
        right: -30px !important;
    }

    .floating-card-2 {
        left: -30px !important;
    }



    .section {
        padding: 4rem 1rem;
    }

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-card[style*="grid-column"] {
        grid-column: span 1 !important;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .impact-image-container {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .final-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .showcase-phone {
        width: 240px;
        height: 480px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem;
    }

    .stat-icon {
        margin: 0;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .audience-card {
        padding: 1.5rem;
    }

    .audience-title {
        font-size: 1.25rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .impact-stat-number {
        font-size: 1.75rem;
    }

    .social-card {
        padding: 1rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

*:focus-visible {
    outline: 2px solid var(--fern);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --text-muted: #132A13;
    }

    .btn-secondary {
        border-width: 3px;
    }
}

@media print {

    .navbar,
    .hero-visual,
    .floating-card,
    .floating-ui-card,
    .mobile-menu-btn,
    .btn {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }

    .section {
        padding: 2rem;
        page-break-inside: avoid;
    }
}