/* ===== TherapyCFO.com — Eastfield Sub-brand ===== */
/* Visual continuity with eastfieldconsult.com brand vars */
/* Typography: Fraunces (display) + DM Sans (body) */

:root {
    /* Core palette */
    --primary: #1A3C40;
    --primary-deep: #0E2326;
    --primary-mid: #2A5A56;
    --primary-light: #3D7A75;
    --teal-muted: #9BB5B1;
    --teal-light: #C8D8D5;
    --teal-pale: #E4EDEC;
    --cream: #F9F6F1;
    --cream-dark: #F0EBE3;
    --accent: #C4883A;
    --accent-light: #D4A05E;
    --accent-pale: #E8D4B4;

    /* Text */
    --text: #2A2D26;
    --text-secondary: #555A4E;
    --text-muted: #878C7E;
    --text-on-dark: #F2F0EC;
    --text-on-dark-muted: rgba(242, 240, 236, 0.72);

    /* UI */
    --bg: #FFFFFF;
    --border: #DDD8D0;
    --border-light: #E8E4DC;

    /* Effects */
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(42, 45, 38, 0.06);
    --shadow: 0 4px 12px rgba(42, 45, 38, 0.08);
    --shadow-lg: 0 12px 32px rgba(42, 45, 38, 0.12);
    --shadow-xl: 0 24px 48px rgba(42, 45, 38, 0.16);

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing rhythm */
    --section-pad: 96px;
    --section-pad-sm: 64px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

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

/* ===== Container ===== */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}

h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--font-body);
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-light);
}

strong {
    font-weight: 600;
    color: var(--text);
}

/* ===== Utilities ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

.section-header.center .section-label {
    display: inline-flex;
}

/* ===== Button ===== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--accent-light);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-on-dark);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    padding: 16px 40px;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.cta-secondary {
    margin-top: 14px;
    font-size: 0.9375rem;
}

.cta-secondary a {
    color: var(--text-on-dark);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 3px;
    font-weight: 500;
}

.cta-secondary a:hover {
    text-decoration-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.cta-secondary-light {
    margin-top: 14px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.cta-secondary-light a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--teal-light);
    text-underline-offset: 3px;
    font-weight: 500;
}

.cta-secondary-light a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent-pale);
}

/* ===== Header ===== */
.header {
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(249, 246, 241, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-lockup:hover {
    text-decoration: none;
}

.logo-mark-wrapper {
    display: grid;
    height: 36px;
    flex-shrink: 0;
}

.logo-mark {
    grid-area: 1 / 1;
    height: 36px;
    width: auto;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-mark-white {
    opacity: 1;
}

.logo-mark-color {
    opacity: 0;
}

.header.scrolled .logo-mark-white {
    opacity: 0;
}

.header.scrolled .logo-mark-color {
    opacity: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-on-dark);
    letter-spacing: 0.01em;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.08em;
}

.header.scrolled .brand-name {
    color: var(--text);
}

.header.scrolled .brand-sub {
    color: var(--text-muted);
}

.nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: white;
    text-decoration: none;
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 86vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(170deg, rgba(14, 35, 38, 0.94) 0%, rgba(26, 60, 64, 0.9) 40%, rgba(20, 47, 51, 0.93) 100%),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover no-repeat;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.07;
    mix-blend-mode: overlay;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.hero h1 {
    color: var(--text-on-dark);
    margin-bottom: 1.25rem;
    font-weight: 300;
    font-size: 4rem;
    line-height: 1.12;
}

.hero-sub {
    font-size: 1.1875rem;
    color: var(--text-on-dark-muted);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.hero-definition {
    font-size: 1.0625rem;
    color: var(--text-on-dark-muted);
    max-width: 720px;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    padding-left: 18px;
    border-left: 2px solid rgba(212, 160, 94, 0.55);
}

.hero-definition strong {
    color: var(--text-on-dark);
    font-weight: 500;
}

/* ===== Standard content section ===== */
.section {
    padding: var(--section-pad) 0;
}

.section-cream {
    background: var(--cream);
}

.section-pale {
    background: var(--teal-pale);
}

.section-white {
    background: var(--bg);
}

.section-deep {
    background: var(--primary-deep);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.section-deep::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.section-deep .container,
.section-deep .container-narrow {
    position: relative;
    z-index: 1;
}

.section-deep h2,
.section-deep h3 {
    color: var(--text-on-dark);
}

.section-deep p {
    color: var(--text-on-dark-muted);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header.center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 0.75rem;
}

.section-deep .section-intro {
    color: var(--text-on-dark-muted);
}

.lede {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== Numbered signs list ===== */
.signs-list {
    list-style: none;
    counter-reset: signs;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.signs-list li {
    counter-increment: signs;
    background: var(--bg);
    padding: 32px 36px 32px 108px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.signs-list li:first-child {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.signs-list li:last-child {
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.signs-list li + li {
    border-top: none;
}

.signs-list li:hover {
    background: #FDFBF7;
    border-color: var(--teal-muted);
}

.signs-list li:hover + li {
    border-top-color: var(--teal-muted);
}

.signs-list li::before {
    content: counter(signs, decimal-leading-zero);
    position: absolute;
    top: 30px;
    left: 36px;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: lining-nums;
    transition: color 0.25s ease;
}

.signs-list li:hover::before {
    color: var(--accent-light);
}

.signs-list li p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9875rem;
}

.signs-list li p:first-of-type strong {
    display: block;
    color: var(--text);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
    letter-spacing: -0.005em;
}

/* ===== Comparison table — editorial layout ===== */
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 2.5rem;
    /* Editorial: no card wrapping. Table sits directly on the section background. */
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 760px;
    table-layout: fixed;
}

.compare-table colgroup col:first-child { width: 19%; }
.compare-table colgroup col:not(:first-child) { width: 27%; }

/* Reset any earlier-style backgrounds */
.compare-table thead {
    background: transparent;
}

/* Column headers — Fraunces serif, no fill, anchored by a deep teal rule */
.compare-table thead th {
    background: transparent;
    text-align: left;
    padding: 8px 28px 18px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    color: var(--text);
    border-bottom: 2px solid var(--primary);
    vertical-align: bottom;
}

.compare-table thead th:first-child {
    background: transparent;
    width: 19%;
    border-bottom-color: var(--border-light);
    border-bottom-width: 1px;
}

/* Highlight column header — amber */
.compare-table thead th.highlight-header {
    color: var(--primary);
    border-bottom-color: var(--accent);
    position: relative;
}

.compare-table thead th.highlight-header::after {
    content: '';
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: -2px;
    height: 2px;
    background: var(--accent);
}

.highlight-header-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin-left: 4px;
    white-space: nowrap;
}

/* Row labels (left column) — small caps, quiet, in muted text */
.compare-table tbody th {
    background: transparent;
    text-align: left;
    padding: 24px 24px 24px 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7188rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
    line-height: 1.5;
}

/* Data cells */
.compare-table td {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    line-height: 1.65;
    vertical-align: top;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* Highlight column — soft amber wash + amber edge rules */
.compare-table td.highlight-col {
    background: linear-gradient(180deg, rgba(232, 212, 180, 0.22) 0%, rgba(232, 212, 180, 0.10) 100%);
    color: var(--text);
    font-weight: 500;
    border-bottom-color: rgba(232, 212, 180, 0.6);
    position: relative;
}

.compare-table tbody tr:last-child td.highlight-col {
    border-bottom: 1px solid var(--accent-pale);
}

/* ===== Service grid (Section 5) ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg);
    padding: 36px 34px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hairline amber accent at top, animates in on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: var(--teal-muted);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

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

.service-card h3 {
    color: var(--text);
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.service-card .answer-first {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.875rem;
    line-height: 1.65;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-card.full-span {
    grid-column: 1 / -1;
}

/* ===== Founder block ===== */
.founder {
    background: var(--cream);
    padding: 40px 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-top: 2.5rem;
    position: relative;
}

/* Editorial accent line on the left edge */
.founder::before {
    content: '';
    position: absolute;
    top: 44px;
    bottom: 44px;
    left: -1px;
    width: 3px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}

.founder h3 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.founder p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.founder p:last-child {
    margin-bottom: 0;
}

.founder a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent-pale);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.founder a:hover {
    color: var(--accent-light);
    text-decoration-color: var(--accent-light);
}

/* ===== CTA section ===== */
.cta-block {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-block h2 {
    color: var(--text-on-dark);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.cta-block p {
    color: var(--text-on-dark-muted);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.cta-block .btn-hero {
    margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: var(--teal-muted);
}

.faq-item[open] {
    border-color: var(--teal-muted);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px 28px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    letter-spacing: -0.005em;
    line-height: 1.4;
    transition: color 0.2s ease;
}

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

.faq-item[open] .faq-question {
    color: var(--primary);
    padding-bottom: 14px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    line-height: 1;
    width: 22px;
    text-align: center;
}

.faq-item[open] .faq-question::after {
    content: '\2013';
    color: var(--accent);
}

.faq-answer {
    padding: 0 28px 26px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9875rem;
    max-width: 760px;
}

.faq-answer p {
    margin-bottom: 0.875rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 44px;
    background: var(--cream);
    border-top: 1px solid var(--border-light);
    position: relative;
}

/* Small editorial accent rule at top center */
.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--accent);
}

.footer .container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.25rem;
}

.footer-brand img {
    height: 36px;
    width: auto;
}

.footer-brand-text {
    line-height: 1.15;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--text);
    font-weight: 500;
    display: block;
    letter-spacing: 0.005em;
}

.footer-brand-sub {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-blurb {
    color: var(--text-secondary);
    font-size: 0.9688rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 0;
}

.footer-blurb a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--teal-muted);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-blurb a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent-pale);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border-light);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
}

/* ===== Reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --section-pad: 72px;
        --section-pad-sm: 56px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }

    .hero h1 { font-size: 2.75rem; }
    .hero-sub { font-size: 1.0625rem; }
    .hero-definition { font-size: 1rem; }

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

    .signs-list li {
        padding: 28px 28px 28px 88px;
    }
    .signs-list li::before {
        top: 26px;
        left: 28px;
        font-size: 1.875rem;
    }

    .founder {
        padding: 32px 32px 32px 30px;
    }
    .founder::before {
        top: 36px;
        bottom: 36px;
    }
}

@media (max-width: 768px) {
    .container, .container-narrow {
        padding: 0 22px;
    }

    h1 { font-size: 2.125rem; }
    h2 { font-size: 1.625rem; }

    .hero {
        padding: 130px 0 80px;
        min-height: auto;
    }

    .hero h1 { font-size: 2.25rem; }
    .hero-sub { font-size: 1rem; }

    .compare-table {
        font-size: 0.875rem;
    }
    .compare-table thead th {
        padding: 8px 18px 14px;
        font-size: 1rem;
    }
    .compare-table tbody th {
        padding: 18px 18px 18px 0;
    }
    .compare-table td {
        padding: 18px 20px;
    }

    .signs-list li {
        padding: 24px 22px 24px 72px;
    }
    .signs-list li::before {
        top: 24px;
        left: 22px;
        font-size: 1.625rem;
    }

    .founder {
        padding: 28px 26px 28px 24px;
    }

    .faq-question {
        padding: 22px 4px;
        font-size: 1.0625rem;
    }
    .faq-answer {
        padding: 0 4px 24px;
    }

    .brand-sub { font-size: 0.625rem; }
    .brand-name { font-size: 1.125rem; }

    .footer-brand-name { font-size: 1.1875rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .btn { padding: 14px 28px; }
}
