/* ═══════════════════════════════════════════════════
   WeManage.tech — Premium StoryBrand Site v3
   ═══════════════════════════════════════════════════ */

:root {
    --navy-900: #050d18;
    --navy-800: #0a1628;
    --navy-700: #0f2035;
    --navy-600: #162d4a;
    --navy-500: #1e3a5f;
    --teal:     #00d2a8;
    --teal-600: #00b894;
    --teal-700: #009e80;
    --blue:     #4f8fff;
    --purple:   #a78bfa;
    --rose:     #f472b6;
    --amber:    #fbbf24;
    --slate-50: #f8fafc;
    --slate-100:#f1f5f9;
    --slate-200:#e2e8f0;
    --slate-300:#cbd5e1;
    --slate-400:#94a3b8;
    --slate-500:#64748b;
    --slate-600:#475569;
    --slate-700:#334155;
    --white:    #ffffff;
    --font:     'Inter', system-ui, -apple-system, sans-serif;
    --font-h:   'Space Grotesk', var(--font);
    --ease:     cubic-bezier(.4,0,.2,1);
    --t:        .3s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.65; color: var(--slate-700); background: var(--white); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.hide-mobile { display: inline; }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* ── Gradient text ── */
.text-gradient {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-light {
    background: linear-gradient(135deg, var(--teal), var(--blue) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section labels & headings ── */
.section-label {
    display: inline-block;
    font-family: var(--font-h);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: .75rem;
}
.section-label--light { color: var(--teal); }

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

.section-heading {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    color: var(--navy-800);
    letter-spacing: -.02em;
}
.section-heading--light { color: var(--white); }

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ NAV ═══════════ */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t), box-shadow var(--t);
}
.nav--scrolled { border-bottom-color: var(--slate-200); box-shadow: 0 1px 12px rgba(5,13,24,.05); }

.nav__inner {
    max-width: 1140px; margin: 0 auto; padding: 0 1.5rem;
    height: 68px; display: flex; align-items: center; gap: 1.5rem;
}

.nav__logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.nav__logo-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: var(--white); font-family: var(--font-h); font-weight: 700; font-size: .95rem;
    border-radius: 10px; box-shadow: 0 2px 8px rgba(0,210,168,.25);
}
.nav__logo-text { font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; color: var(--navy-800); }
.accent { color: var(--teal-600); }

.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: .875rem; font-weight: 500; color: var(--slate-500); transition: color var(--t); }
.nav__links a:hover { color: var(--navy-800); }

.nav__phone { font-weight: 600; font-size: .875rem; color: var(--slate-500); text-decoration: none; transition: color var(--t); white-space: nowrap; }
.nav__phone:hover { color: var(--teal-600); }

.nav__cta {
    display: inline-flex; align-items: center; padding: .55rem 1.1rem;
    font-family: var(--font); font-size: .8rem; font-weight: 600; text-decoration: none;
    color: var(--white); background: linear-gradient(135deg, var(--teal), var(--teal-600));
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,210,168,.2); transition: box-shadow var(--t), transform var(--t);
}
.nav__cta:hover { box-shadow: 0 4px 16px rgba(0,210,168,.3); transform: translateY(-1px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: var(--t); transform-origin: center; }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile { display: none; flex-direction: column; padding: 0 1.5rem 1rem; gap: .5rem; }
.nav__mobile a { text-decoration: none; font-size: .95rem; font-weight: 500; padding: .6rem 0; color: var(--slate-500); border-bottom: 1px solid var(--slate-100); }
.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
    .nav__links, .nav__phone, .nav__cta { display: none; }
    .nav__toggle { display: flex; }
}

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative; overflow: hidden;
    padding: 7rem 0 5.5rem;
    background: var(--navy-900);
    color: var(--white);
}

.hero__mesh { position: absolute; inset: 0; overflow: hidden; }
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    animation: float 16s ease-in-out infinite alternate;
}
.hero__orb--1 { width: 600px; height: 600px; top: -20%; right: -10%; background: rgba(0,210,168,.18); animation-delay: 0s; }
.hero__orb--2 { width: 500px; height: 500px; bottom: -30%; left: -5%; background: rgba(79,143,255,.15); animation-delay: -5s; }
.hero__orb--3 { width: 350px; height: 350px; top: 30%; left: 40%; background: rgba(167,139,250,.1); animation-delay: -10s; }

@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -20px) scale(1.05); }
    100% { transform: translate(-20px, 15px) scale(.97); }
}

.hero__grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
}

.hero__content { position: relative; text-align: center; max-width: 800px; }

.hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .45rem 1rem; margin-bottom: 1.75rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--teal);
    background: rgba(0,210,168,.08);
    border: 1px solid rgba(0,210,168,.15);
    border-radius: 100px;
}
.hero__badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 8px var(--teal);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
    font-family: var(--font-h); font-weight: 700;
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    line-height: 1.1; letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero__title-highlight {
    background: linear-gradient(135deg, var(--teal), var(--blue) 60%, var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero__sub { font-size: 1.15rem; line-height: 1.7; color: var(--slate-400); max-width: 540px; margin: 0 auto 2.5rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3.5rem; }

.hero__proof { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.hero__proof-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .4rem .85rem; font-size: .78rem; font-weight: 500; color: var(--slate-400);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 100px;
}
.hero__proof-chip svg { color: var(--teal); flex-shrink: 0; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    padding: .8rem 1.5rem; font-family: var(--font); font-size: .9rem; font-weight: 600;
    text-decoration: none; border-radius: 10px; border: none; cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn:active { transform: scale(.97); }

.btn--primary {
    background: linear-gradient(135deg, var(--teal-600), var(--teal));
    color: var(--white);
    box-shadow: 0 2px 12px rgba(0,184,148,.2);
}
.btn--primary:hover { box-shadow: 0 6px 24px rgba(0,184,148,.3); transform: translateY(-2px); }

.btn--glow {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,210,168,.25), 0 0 40px rgba(0,210,168,.08);
}
.btn--glow:hover { box-shadow: 0 6px 30px rgba(0,210,168,.35), 0 0 60px rgba(0,210,168,.12); transform: translateY(-2px); }

.btn--glass {
    background: rgba(255,255,255,.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }

.btn--lg { padding: 1rem 2rem; font-size: .95rem; border-radius: 12px; }
.btn--sm { padding: .5rem 1rem; font-size: .85rem; }
.btn--full { width: 100%; }

/* ═══════════ PARTNERS ═══════════ */
.partners { padding: 2.5rem 0; border-bottom: 1px solid var(--slate-200); }
.partners__label { text-align: center; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--slate-400); margin: 0 0 1rem; }
.partners__row { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.partners__logo { color: var(--slate-300); transition: color var(--t); }
.partners__logo:hover { color: var(--slate-500); }

/* ═══════════ PROBLEM ═══════════ */
.problem { padding: 6rem 0; background: var(--white); }

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

.problem__card {
    position: relative; overflow: hidden;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.problem__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(5,13,24,.08);
    border-color: var(--teal);
}

.problem__card-glow {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    opacity: 0; transition: opacity var(--t);
}
.problem__card:hover .problem__card-glow { opacity: 1; }

.problem__icon-wrap {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,210,168,.1), rgba(79,143,255,.08));
    border-radius: 12px; margin-bottom: 1.25rem; color: var(--teal-600);
}

.problem__card h3 { font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--navy-800); margin-bottom: .4rem; }
.problem__card p { font-size: .88rem; color: var(--slate-500); line-height: 1.55; }

@media (max-width: 900px) { .problem__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .problem__grid { grid-template-columns: 1fr; } }

/* ═══════════ GUIDE ═══════════ */
.guide {
    position: relative; overflow: hidden;
    padding: 6rem 0;
    background: var(--navy-800);
    color: var(--white);
}
.guide__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(0,210,168,.12), transparent),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(79,143,255,.08), transparent);
}

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

.guide__heading {
    font-family: var(--font-h); font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2;
    margin-bottom: 1.25rem;
}
.guide__text p { font-size: 1rem; line-height: 1.75; color: var(--slate-400); margin-bottom: .75rem; }

.guide__metrics { display: flex; flex-direction: column; gap: 1.25rem; }

.metric {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    transition: background var(--t), border-color var(--t);
}
.metric:hover { background: rgba(255,255,255,.07); border-color: rgba(0,210,168,.2); }

.metric__value {
    font-family: var(--font-h); font-weight: 700; font-size: 2.5rem; line-height: 1;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.metric__unit { font-size: 1.5rem; }
.metric__label { font-size: .85rem; color: var(--slate-400); margin: .35rem 0 .75rem; }

.metric__bar { width: 100%; height: 4px; background: rgba(255,255,255,.06); border-radius: 4px; overflow: hidden; }
.metric__bar-fill { height: 100%; border-radius: 4px; transition: width 1.2s var(--ease); width: 0; }
.visible .metric__bar-fill--1 { width: 100%; background: linear-gradient(90deg, var(--teal), var(--blue)); }
.visible .metric__bar-fill--2 { width: 40%; background: linear-gradient(90deg, var(--blue), var(--purple)); transition-delay: .15s; }
.visible .metric__bar-fill--3 { width: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-600)); transition-delay: .3s; }

@media (max-width: 768px) { .guide__layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ═══════════ SERVICES ═══════════ */
.services { padding: 6rem 0; background: var(--slate-50); }

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

.svc {
    position: relative; overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 2rem;
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(5,13,24,.08);
    border-color: transparent;
}

.svc__shine {
    position: absolute; inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--teal), var(--blue), var(--purple));
    opacity: 0; z-index: -1;
    transition: opacity var(--t);
}
.svc:hover .svc__shine { opacity: 1; }
.svc:hover { border-color: transparent; background: var(--white); background-clip: padding-box; }

.svc__icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(0,210,168,.08), rgba(79,143,255,.06));
    border-radius: 14px; color: var(--teal-600);
    transition: background var(--t), color var(--t), transform var(--t);
}
.svc:hover .svc__icon {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: var(--white); transform: scale(1.05);
}

.svc h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.05rem; color: var(--navy-800); }
.svc p { font-size: .88rem; color: var(--slate-500); line-height: 1.6; }

@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .services__grid { grid-template-columns: 1fr; } }

/* ═══════════ PLAN ═══════════ */
.plan {
    position: relative; overflow: hidden;
    padding: 6rem 0;
    background: var(--navy-900);
    color: var(--white);
}
.plan__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(0,210,168,.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(79,143,255,.06) 0%, transparent 50%);
}

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

.plan__step { position: relative; }

.plan__step-inner {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    height: 100%;
    transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.plan__step-inner:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(0,210,168,.2);
    box-shadow: 0 0 40px rgba(0,210,168,.06);
}

.plan__number {
    width: 60px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 16px; margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,210,168,.25);
}
.plan__number span { font-family: var(--font-h); font-weight: 700; font-size: 1.25rem; color: var(--white); }

.plan__step h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.15rem; margin-bottom: .5rem; }
.plan__step p { font-size: .88rem; color: var(--slate-400); line-height: 1.6; }

@media (max-width: 700px) { .plan__steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ═══════════ STAKES ═══════════ */
.stakes { padding: 6rem 0; background: var(--white); }

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

.stakes__col {
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform var(--t), box-shadow var(--t);
}
.stakes__col:hover { transform: translateY(-4px); }

.stakes__col--fail {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}
.stakes__col--fail:hover { box-shadow: 0 12px 30px rgba(5,13,24,.06); }

.stakes__col--win {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    color: var(--white);
    border: 1px solid rgba(0,210,168,.15);
    box-shadow: 0 4px 30px rgba(0,210,168,.06);
}
.stakes__col--win:hover { box-shadow: 0 12px 40px rgba(0,210,168,.12); }

.stakes__header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }

.stakes__icon {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; flex-shrink: 0;
}
.stakes__icon--fail { background: rgba(244,114,182,.1); color: var(--rose); }
.stakes__icon--win { background: rgba(0,210,168,.12); color: var(--teal); }

.stakes__col h3 { font-family: var(--font-h); font-weight: 600; font-size: 1.1rem; }
.stakes__col--fail h3 { color: var(--navy-800); }

.stakes__col ul { list-style: none; padding: 0; }

.stakes__col li {
    position: relative; padding-left: 1.75rem; margin-bottom: .75rem;
    font-size: .9rem; line-height: 1.55;
}
.stakes__col li:last-child { margin-bottom: 0; }

.stakes__col--fail li { color: var(--slate-500); }
.stakes__col--fail li::before {
    content: ''; position: absolute; left: 0; top: .5rem;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose); opacity: .5;
}

.stakes__col--win li { color: var(--slate-400); }
.stakes__col--win li::before {
    content: ''; position: absolute; left: 0; top: .45rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 8px rgba(0,210,168,.4);
}

@media (max-width: 640px) { .stakes__grid { grid-template-columns: 1fr; } }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
    position: relative; overflow: hidden;
    padding: 5rem 0;
    background: var(--navy-900);
    text-align: center;
    color: var(--white);
}
.cta-banner__bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,210,168,.1) 0%, transparent 40%, rgba(79,143,255,.08) 100%);
}
.cta-banner__inner { position: relative; }
.cta-banner h2 {
    font-family: var(--font-h); font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: .75rem;
}
.cta-banner p { font-size: 1.05rem; color: var(--slate-400); margin-bottom: 2rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ═══════════ CONTACT ═══════════ */
.contact { padding: 6rem 0; background: var(--slate-50); }

.contact__layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }

.contact__heading {
    font-family: var(--font-h); font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2;
    color: var(--navy-800); margin-bottom: .75rem;
}
.contact__sub { font-size: 1.05rem; color: var(--slate-500); margin-bottom: 2rem; }

.contact__details { display: flex; flex-direction: column; gap: 1rem; }
.contact__row {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .9rem; color: var(--slate-600); text-decoration: none;
    transition: color var(--t);
}
a.contact__row:hover { color: var(--teal-600); }
.contact__row-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0,210,168,.08), rgba(79,143,255,.06));
    border-radius: 10px; color: var(--teal-600);
}

.contact__form-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 16px 50px rgba(5,13,24,.06);
}

.contact-form { display: grid; gap: 1.15rem; }
.form-field { display: grid; gap: .35rem; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--navy-800); }

.contact-form input,
.contact-form textarea {
    width: 100%; border: 1px solid var(--slate-200); border-radius: 10px;
    padding: .8rem 1rem; font-size: .9rem; font-family: var(--font);
    color: var(--slate-700); background: var(--slate-50);
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,210,168,.1);
    background: var(--white);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

.form-status { margin: .5rem 0 0; font-size: .85rem; font-weight: 600; min-height: 1.4em; }
.form-status--ok { color: var(--teal-600); }
.form-status--err { color: var(--rose); }

@media (max-width: 768px) { .contact__layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--navy-900); color: var(--slate-400); padding: 3rem 0 2rem; }

.footer__inner { max-width: 1140px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }

.footer__brand { display: flex; align-items: center; gap: .6rem; }
.footer__name { font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--white); }
.footer__desc { font-size: .82rem; color: var(--slate-500); text-align: right; }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__copy { font-size: .75rem; color: var(--slate-500); }
.footer__partners { font-size: .75rem; color: var(--slate-500); }

@media (max-width: 640px) {
    .footer__top { flex-direction: column; align-items: flex-start; }
    .footer__desc { text-align: left; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}
