/* ═══════════════════════════════════════════════════════════════════════════
   Jardinaute – app.css  v2
   Palette : #1a3c2e (forêt) · #2d6a4f · #52b788 · #e9c46a (ambre CTA)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Verts */
    --clr-dark:       #0d2818;
    --clr-primary:    #1a3c2e;
    --clr-secondary:  #2d6a4f;
    --clr-accent:     #52b788;
    --clr-accent-m:   #95d5b2;
    --clr-accent-l:   #d8f3dc;
    /* Ambre (CTA) */
    --clr-cta:        #e9c46a;
    --clr-cta-dark:   #c9a227;
    /* Neutres */
    --clr-bg:         #f4f7f5;
    --clr-surface:    #ffffff;
    --clr-border:     #e0ebe4;
    --clr-text:       #0d2818;
    --clr-text-m:     #3d5a47;
    --clr-text-l:     #7a9e8a;
    /* Feedback */
    --clr-error:      #c0392b;
    --clr-warning:    #d68910;
    --clr-info:       #1a6fa8;
    --clr-success:    #1e8449;

    --radius:    8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-xs: 0 1px 4px rgba(13,40,24,.07);
    --shadow-sm: 0 2px 8px rgba(13,40,24,.09);
    --shadow:    0 4px 20px rgba(13,40,24,.11);
    --shadow-lg: 0 8px 40px rgba(13,40,24,.14);

    --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
    --container: 1200px;
    --nav-h:     64px;
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  {
    font-family: var(--font);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main  { flex: 1; }
a     { color: var(--clr-secondary); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--clr-primary); }
img   { max-width: 100%; height: auto; }

/* ─── Utilitaires ───────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Logo SVG inline ───────────────────────────────────────────────────── */
.logo-svg { display: block; flex-shrink: 0; }

/* ─── Boutons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: var(--radius);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s, transform .1s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
    letter-spacing: .01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: none; }

/* Primaire — vert foncé */
.btn--primary {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    box-shadow: 0 2px 8px rgba(26,60,46,.25);
}
.btn--primary:hover { background: #fff; color: var(--clr-primary); border-color: var(--clr-primary); box-shadow: 0 4px 14px rgba(26,60,46,.15); }

/* CTA — ambre doré */
.btn--cta {
    background: var(--clr-cta);
    color: var(--clr-dark);
    border-color: var(--clr-cta);
    box-shadow: 0 2px 12px rgba(233,196,106,.35);
    font-weight: 700;
}
.btn--cta:hover { background: var(--clr-cta-dark); border-color: var(--clr-cta-dark); box-shadow: 0 4px 18px rgba(233,196,106,.45); }

/* Ghost */
.btn--ghost {
    background: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.btn--ghost:hover { background: var(--clr-accent-l); }

/* Ghost blanc (sur fond sombre) */
.btn--ghost-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Outline neutre */
.btn--outline {
    background: transparent;
    color: var(--clr-primary);
    border-color: var(--clr-border);
}
.btn--outline:hover { border-color: var(--clr-secondary); background: var(--clr-accent-l); }

.btn--lg   { padding: .85rem 2.2rem; font-size: 1.05rem; border-radius: 10px; }
.btn--sm   { padding: .4rem .9rem;   font-size: .85rem; }
.btn--full { width: 100%; }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    height: var(--nav-h);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-xs);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav__logo:hover { text-decoration: none; opacity: .85; }
.nav__logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    display: block;
    mix-blend-mode: multiply;
    filter: sepia(20%) saturate(120%) hue-rotate(5deg);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: .75rem;
    list-style: none;
}

.nav__link {
    color: var(--clr-text-m);
    font-weight: 500;
    padding: .35rem .6rem;
    border-radius: 6px;
    transition: color .15s, background .15s;
    font-size: .95rem;
}
.nav__link:hover { color: var(--clr-primary); background: var(--clr-accent-l); text-decoration: none; }

.nav__item--user  { display: flex; align-items: center; gap: .75rem; }
.nav__lang-group  { display: flex; align-items: center; gap: .1rem; }
.nav__lang        { font-size: .75rem !important; font-weight: 700; padding: .2rem .35rem !important; color: var(--clr-muted) !important; }
.nav__username   { font-weight: 600; color: var(--clr-primary); font-size: .9rem; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    /* Hit area 44×44px minimum (WCAG) */
    padding: .6rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all .2s; }

@media (max-width: 768px) {
    .nav__burger { display: flex; }
    .nav__menu {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--clr-border);
        box-shadow: var(--shadow);
        gap: .5rem;
    }
    .nav__menu.is-open { display: flex; }
    .nav__menu li { width: 100%; }
    .nav__menu .btn { width: 100%; justify-content: center; }
}

/* ─── Flash messages ────────────────────────────────────────────────────── */
.flash-container { padding: .5rem 1.5rem; }
.flash {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    margin-bottom: .5rem;
    animation: slideDown .2s ease;
}
.flash--success { background: #edfaf3; color: var(--clr-success); border-left: 3px solid var(--clr-success); }
.flash--error   { background: #fdf0ef; color: var(--clr-error);   border-left: 3px solid var(--clr-error); }
.flash--warning { background: #fdf8ef; color: var(--clr-warning); border-left: 3px solid var(--clr-warning); }
.flash--info    { background: #edf4fb; color: var(--clr-info);    border-left: 3px solid var(--clr-info); }
.flash__icon  { font-size: .85rem; font-weight: 800; flex-shrink: 0; }
.flash__msg   { flex: 1; }
.flash__close { background: none; border: none; cursor: pointer; color: inherit; opacity: .45; font-size: 1.1rem; line-height: 1; padding: 0 .2rem; }
.flash__close:hover { opacity: 1; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
    background: var(--clr-primary);
    background-image: radial-gradient(ellipse at 70% 50%, #2d6a4f 0%, #1a3c2e 60%, #0d2818 100%);
    color: #fff;
    padding: 5.5rem 0 5rem;
    overflow: hidden;
    position: relative;
}

/* Motif de fond subtil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(82,183,136,.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(149,213,178,.08) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    color: var(--clr-accent-m);
    border: 1px solid rgba(82,183,136,.3);
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero__badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--clr-cta);
    box-shadow: 0 0 6px var(--clr-cta);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.hero__title--accent {
    color: var(--clr-cta);
}

.hero__lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2.25rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero__social-proof {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.45);
    font-size: .82rem;
}

/* Carte dans le hero */
.hero__visual { display: flex; align-items: stretch; }

.hero__map-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 0 3px rgba(255,255,255,.12);
    isolation: isolate;
}

.hero__map {
    width: 100%;
    height: 440px;
    display: block;
    background: #d8e8d0;
}

/* Légende superposée en bas de la carte */
.hero__map-legend {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(13,40,24,.82);
    backdrop-filter: blur(8px);
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 1000;
}

.hero__map-legend-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

.legend-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

@media (max-width: 960px) {
    .hero            { padding: 3.5rem 0 3rem; }
    .hero__inner     { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero__lead      { max-width: 100%; }
    .hero__actions   { justify-content: center; }
    .hero__social-proof { justify-content: center; }
    .hero__visual    { margin-top: 0; }
    .hero__map       { height: 300px; }
}
@media (max-width: 640px) {
    .hero            { padding: 2.5rem 0 2rem; }
    .hero__map       { height: 240px; }
    .hero__map-legend { display: none; }
    .hero__badge     { font-size: .72rem; padding: .3rem .8rem; }
}
@media (max-width: 480px) {
    .hero            { padding: 2rem 0 1.75rem; }
    .hero__actions   { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ─── Usage stats ───────────────────────────────────────────────────────── */
.usage-stats {
    background: #fff;
    border-bottom: 1px solid var(--clr-border);
    padding: 2rem 0;
}
.usage-stats__list {
    display: flex;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.usage-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    padding: .75rem 3rem;
    border-right: 1px solid var(--clr-border);
}
.usage-stats__item:last-child { border-right: none; }
.usage-stats__number {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-primary);
    letter-spacing: -.02em;
    line-height: 1;
}
.usage-stats__label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--clr-text-m);
}
@media (max-width: 640px) {
    .usage-stats__item { padding: .75rem 1.5rem; flex: 1 1 50%; }
    .usage-stats__item:nth-child(2) { border-right: none; }
    .usage-stats__item:nth-child(3) { border-right: 1px solid var(--clr-border); border-top: 1px solid var(--clr-border); }
    .usage-stats__item:nth-child(4) { border-right: none; border-top: 1px solid var(--clr-border); }
}

/* ─── Sections communes ─────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title  {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.section-lead   { font-size: 1rem; color: var(--clr-text-m); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ─── Cartouches de plantes Leaflet (divIcon) ───────────────────────────── */
.plant-pin {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 2px solid var(--pin-color, #1a3c2e);
    border-radius: 8px;
    padding: .35rem .65rem .35rem .45rem;
    box-shadow: 0 3px 12px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.1);
    white-space: nowrap;
    transform: translate(-50%, -100%) translateY(-10px);
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}
.plant-pin:hover {
    transform: translate(-50%, -100%) translateY(-13px);
    box-shadow: 0 6px 20px rgba(0,0,0,.22);
}

.plant-pin__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.plant-pin__body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.plant-pin__name {
    font-size: .72rem;
    font-weight: 700;
    color: #0d2818;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.plant-pin__sci {
    font-size: .6rem;
    color: #7a9e8a;
    font-style: italic;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Petite flèche en bas de la cartouche */
.plant-pin__tail {
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--pin-color, #1a3c2e);
    pointer-events: none;
}

/* Popup Leaflet — surcharge minime */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow) !important;
    border: 1px solid var(--clr-border);
}
.leaflet-popup-content {
    font-family: var(--font);
    font-size: .875rem;
    color: var(--clr-text);
    line-height: 1.55;
}
.leaflet-popup-tip { display: none; }

@media (max-width: 640px) {
    .map-demo__map     { height: 340px; }
    .map-demo__legend  { display: none; }
}

/* ─── Features ──────────────────────────────────────────────────────────── */
.features { padding: 6rem 0; }

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

.feature-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow .22s, transform .22s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.feature-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em; }
.feature-card p  { color: var(--clr-text-m); font-size: .9rem; line-height: 1.65; }

/* ─── How it works ──────────────────────────────────────────────────────── */
.how-it-works {
    background: var(--clr-primary);
    background-image: linear-gradient(135deg, #1a3c2e 0%, #0d2818 100%);
    color: #fff;
    padding: 6rem 0;
}
.how-it-works .section-title { color: #fff; }
.how-it-works .section-lead  { color: rgba(255,255,255,.6); }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    flex: 1;
    min-width: 200px;
    max-width: 270px;
    text-align: center;
    transition: background .2s;
}
.step:hover { background: rgba(255,255,255,.09); }

.step__number {
    width: 48px; height: 48px;
    background: var(--clr-cta);
    color: var(--clr-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800;
    margin: 0 auto 1.25rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step p  { font-size: .88rem; opacity: .75; line-height: 1.6; }

.step__arrow {
    font-size: 1.2rem;
    opacity: .3;
    flex-shrink: 0;
    margin-top: 2.5rem;
    color: var(--clr-accent-m);
}
@media (max-width: 700px) { .step__arrow { display: none; } }
@media (max-width: 600px) {
    .how-it-works { padding: 3.5rem 0; }
    .step { min-width: 0; max-width: 100%; width: 100%; flex: none; padding: 1.5rem 1.25rem; }
    .steps { gap: 1rem; }
}

/* ─── Pricing ───────────────────────────────────────────────────────────── */
.pricing { padding: 6rem 0; }

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--clr-surface);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    position: relative;
    transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card--featured {
    border-color: var(--clr-secondary);
    box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--clr-secondary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem 1rem;
    border-radius: 999px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-card__header { margin-bottom: 1.75rem; text-align: center; }
.pricing-card__header h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: -.01em; }
.pricing-card__price {
    font-size: 2.8rem; font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.1; margin-bottom: .3rem;
    letter-spacing: -.03em;
}
.pricing-card__price span { font-size: .9rem; font-weight: 400; color: var(--clr-text-l); }
.pricing-card__header p  { color: var(--clr-text-l); font-size: .88rem; }

.pricing-card__features { list-style: none; margin-bottom: 2rem; }
.pricing-card__features li {
    display: flex; align-items: baseline; gap: .65rem;
    padding: .5rem 0; font-size: .9rem;
    border-bottom: 1px solid var(--clr-border);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li > *:not(.check) { flex: 1; }
.pricing-card__features strong,
.pricing-card__features em { display: inline; }
.check { color: var(--clr-success); font-weight: 800; flex-shrink: 0; }
.pricing-card__trial { text-align: center; margin-top: .75rem; font-size: .78rem; color: var(--clr-text-l); }

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner {
    background: var(--clr-primary);
    background-image: linear-gradient(135deg, #2d6a4f 0%, #1a3c2e 50%, #0d2818 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(82,183,136,.12) 0%, transparent 60%);
}
.cta-banner__inner { text-align: center; position: relative; }
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-banner p  { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 2.25rem; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-dark);
    color: rgba(255,255,255,.7);
    padding: 3.5rem 0 1.5rem;
    margin-top: auto;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
    display: inline-flex; align-items: center;
    margin-bottom: .75rem; text-decoration: none;
}
.footer__logo:hover { opacity: .8; }
/* Logo sur fond sombre : passe en blanc via invert dans un encadré */
.footer__logo-img {
    height: 34px;
    width: auto;
    max-width: 160px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .85;
}
.footer__brand p { font-size: .88rem; opacity: .55; line-height: 1.6; max-width: 280px; }
.footer__nav h3 {
    color: rgba(255,255,255,.4);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 1rem;
}
.footer__nav ul { list-style: none; }
.footer__nav li { margin-bottom: .5rem; }
.footer__nav a  { color: rgba(255,255,255,.6); font-size: .88rem; text-decoration: none; transition: color .15s; }
.footer__nav a:hover { color: #fff; }
.footer__copy { text-align: center; font-size: .78rem; opacity: .35; }
@media (max-width: 640px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__brand p { max-width: 100%; }
}
@media (max-width: 480px) {
    .features { padding: 3.5rem 0; }
    .pricing  { padding: 3.5rem 0; }
    .how-it-works { padding: 3rem 0; }
    .cta-banner { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .footer__grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 1.5rem; }
    .pricing-card__price { font-size: 2.2rem; }
    .feature-card { padding: 1.25rem; }
}

/* ─── Dashboard ─────────────────────────────────────────────────────────── */
.dashboard { padding: 3rem 0; }
.dashboard__header { margin-bottom: 2.5rem; }
.dashboard__header h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: .4rem; letter-spacing: -.02em; }
.dashboard__lead { color: var(--clr-text-m); font-size: .95rem; }

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--clr-surface);
    border: 2px dashed var(--clr-border);
    border-radius: var(--radius-xl);
}
.empty-state__icon {
    width: 72px; height: 72px;
    background: var(--clr-accent-l);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.empty-state h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em; }
.empty-state p  { color: var(--clr-text-m); margin-bottom: 2rem; font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE CONTACT
   ═══════════════════════════════════════════════════════════ */

.contact-page { padding: 4rem 0 5rem; }
.contact-page__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-page__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-page__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--clr-primary);
    margin-bottom: .75rem;
}
.contact-page__lead {
    color: var(--clr-text-m);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .92rem;
    color: var(--clr-text);
}
.contact-info__item svg { flex-shrink: 0; margin-top: 2px; color: var(--clr-primary); }
.contact-info__item a { color: var(--clr-primary); font-weight: 600; }
.contact-info__item--partner {
    background: #fff8ec;
    border: 1px solid #f0c96d;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    color: #92400e;
}
.contact-info__item--partner svg { color: #b45309; }

.contact-page__form-wrap {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form textarea.form-input { resize: vertical; min-height: 130px; }

