/* ========================================
   AGROMEET LANDING PAGE - STYLES
   ======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --green-900: #1b4332;
    --green-800: #2d6a4f;
    --green-700: #40916c;
    --green-600: #52b788;
    --green-500: #74c69d;
    --green-400: #95d5b2;
    --green-300: #b7e4c7;
    --green-200: #d8f3dc;
    --green-100: #edf7f0;
    --green-50: #f5faf7;

    /* Accents */
    --orange: #e76f51;
    --orange-light: #fef0ec;
    --yellow: #f4a261;
    --yellow-light: #fef7ec;
    --red: #e63946;
    --red-light: #fdeced;
    --blue: #457b9d;
    --blue-light: #ecf4f8;
    --purple: #7c3aed;
    --purple-light: #f3ecfe;

    /* Neutres */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
    color: var(--gray-900);
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--orange);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    color: var(--white);
    border-color: var(--green-700);
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-300);
}

.btn--outline:hover {
    background: var(--green-50);
    border-color: var(--green-500);
}

.btn--white {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* ===== STORE BADGES ===== */
.hero__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.store-badge svg {
    flex-shrink: 0;
}

.store-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-badge__small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.store-badge__name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Version claire pour le CTA final */
.store-badge--light {
    background: var(--white);
    color: var(--gray-900);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.store-badge--light:hover {
    background: var(--gray-50);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(45, 106, 79, 0.25));
    transition: var(--transition);
}

.navbar__logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(45, 106, 79, 0.35));
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__links li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.navbar__links li a:hover {
    color: var(--green-700);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background-color: var(--green-900);
}

/* Background Image avec overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/background-image-2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

/* Responsive background adjustments */
@media (max-width: 1024px) {
    .hero::before {
        background-attachment: scroll;
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .hero::before {
        background-position: 60% center;
        background-size: cover;
    }
}

@media (max-width: 480px) {
    .hero::before {
        background-position: 65% center;
    }
}

/* Overlay gradient pour lisibilité */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(27, 67, 50, 0.45) 50%,
        rgba(45, 106, 79, 0.35) 100%
    );
    z-index: 1;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape--1 {
    width: 600px;
    height: 600px;
    background: var(--white);
    top: -200px;
    right: -100px;
}

.shape--2 {
    width: 400px;
    height: 400px;
    background: var(--white);
    bottom: -100px;
    left: -100px;
}

.shape--3 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    top: 40%;
    left: 50%;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--green-200);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero__title .text-gradient {
    background: linear-gradient(135deg, var(--green-300), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

/* Boutons hero adaptés au fond sombre */
.hero .btn--primary {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn--primary:hover {
    background: var(--green-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.hero .btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat__number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat__plus {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.stat__label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

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

.phone-mockup {
    position: relative;
}

.phone-mockup__frame {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

.phone-mockup--tilted {
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 100px 0;
}

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

.section__tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section__tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--green-200);
}

.section__title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__title--light {
    color: var(--white);
}

.section__desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== PROBLÈME ===== */
.section--problem {
    background: var(--gray-50);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.problem-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--orange-light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== SOLUTION ===== */
.solution__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution__text {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.solution__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
}

.solution__visual {
    display: flex;
    justify-content: center;
}

/* ===== FONCTIONNALITÉS ===== */
.section--features {
    background: var(--green-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card__icon--orange { background: var(--orange-light); color: var(--orange); }
.feature-card__icon--red { background: var(--red-light); color: var(--red); }
.feature-card__icon--green { background: var(--green-200); color: var(--green-800); }
.feature-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.feature-card__icon--purple { background: var(--purple-light); color: var(--purple); }
.feature-card__icon--yellow { background: var(--yellow-light); color: var(--yellow); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== COMMENT ÇA MARCHE ===== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    max-width: 280px;
    padding: 0 20px;
    position: relative;
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card__icon {
    width: 72px;
    height: 72px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.step-card__connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    flex-shrink: 0;
}

/* ===== APP SHOWCASE ===== */
.section--showcase {
    background: var(--gray-50);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.showcase-item__img {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-item:hover .showcase-item__img {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.showcase-item__label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.mockup-placeholder--landscape {
    padding: 40px 20px;
}

/* ===== BÉNÉFICES ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-300);
}

.benefit-card--highlight {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: var(--green-400);
    grid-column: 2 / 4;
}

.benefit-card--highlight .benefit-card__emoji {
    font-size: 36px;
}

.benefit-card--highlight h3 {
    color: var(--green-800);
}

.benefit-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-card__emoji {
    font-size: 32px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
}

.benefit-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-card li {
    font-size: 14px;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.benefit-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
}

/* ===== IMPACT ===== */
.section--impact {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    color: var(--white);
}

.impact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact__text {
    font-size: 17px;
    color: var(--green-300);
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.impact-stat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.impact-stat__icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-300);
}

.impact-stat h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.impact-stat p {
    font-size: 14px;
    color: var(--green-400);
    line-height: 1.5;
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-card__author strong {
    display: block;
    font-size: 14px;
    color: var(--gray-800);
}

.testimonial-card__author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== CTA FINAL ===== */
.section--cta {
    padding: 80px 0 100px;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    overflow: hidden;
}

.cta-box__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--white);
}

.cta-shape--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-shape--2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -40px;
}

.cta-box__content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
}

.cta-box p {
    font-size: 18px;
    color: var(--green-200);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== CONTACT ===== */
.section--contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-300);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card__icon--green {
    background: var(--green-200);
    color: var(--green-800);
}

.contact-card__icon--blue {
    background: var(--blue-light);
    color: var(--blue);
}

.contact-card__icon--whatsapp {
    background: #dcfce7;
    color: #25d366;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.contact-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-card__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-700);
    padding: 8px 20px;
    background: var(--green-100);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.contact-card:hover .contact-card__action {
    background: var(--green-800);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer__brand p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-500);
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer__socials a:hover {
    background: var(--green-700);
    color: var(--white);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    font-size: 14px;
    color: var(--gray-500);
}

.footer__col a:hover {
    color: var(--green-400);
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 42px;
    }

    .section__title {
        font-size: 34px;
    }

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

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

    .benefit-card--highlight {
        grid-column: 1 / -1;
    }

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

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

    .impact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Sidebar Mobile Menu */
    .navbar__links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 40px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar__links.active {
        right: 0;
    }

    .navbar__links li {
        width: 100%;
    }

    .navbar__links li a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-700);
        border-radius: var(--radius-md);
        transition: var(--transition);
    }

    .navbar__links li a:hover {
        background: var(--green-50);
        color: var(--green-700);
    }

    .navbar__links li a.btn {
        margin-top: 16px;
        text-align: center;
        background: linear-gradient(135deg, var(--green-800), var(--green-600));
        color: var(--white);
    }

    .navbar__links li a.btn:hover {
        background: linear-gradient(135deg, var(--green-700), var(--green-500));
    }

    /* Overlay */
    .navbar__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 998;
    }

    .navbar__overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hamburger Toggle */
    .navbar__toggle {
        display: flex;
        z-index: 1001;
    }

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

    .navbar__toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    /* Logo responsive */
    .navbar__inner {
        height: 80px;
    }

    .navbar__logo-img {
        height: 80px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__stores {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

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

    .phone-mockup--tilted {
        transform: none;
    }

    .section {
        padding: 70px 0;
    }

    .section__title {
        font-size: 28px;
    }

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

    .solution__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution__visual {
        order: -1;
    }

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .step-card__connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

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

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat__divider {
        display: none;
    }

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

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

    .hero__stores .store-badge {
        width: 100%;
        justify-content: center;
    }

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

    .cta-box__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-box__buttons .btn,
    .cta-box__buttons .store-badge {
        width: 100%;
        justify-content: center;
    }

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

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