/*
Theme Name: Gutenberg Starter Theme
Theme URI: https://github.com/WordPress/gutenberg-theme/
Author: wordpressdotorg
Author URI: https://wordpress.org
Description: A simple theme for testing Gutenberg.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gutenberg-starter-theme
Tags: translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

gutenberg-starter-theme is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0d0d0d;
    --charcoal: #1a1a1a;
    --iron: #2c2c2c;
    --steel: #3d3d3d;
    --ash: #6b6b6b;
    --silver: #a8a8a8;
    --fog: #e8e4dc;
    --white: #f5f2eb;
    --yellow: #f5c518;
    --orange: #e8560a;
    --rust: #c4410a;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 4px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.28);
    --nav-h: 68px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.65;
    overflow-x: hidden;
}


/* ── UTILITY ── */

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

.forminator-button.btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: var(--font-display) !important;
    font-size: 1.1rem !important;
    letter-spacing: .06em !important;
    padding: 14px 32px !important;
    border-radius: var(--radius) !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all .2s ease !important;
    font-size: 1.3rem !important;
    padding: 18px 44px !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: .06em;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--rust);
    border-color: var(--rust);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 86, 10, .4);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.3rem;
    padding: 18px 44px;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.section-tag-wrapper {
    display: flex;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(232, 86, 10, .08);
    border: 1px solid rgba(232, 86, 10, .25);
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.section-tag--light {
    color: var(--yellow);
    background: rgba(245, 197, 24, .08);
    border-color: rgba(245, 197, 24, .25);
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--ash);
    max-width: 580px;
    margin-bottom: 48px;
}

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


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 13, 13, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 197, 24, .15);
    height: var(--nav-h);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: .08em;
    color: var(--white);
    text-decoration: none;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--silver);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius);
    transition: color .2s;
}

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

.nav-links .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: .06em;
    padding: 8px 20px;
}

.nav-links .nav-cta:hover {
    background: var(--rust);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s;
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-h);
    overflow: hidden;
    /* Background image — replace URL with your own photo */
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80');
    background-size: cover;
    background-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(13, 13, 13, .88) 0%, rgba(13, 13, 13, .72) 50%, rgba(232, 86, 10, .18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 775px;
    padding-top: 48px;
    padding-bottom: 100px;
    animation: fadeUp .7s ease both;
    text-align: center;
}

.hero p.hero-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 6rem);
    line-height: .9;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, .5);
}

.hero p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    color: rgba(245, 242, 235, .85);
    margin-bottom: 28px;
}

.hero .tagline {
    font-size: 20px;
    font-weight: 500;
    color: rgba(245, 242, 235, .85);
    margin-bottom: 28px;
}

.hero h2 {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 3rem);
    font-weight: 300;
    color: rgba(245, 242, 235, .85);
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-badges span {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--black);
    background: rgba(245, 197, 24, .7);
    border: 1px solid rgba(245, 197, 24, .3);
    padding: 5px 14px;
    border-radius: 2px;
}


/* Scrolling tape */

.hero-tape {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: .12em;
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
}

.hero-tape::before {
    content: attr(class);
    display: none;
}


/* We animate via JS; fallback static */


/* ══════════════════════════════════════════
   QUOTE SECTION
══════════════════════════════════════════ */

.quote-section {
    background: var(--fog);
    padding: 96px 0;
    border-bottom: 3px solid var(--yellow);
}

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

.quote-intro {
    padding-top: 12px;
}

.quote-intro .section-h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.quote-intro p {
    color: var(--steel);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.intro-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.intro-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: .95rem;
}

.perk-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}


/* Form card */

.form-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 6px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--orange);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: .04em;
    margin-bottom: 24px;
    color: var(--black);
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field-group label {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--steel);
}

.req {
    color: var(--orange);
}

.opt {
    color: var(--silver);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.field-group input,
.field-group select {
    background: var(--white);
    border: 1.5px solid #d4cfca;
    border-radius: var(--radius);
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--black);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.field-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.field-group input:focus,
.field-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 86, 10, .12);
}

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

.form-disclaimer {
    text-align: center;
    font-size: .78rem;
    color: var(--black);
    margin-top: 12px;
}

.form-errors {
    background: #fff2f0;
    border: 1.5px solid #ffc0b8;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: .9rem;
    color: #c0392b;
}

.form-errors ul {
    margin-top: 8px;
    padding-left: 20px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--ash);
    font-size: 1rem;
}


/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */

.how-section {
    background: var(--charcoal);
    padding: 96px 0;
}

.how-section .section-h2,
.how-section .section-sub {
    color: var(--white);
}

.how-section .section-sub {
    color: var(--silver);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 8px;
}

.step-card {
    background: var(--iron);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-num {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(245, 197, 24, .12);
    position: absolute;
    top: 12px;
    right: 20px;
    letter-spacing: -.02em;
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: .03em;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--silver);
    font-size: .95rem;
    line-height: 1.6;
}


/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */

.pricing-section {
    background: var(--white);
    padding: 96px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.price-card {
    background: var(--fog);
    border: 1.5px solid rgba(0, 0, 0, .07);
    border-radius: 6px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform .25s, box-shadow .25s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    background: var(--charcoal);
    border-color: var(--yellow);
    transform: scale(1.04);
}

.price-card--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.price-badge {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.price-badge--featured {
    color: var(--yellow);
}

.price-yards {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--black);
    margin-bottom: 2px;
}

.price-card--featured .price-yards {
    color: var(--white);
}

.price-yards span {
    font-size: 2rem;
    color: var(--ash);
}

.price-card--featured .price-yards span {
    color: var(--silver);
}

.price-range {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 14px;
    letter-spacing: .04em;
}

.price-desc {
    font-size: .9rem;
    color: var(--ash);
    margin-bottom: 20px;
    line-height: 1.55;
}

.price-card--featured .price-desc {
    color: var(--silver);
}

.price-fits {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.price-fits li {
    font-size: .88rem;
    color: var(--steel);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-fits li::before {
    content: '—';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

.price-card--featured .price-fits li {
    color: var(--silver);
    border-color: rgba(255, 255, 255, .08);
}

.price-card--featured .btn-outline {
    border-color: var(--yellow);
    color: var(--yellow);
}

.price-card--featured .btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
}

.pricing-note {
    text-align: center;
    font-size: .82rem;
    color: var(--ash);
    background: rgba(0, 0, 0, .04);
    border-radius: var(--radius);
    padding: 12px 20px;
}


/* ══════════════════════════════════════════
   PROVIDERS
══════════════════════════════════════════ */

.providers-section {
    background: var(--charcoal);
    padding: 96px 0;
}

.providers-section .section-h2 {
    color: var(--white);
}

.providers-section .section-sub {
    color: var(--silver);
}

.providers-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.provider-card {
    background: var(--iron);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background .2s;
}

.provider-card:hover {
    background: var(--steel);
}

.provider-initial {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.provider-info {
    flex: 1;
}

.provider-info h4 {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.provider-info p {
    font-size: .82rem;
    color: var(--silver);
    margin-top: 2px;
}

.stars {
    color: var(--yellow);
    font-size: .9rem;
    letter-spacing: .04em;
    margin-top: 4px;
}

.provider-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(245, 197, 24, .1);
    border: 1px solid rgba(245, 197, 24, .2);
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
}


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */

.faq-section {
    background: var(--fog);
    padding: 96px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: auto;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid rgba(0, 0, 0, .07);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item[open] {
    border-color: var(--orange);
}

.faq-item summary {
    font-weight: 600;
    font-size: .97rem;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .25s;
}

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

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

.faq-item p {
    padding: 0 24px 22px;
    font-size: .93rem;
    color: var(--steel);
    line-height: 1.65;
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding-top: 16px;
}

.faq-item p strong {
    color: var(--black);
}


/* ══════════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════════ */

.cta-section {
    background: var(--orange);
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: .03em;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--orange);
    border-color: var(--white);
    white-space: nowrap;
}

.cta-section .btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.site-footer {
    background: var(--black);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 2rem;
}

.footer-brand p {
    font-size: .88rem;
    color: var(--ash);
    line-height: 1.65;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: .06em;
    color: var(--yellow);
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-contact a {
    font-size: .88rem;
    color: var(--silver);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: .88rem;
    color: var(--silver);
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: .78rem;
    color: var(--ash);
}

.footer-bottom a {
    color: var(--silver);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}


/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.tape-inner {
    display: inline-block;
    animation: ticker 18s linear infinite;
    white-space: nowrap;
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 960px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card--featured {
        transform: none;
    }
    .price-card--featured:hover {
        transform: translateY(-4px);
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-inner .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--charcoal);
        padding: 24px;
        gap: 4px;
        border-bottom: 2px solid var(--orange);
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .field-row {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 28px 20px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: clamp(4rem, 18vw, 7rem);
    }
}