:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-tertiary: #eef1f5;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #8a97a8;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-soft: rgba(37, 99, 235, 0.08);
    --border-color: #e4e8ee;
    --success: #16a34a;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.10);
    --radius: 14px;
    --maxw: 1180px;
}

[data-theme="dark"] {
    --bg-primary: #0b1120;
    --bg-secondary: #0f172a;
    --bg-tertiary: #172033;
    --text-primary: #f1f5f9;
    --text-secondary: #b3c0d4;
    --text-tertiary: #7c8aa1;
    --accent: #60a5fa;
    --accent-hover: #93c5fd;
    --accent-soft: rgba(96, 165, 250, 0.12);
    --border-color: #22304a;
    --success: #34d399;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Sora', 'Inter', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

a { color: inherit; }

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

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: color-mix(in srgb, var(--bg-primary) 82%, transparent);
    border-bottom: 1px solid transparent;
    backdrop-filter: saturate(180%) blur(14px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

nav {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1.1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-decoration: none;
}

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

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-cta {
    padding: 0.55rem 1.1rem;
    background: var(--accent);
    color: #fff !important;
    border-radius: 9px;
    font-weight: 600 !important;
}

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

.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.theme-toggle:hover { border-color: var(--accent); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 11rem 0 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 620px;
    background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 68%);
    pointer-events: none;
}

.hero-content { position: relative; max-width: 780px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

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

.hero h1 {
    font-size: clamp(2.2rem, 5.4vw, 3.9rem);
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 2.25rem;
}

.cta-buttons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.btn {
    padding: 0.9rem 1.6rem;
    border-radius: 11px;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

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

.trust-row {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-row span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ---------- Sections ---------- */
section { scroll-margin-top: 80px; }

.section {
    padding: 6rem 0;
}

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

.section-header {
    max-width: 640px;
    margin-bottom: 3.25rem;
}

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

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.08rem;
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section.alt .service-card { background: var(--bg-primary); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border-color));
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

/* ---------- Solutions / example builds ---------- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solution-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section.alt .solution-card { background: var(--bg-primary); }

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border-color));
}

.solution-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-align: center;
}

/* ---------- Process ---------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.15rem;
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Principles / why me ---------- */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem 2.5rem;
}

.principle {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.principle .check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle .check svg { width: 16px; height: 16px; }

.principle h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.principle p {
    color: var(--text-secondary);
    font-size: 0.94rem;
}

/* ---------- Contact ---------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info h2 { margin-bottom: 1.1rem; }

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method .c-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method .c-icon svg { width: 19px; height: 19px; }

.contact-method h4 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.contact-method a,
.contact-method span.val {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.contact-method a:hover { color: var(--accent); }

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 22%, transparent);
}

.contact-form-wrapper {
    background: var(--bg-primary);
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.section.alt .contact-form-wrapper { background: var(--bg-primary); }

/* ---------- Contact (centered lead form) ---------- */
.contact-lead {
    max-width: 620px;
    margin: 0 auto;
}

.contact-lead-head {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-lead-head .section-label { text-align: center; }

.contact-lead-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* ---------- Lead capture form ---------- */
.lead-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

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

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.form-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: -0.4rem;
    margin-bottom: 0.4rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-row label .opt {
    font-weight: 400;
    color: var(--text-tertiary);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    /* 16px minimum: anything smaller makes iOS Safari zoom in on focus. */
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--text-tertiary); }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.lead-form textarea { resize: vertical; min-height: 84px; }

/* Native select styled to match, with a custom chevron */
.lead-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a97a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
}

/* Placeholder look while nothing is chosen (value is empty on a required select) */
.lead-form select:invalid { color: var(--text-tertiary); }

.form-hint {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
}

.form-submit:disabled { opacity: 0.7; cursor: default; }

.form-submit svg { width: 1.15rem; height: 1.15rem; }

.contact-lead > .availability-badge {
    display: flex;
    width: fit-content;
    margin: 1.5rem auto 0;
}

.form-status {
    font-size: 0.9rem;
    margin: 0;
    min-height: 1.2em;
}

.form-status.ok { color: var(--success); }
.form-status.warn { color: var(--text-secondary); }

.form-alt {
    font-size: 0.86rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 0.25rem;
}

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

/* Honeypot: kept in the layout but off-screen (bots skip display:none). */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* ---------- Contact CTA band ---------- */
.cta-band {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 3rem 2rem;
}

.cta-band .section-label { text-align: center; }

.cta-band-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 0.6rem auto 1.75rem;
    max-width: 460px;
}

.cta-band .availability-badge {
    display: flex;
    width: fit-content;
    margin: 1.75rem auto 0;
}

/* ---------- Contact modal (native <dialog>) ---------- */
.contact-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: min(560px, 94vw);
    max-height: 90dvh;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.contact-dialog::backdrop {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
}

.contact-dialog[open] {
    display: flex;
    flex-direction: column;
    animation: lf-modal-in 0.25s ease;
}

@keyframes lf-modal-in {
    from { opacity: 0; transform: translate(-50%, calc(-50% + 10px)) scale(0.99); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

body.modal-open { overflow: hidden; }

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 9px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover { color: var(--text-primary); border-color: var(--text-tertiary); }
.modal-close svg { width: 18px; height: 18px; }

.modal-head {
    flex-shrink: 0;
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.modal-head .section-label { text-align: center; }

.modal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-top: 0.4rem;
}

.modal-sub {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-top: 0.5rem;
}

/* Inside the modal the form scrolls; the dialog itself is the card */
.contact-dialog .lead-form {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 2rem 2rem;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* ---------- Footer ---------- */
footer {
    background: var(--bg-primary);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.copyright {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* ---------- Scroll animation ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Gentle staggered entrance for the hero on load */
@keyframes lf-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: lf-rise 0.6s ease both; }
.hero-content > .eyebrow      { animation-delay: 0.05s; }
.hero-content > h1            { animation-delay: 0.12s; }
.hero-content > p             { animation-delay: 0.20s; }
.hero-content > .cta-buttons  { animation-delay: 0.28s; }
.hero-content > .trust-row    { animation-delay: 0.36s; }

/* Subtle stagger as each grid reveals on scroll */
.services-grid .fade-in:nth-child(2),
.solutions-grid .fade-in:nth-child(2),
.process-steps .fade-in:nth-child(2),
.principles-grid .fade-in:nth-child(2) { transition-delay: 0.06s; }
.services-grid .fade-in:nth-child(3),
.solutions-grid .fade-in:nth-child(3),
.process-steps .fade-in:nth-child(3),
.principles-grid .fade-in:nth-child(3) { transition-delay: 0.12s; }
.services-grid .fade-in:nth-child(4),
.solutions-grid .fade-in:nth-child(4),
.process-steps .fade-in:nth-child(4),
.principles-grid .fade-in:nth-child(4) { transition-delay: 0.18s; }
.solutions-grid .fade-in:nth-child(5),
.principles-grid .fade-in:nth-child(5) { transition-delay: 0.24s; }
.solutions-grid .fade-in:nth-child(6),
.principles-grid .fade-in:nth-child(6) { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .fade-in { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
    .form-grid-2 { grid-template-columns: 1fr; }

    /* Full-height sheet on phones: anchored to the top (no transform-centering)
       and sized with dvh so the on-screen keyboard can't hide fields or the
       submit button. The inner .lead-form still scrolls. */
    .contact-dialog {
        top: 0;
        left: 0;
        transform: none;
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        border-radius: 0;
        border: none;
    }

    .contact-dialog[open] { animation: none; }
}

@media (max-width: 720px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-140%);
        transition: transform 0.3s ease;
    }

    .nav-links.open { transform: translateY(0); }

    .nav-links li { width: 100%; }

    .nav-links a { display: block; padding: 0.6rem 0; }

    .nav-cta { text-align: center; }

    .nav-toggle { display: flex; }

    .hero { padding: 8.5rem 0 4rem; }

    .cta-buttons { flex-direction: column; }

    .btn { width: 100%; justify-content: center; }

    .footer-content { flex-direction: column; text-align: center; }
}
