/* Livengood Websites — Global CSS Bundle */
/* Version: 1.6 */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ======================================== */
/* css/var.css */
/* ======================================== */
/* ========================================
CORE BRAND COLORS
======================================== */

:root {

--primary: #C85C3A;
--primary-dark: #A2472B;
--accent: #568B7A;
--gold: #F4B942;
--ink: #262220;
--text: #3A3532;
--text-muted: #78726F;
--text-white: #FFFFFF;
--bg: #FFFFFF;
--bg-soft: #F8F6F5;
--bg-dark: #262220;
--border: #E3DDD9;

/* Layout */
--container-max: 1200px;
--container-padding: 1rem;
--nav-height: 5rem;

/* Typography */
--font-heading: 'Space Grotesk', sans-serif;
--font-body: 'Inter', sans-serif;

/* Font Sizes */
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 2rem;
--text-4xl: 3rem;

/* Spacing */
--space-xs: 0.25rem;
--space-sm: 0.5rem;
--space-md: 1rem;
--space-lg: 2rem;
--space-xl: 4rem;

/* Radius */
--radius-sm: 0.25rem;
--radius-md: 0.5rem;
--radius-lg: 1rem;

/* Shadows */
--shadow-sm: 0 2px 8px rgba(24, 20, 16, 0.04);
--shadow-md: 0 8px 24px rgba(24, 20, 16, 0.08);

/* Transitions */
--transition: 250ms ease;

}

/* ======================================== */
/* css/common.css */
/* ======================================== */
/* Base */
body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Section */
.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

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

/* Grid */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
    border: none;
    text-align: center;
    line-height: 1.5;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
}
.btn-primary:hover { background-color: var(--primary-dark); }

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
}
.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--ink);
}

.btn-sm { padding: var(--space-sm) var(--space-md); font-size: var(--text-sm); }
.btn-md { padding: var(--space-sm) var(--space-lg); font-size: var(--text-base); }
.btn-lg { padding: var(--space-md) var(--space-lg); font-size: var(--text-lg); }
.btn-block { width: 100%; }

/* Cards */
.card {
    background-color: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.card-desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.75;
}

/* Long-form copy block */
.section-copy {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-copy p {
    font-size: var(--text-base);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.section-copy h2 {
    font-size: var(--text-2xl);
    color: var(--ink);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.section-copy h3 {
    font-size: var(--text-xl);
    color: var(--ink);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.section-copy a {
    color: var(--primary);
    text-decoration: underline;
}

.section-copy a:hover {
    color: var(--primary-dark);
}

/* Spacing utilities */
.mt-4 { margin-top: var(--space-md); }
.mt-6 { margin-top: var(--space-lg); }
.mt-8 { margin-top: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-md); }
.mb-6 { margin-bottom: var(--space-lg); }
.mb-8 { margin-bottom: var(--space-lg); }

/* Text utilities */
.text-center { text-align: center; }
.text-light { color: var(--text-muted); }

/* FAQ accordion */
.faq {
    font-family: var(--font-body);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    background-color: var(--bg-soft);
    color: var(--text);
}

.faq-inner { max-width: 48rem; }

.faq-heading { margin-bottom: var(--space-lg); }

.faq-list { border-top: 1px solid var(--border); }

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

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    cursor: pointer;
    list-style: none;
}

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

.faq-question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--text);
    margin: 0;
}

.faq-plus {
    position: relative;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    background-color: var(--primary);
    transition: transform var(--transition);
}

.faq-plus::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.faq-plus::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-plus::after {
    transform: translateX(-50%) scaleY(0);
}

.faq-answer { padding: 0 0 var(--space-md); }

.faq-answer p {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 62ch;
    margin: 0;
}

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

/* ======================================== */
/* css/components/nav.css */
/* ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.nav-logo-img {
    height: calc(var(--nav-height) - 1rem);
    width: auto;
    display: block;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
    padding: var(--space-sm) 0;
}

.nav-link--external {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
    border-radius: 2px;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.is-active {
    color: var(--primary);
}

.nav-link.is-active::after {
    transform: scaleX(1);
}

/* Color comes from the .btn-brick utility; this only controls visibility. */
.nav-cta {
    display: none;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}

.nav-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}


@media (min-width: 768px) {
    nav {
        height: auto; 
        min-height: fit-content;
        align-items: stretch;
    }
    .nav-menu {
        display: flex;
    }
    .nav-cta {
        display: inline-flex;
    }
    .nav-toggle {
        display: none;
    }

    .nav-container {
        min-height: fit-content;
        display: grid;
        justify-content: space-evenly; 
        grid-template-areas: 
        "logo cta"
        "menu menu"
        ;
    }
    /* nav items to use in the grid */
#logo {grid-area: logo;}
#menu {grid-area: menu;}
#cta {grid-area: cta;}
}
@media (min-width: 1000px ) {
    .nav-container {
        display: flex;
        justify-content: space-evenly;
    }
}
.nav.is-scrolled {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    padding: var(--space-lg);
    flex-direction: column;
    gap: var(--space-md);
    z-index: 999;
    overflow-y: auto;
}

.nav-mobile.is-open {
    display: flex;
}

.nav-mobile .nav-link {
    font-size: var(--text-xl);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
}

.nav-mobile .nav-link.is-active {
    color: var(--primary);
}

.nav-mobile .btn {
    margin-top: var(--space-md);
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

/* ======================================== */
/* css/components/hero.css */
/* ======================================== */
/* ===== Home hero ===== */
.hero {
    background-color: var(--bg-soft);
    color: var(--text);
    font-family: var(--font-body);
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
    min-height: 800px;
    display: grid;
    place-items: center;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Left column: eyebrow + headline + sub */
.hero-left {
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--text-sm);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-4xl);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.hero-headline em {
    font-style: normal;
    color: var(--primary);
}

.hero-sub {
    font-size: var(--text-lg);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
}

/* Right column: video + CTA + trust */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--ink);
    flex-shrink: 0;
}

.hero-video {
    width: 100%;
    display: block;
}

.hero-unmute-btn {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-white);
    border: none;
    border-radius: 2rem;
    padding: 0.45rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.hero-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.hero-unmute-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: hero-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.hero-credibility {
    font-size: var(--text-sm);
    line-height: 1.65;
    color: var(--text-muted);
    border-left: 2px solid var(--primary);
    padding-left: var(--space-md);
    margin-top: var(--space-md);
    max-width: 44ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-speed {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.02em;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.hero-stars {
    color: var(--primary);
    letter-spacing: 0.05em;
}

@media (min-width: 900px) {
    .hero {
        padding-top: calc(var(--nav-height) + var(--space-xl));
        padding-bottom: var(--space-xl);
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
    }

    .hero-left {
        flex: 1;
        text-align: left;
    }

    .hero-sub {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-credibility {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-speed {
        text-align: left;
    }

    .hero-right {
        flex: 0 0 420px;
        align-items: flex-start;
    }

    .hero-video-wrap {
        max-width: none;
        width: 100%;
    }

    .hero-actions,
    .hero-trust {
        justify-content: flex-start;
    }
}

/* ======================================== */
/* css/components/footer.css */
/* ======================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-brand span {
    color: var(--primary);
}

.footer-desc {
    color: var(--border);
    font-size: var(--text-base);
    line-height: 1.75;
    max-width: 320px;
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    color: var(--border);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--bg-soft);
    font-size: var(--text-base);
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    color: var(--bg-soft);
    font-size: var(--text-base);
}

.footer-contact a {
    color: var(--bg-soft);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--text-muted);
    padding-top: var(--space-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ======================================== */
/* css/components/exit-popup.css */
/* ======================================== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(38, 34, 32, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    animation: fadeIn 250ms ease;
}

.exit-popup-overlay[hidden] {
    display: none;
}
.exit-popup-dismiss {
    color: var(--accent);
}
.exit-popup {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl) var(--space-lg);
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: slideUp 300ms ease;
}

.exit-popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: var(--text-xl);
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: var(--space-xs);
    transition: color var(--transition);
}

.exit-popup-close:hover {
    color: var(--text);
}

.exit-popup-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.exit-popup-body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.exit-popup-input {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem var(--space-md);
    width: 100%;
    transition: border-color var(--transition);
}

.exit-popup-input:focus {
    outline: none;
    border-color: var(--primary);
}

.exit-popup-success {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--accent);
    font-weight: 600;
    text-align: center;
    padding: var(--space-md) 0 0;
}

.exit-popup-success[hidden] {
    display: none;
}

.exit-popup-alt {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
}

.exit-popup-alt a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.exit-popup-alt a:hover {
    color: var(--primary-dark);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

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

/* === Soft variant — quiet urgency, respects the user's choice === */
.exit-popup--soft {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.exit-popup--soft .exit-popup-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    color: var(--ink);
}

.exit-popup--soft .exit-popup-body {
    font-size: var(--text-lg);
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

.exit-popup-cta {
    margin-top: var(--space-xl);
}

.exit-popup-cta .btn {
    width: 100%;
}

@media (max-width: 480px) {
    .exit-popup {
        padding: var(--space-lg) var(--space-md);
    }

    .exit-popup-title {
        font-size: var(--text-xl);
    }

    .exit-popup--soft .exit-popup-title {
        font-size: var(--text-2xl);
    }
}

/* ======================================== */
/* css/styles.css */
/* ======================================== */
/* Page header for inner pages */
.page-header {
    position: relative;
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-lg);
    background-color: var(--bg-soft);
    background-image: url('../imgs/hero/hero-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text);
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-header {
        background-image: url('../imgs/hero/hero-desktop.webp');
    }
}

.page-header .hero-bg {
    display: none;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.page-header-desc {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .page-header {
        padding-top: calc(var(--nav-height) + var(--space-xl));
        padding-bottom: var(--space-xl);
    }
    .page-header-title {
        font-size: var(--text-4xl);
    }
}

/* Section headers */
.section-header {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-3xl);
    }
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--bg);
    color: var(--text);
    font-size: var(--text-base);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

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

/* Process steps */
.step {
    position: relative;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--text-white);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.step-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

