/* ============================================
   GC ASSIST SP — Design tokens
   ============================================ */
:root {
    /* Color */
    --ink: #14213d;              /* deep navy-black — nav, footer, headings */
    --navy: #1f3a5f;             /* primary brand blue */
    --navy-light: #eaf0f7;       /* pale navy tint — icon plates, section bg */
    --blueprint: #3f6c96;        /* mid blue — blueprint-grid accent lines */
    --yellow: #D8A63A;           /* rich gold — CTAs, accents */
    --paper: #f7f6f2;            /* warm off-white page background */
    --white: #ffffff;
    --ink-soft: #5b5f68;         /* body copy gray */
    --border: #e5e2da;

    /* Type */
    --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --font-body: "Work Sans", "Segoe UI", sans-serif;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    touch-action: pan-y;
    overscroll-behavior-x: none;
    position: relative;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.wwa, .wwa2 {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink-soft);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.wwa2 {
    padding-top: 24px;
}

/* LAYOUT */
.container {
    max-width: 900px;
    margin: auto;
}

section {
    padding: 84px 20px;
    text-align: center;
}

.section-title {
    margin-bottom: 20px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}

.grid {
    margin-top: 40px;
}

/* ============================================
   NAV
   ============================================ */
header {
    background: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.28);
    background: rgba(20,33,61,0.96);
    backdrop-filter: blur(8px);
}

header.scrolled nav {
    padding-top: 8px;
    padding-bottom: 8px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
    transition: padding 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}


.logo-wordmark {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 1;
}

.logo-gc {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.logo-divider {
    width: 1.5px;
    height: 28px;
    background: var(--yellow);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
}

.logo-assist,
.logo-group {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-assist {
    color: var(--white);
}

.logo-group {
    color: var(--yellow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-select {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    appearance: auto;
}

.lang-select:hover {
    border-color: var(--yellow);
}

.lang-select option {
    color: var(--ink);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.nav-links a.nav-cta {
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(216,166,58,0.35);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* BURGER — animated 3-line icon that morphs into an X when open */
.menu-toggle {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 210;
    padding: 0;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.open span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.nav-close-row,
.menu-close {
    display: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 64vh;
    max-height: 720px;
    display: grid;
    grid-template-columns: minmax(360px, 46%) 1fr;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 70px 56px 70px 40px;
    /* diagonal cut on the right edge — echoes the folded-corner document icons used across the site */
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero-photo {
    position: relative;
    background: url('assets/hero.jpg') center 30%/cover no-repeat;
    margin-left: -14%;
}

.hero .eyebrow {
    color: var(--yellow);
}

.hero h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: 0.005em;
    color: var(--white);
    max-width: 460px;
}

.hero p {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 34px;
    color: var(--white);
    max-width: 420px;
}

/* BUTTON */
.cta-button {
    background: var(--yellow);
    padding: 0 34px;
    height: 58px;
    line-height: 58px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 28px rgba(216,166,58,0.38);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.99);
}

/* Scroll indicator at bottom of hero */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--white);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ADMINISTRATIVE TASKS — quick-scan checklist
   ============================================ */
#tasks {
    background: var(--white);
    padding-top: 70px;
    padding-bottom: 70px;
}

.task-list,
.who-grid,
.stats,
.steps {
    list-style: none;
    margin-block: 0;
    padding-inline-start: 0;
}

.task-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    max-width: 700px;
    margin: 36px auto 0;
    text-align: left;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
}

.task-item svg {
    flex-shrink: 0;
    color: var(--navy);
    background: var(--navy-light);
    border-radius: 50%;
    padding: 5px;
    width: 26px;
    height: 26px;
    box-sizing: border-box;
}
/* ============================================
   PRICING
   ============================================ */
.price_header {
    color: var(--yellow);
    font-size:x-large;
}
.section-title-price {
    font-size:larger;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}
/* ============================================
   WHO WE HELP
   ============================================ */
#who-we-help {
    background: var(--paper);
    padding-top: 60px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 36px auto 0;
}

.who-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.who-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(20,33,61,0.1);
    border-color: transparent;
}

.who-item svg {
    color: var(--navy);
}

.who-item span {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

/* ============================================
   FAQ
   ============================================ */
#faq {
    background: var(--paper);
}

.faq-list {
    max-width: 720px;
    margin: 36px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 14px;
    text-align: left;
}

#about {
    margin-top: 0;
    background: var(--paper);
}

/* ============================================
   WHY US STATS
   ============================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 560px;
    margin: 0 auto 50px;
}

.stat {
    padding: 10px;
    border-left: 3px solid var(--yellow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1;
}

.stat p {
    text-align: left;
}

/* ============================================
   SERVICES + PRICING (blueprint-textured band)
   ============================================ */
article.bgimg {
    position: relative;
    padding: 10px 20px 20px;
    background-color: var(--navy-light);
    background-image:
        linear-gradient(rgba(63,108,150,0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63,108,150,0.09) 1px, transparent 1px);
    background-size: 34px 34px;
}

.imgservice { width: 34px; }

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

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

/* CARDS */
.card {
    background: var(--white);
    padding: 34px 28px;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(20,33,61,0.1);
    border-color: transparent;
}

.card h3 {
    font-size: 21px;
}

.price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.card-featured {
    border: 2px solid var(--navy);
    position: relative;
}

/* Stamp-style badge — nods to the permit-approval world this business lives in */
.badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 115px;
    height: 92px;
    background: var(--white);
    border: 2px dashed var(--navy);
    border-radius: 50%;
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    padding: 8px;
}

.new-client-offer {
    display: inline-block;
    margin: 4px auto 0;
    padding: 8px 20px;
    background: rgba(216,166,58,0.14);
    border: 1px solid var(--yellow);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    max-width: 520px;
}

.pricing-note {
    max-width: 640px;
    margin: 36px auto 0;
    font-size: 15px;
    color: var(--ink-soft);
}

.deposit-note {
    max-width: 640px;
    margin: 10px auto 0;
    font-size: 13.5px;
    color: var(--ink-soft);
    opacity: 0.85;
}

/* Secondary CTAs placed at the end of a section, nudging toward the next step */
.section-cta {
    margin-top: 36px;
}

.text-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, gap 0.2s ease;
}

.text-cta::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.text-cta:hover {
    border-color: var(--navy);
}

.text-cta:hover::after {
    transform: translateX(3px);
}

#pricing .section-cta {
    margin-top: 28px;
}

/* ============================================
   VALUE PROPS / WHY CHOOSE US
   ============================================ */
#value-props {
    background: var(--white);
    padding-top: 60px;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: left;
}

.value-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 10px;
    border: 1px solid var(--border);
    flex: 1 1 300px;
    max-width: calc(33.333% - 15px);
    box-sizing: border-box;
}

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.value-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.value-card p {
    font-size: 14.5px;
}

@media (max-width: 768px) {
    .value-card {
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how-it-works {
    background-color: var(--ink);
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 34px 34px;
}

#how-it-works .section-title,
#how-it-works .section-title::after {
    color: var(--white);
}

#how-it-works .section-title {
    color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: var(--white);
    padding: 34px 22px;
    border-radius: 10px;
    border: 1px solid var(--border);
    position: relative;
    text-align: left;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 19px;
}

/* ============================================
   TEXT CONSISTENCY
   ============================================ */
p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
    background: var(--white);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-content > p {
    max-width: 600px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 640px;
    width: 100%;
    margin: 36px auto 0;
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    text-align: left;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    width: 100%;
    box-sizing: border-box;
    background: var(--white);
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31,58,95,0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    grid-column: 1 / -1;
    border: none;
    cursor: pointer;
    width: 100%;
}

.form-status {
    grid-column: 1 / -1;
    font-size: 14px;
    min-height: 20px;
}

.form-status.success {
    color: #1a7f37;
}

.form-status.error {
    color: #c0362c;
}

/* BIG FOOTER CTA BANNER */
.footer-cta {
    background: var(--ink);
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    text-align: center;
    padding: 90px 24px;
}

.footer-cta h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 26px 24px;
    text-align: center;
    font-size: 14px;
}

.footer-copyright {
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--yellow);
    text-decoration: underline;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    /* Backdrop behind the drawer */
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10,16,28,0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 190;
    }

    .nav-backdrop.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Slide-in drawer from the right */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        max-width: 320px;
        flex-direction: column;
        gap: 0;
        background: var(--ink);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 200;
        box-shadow: -8px 0 32px rgba(0,0,0,0.25);
        display: flex;
        padding-top: 8px;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-close-row {
        display: flex;
        justify-content: flex-end;
        padding: 10px 16px 6px;
        border-top: none !important;
    }

    .menu-close {
        display: block;
        background: none;
        border: none;
        color: rgba(255,255,255,0.8);
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        padding: 4px 8px;
    }

    .nav-links li {
        border-top: 1px solid rgba(255,255,255,0.08);
        opacity: 0;
        transform: translateX(16px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(2) { transition-delay: 0.06s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.11s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.16s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.21s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.26s; }

    .nav-links a {
        display: block;
        padding: 16px 24px;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.nav-cta {
        margin: 14px 24px 0;
        padding: 12px 18px;
        background: var(--yellow);
        color: var(--ink);
        border-radius: 6px;
        font-weight: 700;
        text-align: center;
    }

    .grid {
        grid-template-columns: 1fr;
    }

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

    .stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 320px;
    }

    .card-featured {
        margin-top: 20px;
    }

    section {
        padding: 56px 20px;
    }

    #pricing, #contact, #how-it-works {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    /* HERO — stack the photo above the text panel, undo desktop split-panel tricks */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }

    .hero-content {
        clip-path: none;
        padding: 40px 24px 44px;
        order: 2;
        align-items: center;
        text-align: center;
    }

    .hero-photo {
        margin-left: 0;
        order: 1;
        min-height: 240px;
    }

    .hero h1 {
        font-size: 28px;
        max-width: none;
    }

    .hero p {
        font-size: 16px;
        max-width: none;
    }

    p {
        font-size: 15px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .form-field.full {
        grid-column: auto;
    }

    .task-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .who-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .who-item {
        padding: 20px 12px;
    }

    .footer-cta {
        padding: 56px 20px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    .scroll-indicator {
        display: none;
    }

    .cta-button {
        height: 54px;
        line-height: 54px;
        padding: 0 26px;
        font-size: 15px;
    }
}
