/* ─────────────────────────────────────────────
   CHEZ PHILO — Modern minimal real estate
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

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

:root {
    --bg: #F7F4ED;
    --bg-alt: #FFFFFF;
    --bg-dark: #131311;
    --ink: #1A1814;
    --muted: #6B6862;
    --line: rgba(26, 24, 20, 0.10);
    --line-strong: rgba(26, 24, 20, 0.18);
    --accent: #2D4A33;
    --accent-soft: #E5EBE0;
    --accent-light: #F0F2EB;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --sans: 'DM Sans', system-ui, sans-serif;

    --nav-h: 78px;
    --container: 1240px;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--accent); color: #fff; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── NAV ─────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 244, 237, 0.85);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
}

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

.nav-list a {
    display: inline-block;
    padding: 0.55rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    border-radius: 999px;
    transition: background 0.2s var(--ease);
}

.nav-list a:hover { background: rgba(26,24,20,0.05); }
.nav-list a.active { background: rgba(26,24,20,0.08); font-weight: 600; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.2rem;
    background: var(--ink);
    color: var(--bg);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

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

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease), border-color 0.25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-light:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: transform 0.25s var(--ease);
    font-size: 0.75rem;
}

.btn-secondary .arrow,
.btn-light .arrow {
    background: rgba(0,0,0,0.06);
}

.btn:hover .arrow { transform: translateX(2px); }

/* ── HERO ────────────────────────────────── */
.hero {
    padding: 2.5rem 0 4rem;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: 520px;
    background: var(--bg-dark);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78);
}

.hero-content {
    position: absolute;
    inset: 0;
    padding: clamp(1.8rem, 4vw, 3.2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #fff;
}

.hero-pill .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #6FCB89;
    box-shadow: 0 0 0 4px rgba(111,203,137,0.2);
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: end;
}

.hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 4.6rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    max-width: 18ch;
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.6rem;
    max-width: 36ch;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: #fff;
    color: var(--ink);
}

.hero-actions .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

.hero-actions .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.hero-actions .btn-secondary:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* Floating stats card */
.hero-stats {
    background: rgba(255,255,255,0.96);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 1.6rem;
    backdrop-filter: blur(20px);
}

.hero-stats h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.hero-stats-list {
    display: grid;
    gap: 1rem;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
}

.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }

.hero-stat-label {
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 500;
}

.hero-stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.01em;
}

/* ── TRUST STRIP ─────────────────────────── */
.trust-strip {
    padding: 2rem 0 4rem;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.trust-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.trust-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.98rem;
    margin-bottom: 0.15rem;
}

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

/* ── SECTIONS ────────────────────────────── */
.section {
    padding: 5.5rem 0;
}

.section-head {
    margin-bottom: 3rem;
    max-width: 720px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head--row {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.section-sub {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 56ch;
}

.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ── APPROACH (split image + text) ─────── */
.approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-alt);
}

.approach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.approach-img:hover img { transform: scale(1.03); }

.approach-text h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.approach-text p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.approach-text p strong {
    color: var(--ink);
    font-weight: 600;
}

.approach-meta {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.approach-meta-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.approach-meta-item span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── HOW IT WORKS (steps) ─────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.step {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -22px rgba(26,24,20,0.18);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.7rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted);
}

/* ── WHO IT'S FOR (profiles) ──────────── */
.profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.profile {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.profile:hover {
    background: var(--accent-light);
    border-color: var(--accent-soft);
}

.profile-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.4rem;
}

.profile h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.profile p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.profile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.profile-list li {
    font-size: 0.88rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.profile-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ── LEGAL CARD ──────────────────────── */
.legal {
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #fff;
}

.legal h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.2rem;
}

.legal p {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    margin-bottom: 1rem;
}

.legal-points {
    display: grid;
    gap: 1rem;
}

.legal-point {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
}

.legal-point-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(111,203,137,0.18);
    color: #6FCB89;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
}

.legal-point strong {
    display: block;
    font-size: 0.96rem;
    color: #fff;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.legal-point span {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ── STATS BAND ─────────────────────── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
}

.stat-cell {
    padding: 2.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat-cell:last-child { border-right: none; }

.stat-num {
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.stat-num .unit {
    color: var(--accent);
    margin-left: 0.04em;
}

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

/* ── QUOTE ──────────────────────────── */
.quote {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 3rem 0;
}

.quote-text {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin-bottom: 1.8rem;
}

.quote-author {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.quote-meta {
    text-align: left;
    line-height: 1.3;
}

.quote-meta strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.quote-meta span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── CTA BLOCK ──────────────────────── */
.cta {
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06), transparent 50%);
    pointer-events: none;
}

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

.cta h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 22ch;
    margin: 0 auto 1rem;
}

.cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 50ch;
    margin: 0 auto 2rem;
}

/* ── FOOTER ─────────────────────────── */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 1.5rem;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 28ch;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1.1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* ── PAGE HEADER (for non-home pages) ── */
.page-header {
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 auto 0.8rem;
    max-width: 18ch;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 40ch;
    margin: 0 auto;
}

/* ── FORM ──────────────────────────── */
.form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-alt);
    padding: clamp(1.8rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0ACA3; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1814' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.4rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.05rem 1.4rem;
    background: var(--ink);
    color: var(--bg);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s var(--ease), transform 0.2s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover { background: var(--accent); transform: translateY(-1px); }

.form-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
}

.form-note a { color: var(--accent); text-decoration: underline; }

.contact-info-grid {
    max-width: 640px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info-card {
    padding: 1.2rem 1.4rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.contact-info-card .label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-info-card strong {
    display: block;
    font-size: 0.98rem;
    color: var(--ink);
    font-weight: 600;
}

/* ── FADE IN ───────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in[data-delay="1"] { transition-delay: 0.08s; }
.fade-in[data-delay="2"] { transition-delay: 0.16s; }
.fade-in[data-delay="3"] { transition-delay: 0.24s; }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 980px) {
    .hero-bottom { grid-template-columns: 1fr; gap: 1.6rem; }
    .approach { grid-template-columns: 1fr; gap: 2rem; }
    .approach-img { aspect-ratio: 16/11; }
    .legal { grid-template-columns: 1fr; gap: 2rem; padding: 2.2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
    .nav-list, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-list.open {
        display: flex;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--line);
        gap: 0.3rem;
    }
    .nav-list.open a { padding: 0.9rem 1rem; }

    .hero { padding: 1.5rem 0 3rem; }
    .hero-card { aspect-ratio: auto; min-height: 560px; }

    .trust-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .profiles { grid-template-columns: 1fr; }

    .section { padding: 4rem 0; }
    .section-head--row { grid-template-columns: 1fr; gap: 1rem; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-info-grid { grid-template-columns: 1fr; }

    .stats { grid-template-columns: 1fr; }
    .stat-cell { border-right: none; border-bottom: 1px solid var(--line); }
    .stat-cell:last-child { border-bottom: none; }
}
