/* FlameSpace - Professional Email Service - Premium Layout */

/* ===== COLOR SYSTEM ===== */
:root {
    --primary: #2563EB;
    --accent: #7C3AED;
    --flame-orange: #2563EB;
    --deep-red: #1D4ED8;
    --golden-yellow: #7C3AED;
    --charcoal: #212529;
    --dark-grey: #495057;
    --medium-grey: #6C757D;
    --light-grey: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-flame: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, var(--charcoal) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-flame: 0 8px 30px rgba(37, 99, 235, 0.25);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section { padding: var(--space-xl) 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: var(--space-sm);
    color: var(--dark-grey);
    line-height: 1.7;
}

/* ===== NAVIGATION ===== */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-flame { color: var(--flame-orange); }
.logo-space { color: var(--charcoal); }

nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-grey);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-flame);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--flame-orange);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-flame) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-flame);
}

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

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-gradient-text {
    background: var(--gradient-flame);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p,
.hero-subtext {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-cta,
.btn-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-flame);
    color: var(--white);
    box-shadow: var(--shadow-flame);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--flame-orange);
}

.btn-outline {
    background: transparent;
    color: var(--flame-orange);
    border: 2px solid var(--flame-orange);
}

.btn-outline:hover {
    background: var(--flame-orange);
    color: var(--white);
}

/* ===== IMPACT STATEMENT ===== */
.impact,
.impact-statement {
    background: var(--white);
    padding: var(--space-xl) 0;
}

.impact .impact-content,
.impact-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.impact h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.impact .impact-description {
    font-size: 1.25rem;
    color: var(--medium-grey);
    line-height: 1.8;
}

.impact-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.impact-description {
    font-size: 1.25rem;
    color: var(--medium-grey);
    line-height: 1.8;
}

/* ===== KEY STRENGTHS ===== */
.key-strengths {
    background: var(--light-grey);
    padding: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.strengths-grid,
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.card,
.strength-card {
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.strength-card::before,
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-flame);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover,
.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--flame-orange);
}

.card:hover::before,
.strength-card:hover::before {
    transform: scaleX(1);
}

.card h3,
.strength-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.card p,
.strength-card p {
    color: var(--medium-grey);
    line-height: 1.7;
}

/* ===== WHO USES ===== */
.who-uses {
    background: var(--white);
    padding: var(--space-xl) 0;
}

.user-types,
.users-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.user-type,
.user-card {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.user-type-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.user-card::before,
.user-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-flame);
}

.user-type:hover,
.user-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.user-type h3,
.user-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

/* ===== CONVERSION BAND ===== */
.conversion-band {
    background: var(--gradient-flame);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.conversion-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.conversion-band-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.conversion-band h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.conversion-band .btn {
    margin-top: var(--space-sm);
    background: var(--white);
    color: var(--flame-orange);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.conversion-band .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--flame-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-inner .logo {
    flex-shrink: 0;
}

.footer-inner > p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.story-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.story-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: var(--space-md);
}

.vision-section {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--space-xl) 0;
    text-align: center;
}

.vision-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.vision-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.vision-text:last-child {
    margin-top: var(--space-md);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.service-block {
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-flame);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-block:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-block:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.service-block h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.service-block p {
    color: var(--medium-grey);
    line-height: 1.7;
}

/* ===== FORMS ===== */
.form-container {
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--flame-orange);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-grey);
    opacity: 0.8;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid #e2e8f0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* ===== STEPPER ===== */
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid #e2e8f0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step.completed:not(:last-child)::after {
    background: var(--gradient-flame);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--medium-grey);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--gradient-flame);
    color: var(--white);
    box-shadow: var(--shadow-flame);
}

.step.completed .step-number {
    background: var(--flame-orange);
    color: var(--white);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--medium-grey);
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--charcoal);
}

/* ===== PRICING ===== */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.toggle-label {
    font-weight: 600;
    color: var(--medium-grey);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--flame-orange);
}

.switch {
    width: 56px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.switch:hover {
    background: #cbd5e1;
}

.switch.active {
    background: var(--gradient-flame);
}

.switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.switch.active .switch-slider {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-tier {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    border-color: var(--flame-orange);
    box-shadow: var(--shadow-md);
}

.pricing-tier.featured {
    border-color: var(--flame-orange);
    box-shadow: var(--shadow-flame);
    position: relative;
    transform: scale(1.02);
}

.pricing-tier.featured:hover {
    box-shadow: 0 12px 45px rgba(37, 99, 235, 0.3);
}

.tier-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--flame-orange);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

.pricing-tier.featured .tier-badge {
    background: var(--gradient-flame);
    color: var(--white);
}

.tier-name {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.tier-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
}

.tier-period {
    font-size: 1rem;
    color: var(--medium-grey);
    margin-bottom: var(--space-md);
}

.tier-features {
    list-style: none;
    text-align: left;
    flex: 1;
    margin-bottom: var(--space-md);
}

.tier-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: var(--dark-grey);
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--flame-orange);
    font-weight: 700;
}

.pricing-tier .btn-secondary {
    background: transparent;
    color: var(--flame-orange);
    border: 2px solid var(--flame-orange);
}

.pricing-tier .btn-secondary:hover {
    background: var(--flame-orange);
    color: var(--white);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
}

.legal-meta {
    color: var(--medium-grey);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg) !important;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.legal-content ul {
    margin: var(--space-sm) 0 var(--space-md) 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--flame-orange);
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-back {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.legal-content .btn-secondary {
    background: transparent;
    color: var(--flame-orange);
    border: 2px solid var(--flame-orange);
}

.legal-content .btn-secondary:hover {
    background: var(--flame-orange);
    color: var(--white);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle,
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span,
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav ul {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: var(--space-md) 0;
    }
    
    nav ul.active { left: 0; }
    .mobile-toggle,
    .hamburger { display: flex; }
    
    .hero h1 { font-size: 2.25rem; }
    .hero-subtext { font-size: 1rem; }
    .hero-cta,
    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; text-align: center; }
    .btn { width: 100%; }
    
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 1rem; }
    
    .cards-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .user-types {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tier.featured {
        transform: none;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .stepper {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}
