/* =========================================================
   Transformative Insights — Modern Professional
   Brand palette (from logo):
     Navy   #1B2A5E   primary
     Sky    #88B4E0   secondary accent
     Gold   #F4A030   warm accent / "Insights" script
   ========================================================= */

:root {
    /* Brand palette — sampled directly from the Transformative Insights logo */
    --navy-900: #0B0B3D;   /* logo background — deep, indigo-leaning */
    --navy-800: #18185C;   /* lighter navy */
    --navy-700: #2A2A78;   /* hover / interactive */
    --navy-100: #E6E8F4;   /* tint background */

    --sky-500: #68B8F0;    /* "Transformative" wordmark + right profile */
    --sky-400: #8BC8F4;    /* lighter accent */
    --sky-100: #E9F3FC;    /* subtle background */

    --gold-500: #F8B040;   /* "Insights" script + left profile */
    --gold-400: #FAC265;   /* hover */
    --gold-100: #FDEDD0;   /* soft background */

    --bg: #FFFFFF;
    --bg-alt: #FAFAFC;
    --bg-section: #F5F7FB;

    --text: #1F2540;
    --text-soft: #4A5168;
    --text-muted: #6B7280;
    --border: #E5E7EB;

    /* Backwards-compat aliases (keep old variable names mapping to new colors
       so existing rules keep working without a full rewrite) */
    --teal-900: var(--navy-900);
    --teal-700: var(--navy-800);
    --teal-500: var(--navy-700);
    --teal-100: var(--sky-100);
    --coral: var(--gold-500);
    --coral-soft: var(--gold-100);
    --gold: var(--gold-500);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;

    --shadow-sm: 0 1px 2px rgba(15, 26, 61, 0.06);
    --shadow: 0 8px 30px rgba(15, 26, 61, 0.10);
    --shadow-lg: 0 20px 60px rgba(15, 26, 61, 0.16);

    --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--teal-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-900); }

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

/* ----- Typography ----- */
h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--teal-900);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); }

em { font-style: italic; color: var(--gold-500); font-family: var(--serif); font-weight: 500; }
h1 em, h2 em, h3 em { font-family: "Caveat", var(--serif); font-style: normal; font-weight: 600; font-size: 1.05em; line-height: 0.9; padding-right: 6px; }

p { margin: 0 0 16px; color: var(--text-soft); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy-800);
    font-weight: 600;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--gold-500);
    border-radius: 2px;
}

.section-lede { font-size: 1.1rem; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--sans);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--teal-900); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { color: var(--teal-700); background: transparent; border-color: transparent; padding: 14px 8px; }
.btn-ghost:hover { color: var(--teal-900); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ----- Header / Nav ----- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--teal-900);
    font-weight: 500;
}
.brand:hover { color: var(--teal-900); }

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-image: url('assets/logo.png');
    background-color: var(--navy-900);
    /* The logo PNG is 1599x961; the circular icon mark sits at roughly
       49% horizontal, 36% vertical. background-size: 320% zooms in on it. */
    background-size: 340% auto;
    background-position: 49% 36%;
    background-repeat: no-repeat;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 11, 61, 0.22);
}
.brand-text {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--navy-800);
    line-height: 1;
}
.wm-prim {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--navy-800);
    letter-spacing: -0.005em;
}
.wm-script {
    font-family: "Caveat", "Cormorant Garamond", cursive;
    font-weight: 600;
    color: var(--gold-500);
    font-size: 1.15em;
    letter-spacing: 0;
    margin-left: -2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.site-nav a {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}
.site-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--coral);
    transition: width var(--transition);
}
.site-nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--teal-900);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ----- Hero ----- */
.hero {
    padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 100px);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(244, 160, 48, 0.14), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(136, 180, 224, 0.18), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    margin-bottom: 24px;
}

.hero-lede {
    font-size: 1.18rem;
    max-width: 540px;
    color: var(--text-soft);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    display: inline-block;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-panel {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 5 / 4;
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
}
.hero-logo-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 110%, rgba(248, 176, 64, 0.12), transparent 50%),
        radial-gradient(circle at 80% -10%, rgba(104, 184, 240, 0.10), transparent 50%);
    pointer-events: none;
}
.hero-logo-panel::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, transparent 55%, rgba(248, 176, 64, 0.18));
    border-radius: var(--radius-lg);
    z-index: -1;
    transform: translate(16px, 16px);
}
.hero-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.hero-quote {
    position: absolute;
    bottom: -24px;
    right: -8px;
    background: #fff;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 260px;
    border-left: 3px solid var(--coral);
}
.hero-quote p {
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--teal-900);
    line-height: 1.4;
}

/* ----- Sections ----- */
.section {
    padding: clamp(70px, 9vw, 120px) 0;
    position: relative;
}
.services { background: var(--bg-alt); }
.approach { background: var(--bg-section); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

/* ----- Cards ----- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-card.featured {
    background: linear-gradient(180deg, #fff 0%, #FBFCFC 100%);
    border-color: var(--teal-100);
    box-shadow: var(--shadow-sm);
}
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--coral);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 999px;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--teal-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { color: var(--teal-900); }

.service-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}
.service-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-soft);
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
}
.service-list li:first-child { border-top: 0; }
.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 2px;
    background: var(--coral);
}

/* ----- About ----- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
}

.about-image { position: relative; }
.image-frame {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-100), var(--gold-100));
    box-shadow: var(--shadow);
    position: relative;
}
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--teal-700);
    gap: 12px;
}
.image-placeholder svg { width: 80px; height: 80px; opacity: 0.6; }
.image-placeholder span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}
.about-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.badge-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--teal-700);
    font-weight: 600;
    line-height: 1;
}
.badge-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    max-width: 160px;
    line-height: 1.3;
}

.about-content .lead {
    font-size: 1.18rem;
    color: var(--text);
    margin-bottom: 18px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.cred-item { display: flex; flex-direction: column; gap: 4px; }
.cred-item strong { color: var(--teal-900); font-size: 0.9rem; }
.cred-item span { color: var(--text-muted); font-size: 0.9rem; }

/* ----- Approach pillars ----- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.pillar-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 500;
    font-style: italic;
}
.pillar h3 { color: var(--teal-900); margin-bottom: 10px; }
.pillar p { margin: 0; }

/* ----- How it works (steps) ----- */
.how-it-works { background: var(--bg); }

.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-100) 10%, var(--teal-100) 90%, transparent);
    z-index: 0;
}
.step {
    background: var(--bg);
    padding: 8px 4px;
    position: relative;
    z-index: 1;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--teal-100);
    color: var(--teal-700);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
    transition: all var(--transition);
}
.step:hover .step-num {
    background: var(--teal-700);
    color: #fff;
    border-color: var(--teal-700);
    transform: translateY(-2px);
}
.step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.95rem;
    margin: 0;
}

/* ----- FAQ ----- */
.faq { background: var(--bg-alt); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro .btn-ghost { padding-left: 0; margin-top: 8px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
    border-color: var(--teal-100);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--teal-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-family: var(--sans);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--teal-700);
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item[open] summary::after {
    content: '–';
    transform: rotate(0deg);
}
.faq-item summary:hover { color: var(--teal-700); }
.faq-answer {
    padding: 0 26px 22px;
}
.faq-answer p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
}

/* ----- Quote band ----- */
.quote-band {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.quote-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(244, 160, 48, 0.20), transparent 45%),
        radial-gradient(circle at 82% 70%, rgba(136, 180, 224, 0.18), transparent 50%);
    pointer-events: none;
}
.quote-band blockquote::before {
    content: '"';
    display: block;
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.85;
}
.quote-band blockquote {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    position: relative;
}
.quote-band blockquote p {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-style: italic;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.4;
}
.quote-band footer {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

/* ----- Contact ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
}
.contact-list a { color: var(--teal-900); font-weight: 500; }
.contact-list a:hover { color: var(--teal-700); }
.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--teal-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-meta {
    margin-top: 28px;
    padding: 20px;
    background: var(--bg-section);
    border-radius: var(--radius);
    border-left: 3px solid var(--coral);
}
.contact-meta p { margin: 0; font-size: 0.95rem; }

/* ----- Form ----- */
.contact-form {
    background: #fff;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form h3 {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--teal-900);
}
.contact-form label {
    display: block;
    margin-bottom: 16px;
}
.contact-form label span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-800);
    box-shadow: 0 0 0 3px rgba(27, 42, 94, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .error { border-color: #C44545; box-shadow: 0 0 0 3px rgba(196, 69, 69, 0.10); }

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

.form-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 14px 0 0;
    text-align: center;
}

.form-success {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--teal-100);
    color: var(--teal-900);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--teal-700);
    font-size: 0.95rem;
}

/* ----- Footer ----- */
.site-footer {
    background: var(--teal-900);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
}
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 0.85rem; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand-footer {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo {
    width: auto;
    max-width: 280px;
    height: auto;
    display: block;
}
.footer-tag {
    margin-top: 14px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 360px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.footer-cols ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-cols li { font-size: 0.92rem; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom small { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ----- Reveal animation ----- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
    .hero-quote { display: none; }

    .card-grid { grid-template-columns: 1fr; }
    .pillars { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { max-width: 380px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps::before { display: none; }
    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute;
        top: 76px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition);
    }
    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--border); }
    .site-nav a:last-child { border-bottom: 0; }
    .site-nav .btn { margin-top: 8px; align-self: flex-start; }

    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .form-row { grid-template-columns: 1fr; }
    .credentials { grid-template-columns: 1fr; gap: 12px; }
    .footer-cols { grid-template-columns: 1fr; gap: 24px; }
    .contact-form { padding: 28px 22px; }
    .brand-text { display: none; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .faq-item summary { font-size: 1.05rem; padding: 18px 20px; }
    .faq-answer { padding: 0 20px 18px; }
}
