/* ==========================================================================
   ALPHA ASSET MANAGEMENT LTD — CLIENT INTAKE FORM
   Built by ForGOD Intelligence Technologies (FIT)
   Visual Tone: Confident Financial Trust (Deep Navy + Rich Gold Accents)
   ========================================================================== */

:root {
    /* Brand Navy Palette */
    --navy-darkest: #040814;
    --navy-dark: #070D1E;
    --navy-card: #0D162B;
    --navy-card-border: rgba(212, 175, 55, 0.2);
    --navy-input: #121E38;
    --navy-hover: #182748;

    /* Financial Gold Accents */
    --gold-primary: #D4AF37;
    --gold-light: #F3C649;
    --gold-dark: #AA8722;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --gold-gradient: linear-gradient(135deg, #F3C649 0%, #D4AF37 50%, #997A15 100%);

    /* UI Neutrals & Functional */
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --bg-page: #040814;
    --success-green: #10B981;
    --whatsapp-green: #25D366;
    
    /* Fonts & Radii */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-white);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text & Accent Utilities */
.text-gold { color: var(--gold-primary); }
.text-green { color: var(--whatsapp-green); }
.text-sm { font-size: 0.88rem; }
.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   HEADER
========================================== */
.site-header {
    background: rgba(7, 13, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fit-badge {
    background: var(--gold-gradient);
    color: var(--navy-darkest);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

.agency-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-white);
}

.agency-title span {
    color: var(--gold-primary);
}

.header-tag {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-tag i {
    color: var(--gold-primary);
}

@media (min-width: 768px) {
    .header-tag { display: flex; }
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
    position: relative;
    padding: 60px 0 40px;
    background: radial-gradient(circle at 50% 0%, #152244 0%, var(--navy-darkest) 70%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.12);
    top: -100px;
    left: 20%;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.15);
    bottom: -50px;
    right: 15%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-light);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lead strong {
    color: var(--text-white);
}

.hero-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.hero-pill i {
    color: var(--gold-primary);
}

/* ==========================================
   NOTICE STRIP
========================================== */
.notice-strip {
    background: rgba(13, 22, 43, 0.9);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 14px 0;
}

.notice-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.notice-icon {
    width: 38px;
    height: 38px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.notice-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.notice-text strong {
    color: var(--gold-light);
}

/* ==========================================
   MAIN LAYOUT & SIDEBAR
========================================== */
.main-content {
    padding: 40px 0 80px;
    flex-grow: 1;
}

.form-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .form-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .progress-sidebar {
        width: 300px;
        flex-shrink: 0;
        position: sticky;
        top: 85px;
    }

    .form-card-wrapper {
        flex-grow: 1;
        min-width: 0;
    }
}

/* Sidebar styling */
.sidebar-box {
    background: var(--navy-card);
    border: 1px solid var(--navy-card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sidebar-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.sidebar-percentage {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
}

.nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-weight: 700;
}

.nav-item.completed .step-num {
    background: var(--success-green);
    color: var(--navy-darkest);
}

.step-num {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.nav-item.active .step-num {
    background: var(--gold-primary);
    color: var(--navy-darkest);
}

.step-title {
    flex-grow: 1;
}

.step-arrow {
    font-size: 0.75rem;
    opacity: 0.5;
}

.sidebar-whatsapp-card {
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.whatsapp-icon {
    font-size: 1.8rem;
    color: var(--whatsapp-green);
    margin-bottom: 8px;
}

.wa-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-white);
}

.wa-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-wa-sidebar {
    display: inline-block;
    width: 100%;
    padding: 8px 14px;
    background: var(--whatsapp-green);
    color: var(--navy-darkest);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.btn-wa-sidebar:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Mobile Progress Bar */
.mobile-progress-bar {
    display: block;
    background: var(--navy-card);
    border: 1px solid var(--navy-card-border);
    padding: 16px;
    border-radius: var(--radius-md);
}

@media (min-width: 992px) {
    .mobile-progress-bar { display: none; }
}

.mobile-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}

/* ==========================================
   FORM CONTAINER & STEPS
========================================== */
.form-card-wrapper {
    background: var(--navy-card);
    border: 1px solid var(--navy-card-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

@media (min-width: 768px) {
    .form-card-wrapper {
        padding: 45px 40px;
    }
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Step Header */
.step-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-pill {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.step-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Form Layout Grid & Controls */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .full-width {
        grid-column: 1 / -1;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.req { color: var(--gold-primary); }
.opt { font-size: 0.78rem; font-weight: 400; color: var(--text-dim); }

.field-hint {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    background: var(--navy-input);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.93rem;
    transition: var(--transition-fast);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    background: var(--navy-hover);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

select option {
    background: var(--navy-darkest);
    color: var(--text-white);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* Custom Social Inputs */
.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 576px) {
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.social-input {
    position: relative;
    display: flex;
    align-items: center;
}

.social-input i {
    position: absolute;
    left: 14px;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.social-input input {
    padding-left: 42px;
}

/* Custom Tap Cards & Radio Chips */
.radio-cards, .target-chips, .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-chip, .chip-item, .feature-chip {
    cursor: pointer;
    position: relative;
}

.radio-chip input, .chip-item input, .feature-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chip-content, .chip-item span, .feature-chip span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-input);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    user-select: none;
}

.chip-content i, .chip-item i, .feature-chip i {
    color: var(--gold-primary);
}

.radio-chip input:checked + .chip-content,
.chip-item input:checked + span,
.feature-chip input:checked + span {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

/* Callout Box Styling */
.callout-box {
    background: rgba(13, 22, 43, 0.8);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    border-left: 4px solid var(--gold-primary);
    margin-bottom: 10px;
}

.callout-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.gold-border-box {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--gold-primary);
}

/* Service Checklist Tiles */
.services-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 576px) {
    .services-checklist {
        grid-template-columns: 1fr 1fr;
    }
}

.service-checkbox {
    cursor: pointer;
    position: relative;
}

.service-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-tile {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--navy-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.service-tile i {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.tile-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
}

.tile-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.service-checkbox input:checked + .service-tile {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.service-checkbox input:checked + .service-tile .tile-title {
    color: var(--gold-light);
}

/* Compact Service Repeatable Item */
.service-compact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-service-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
    .compact-service-item {
        flex-direction: row;
        align-items: center;
    }
    .compact-tag {
        min-width: 170px;
    }
}

.compact-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Testimonial Options Cards */
.testimonial-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-option-card {
    cursor: pointer;
    position: relative;
}

.testimonial-option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.opt-content {
    background: var(--navy-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.opt-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opt-title i {
    color: var(--gold-primary);
}

.opt-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-option-card input:checked + .opt-content {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.15);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.stat-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-light);
    display: block;
    margin-bottom: 6px;
}

/* Team Member Repeatable Card */
.team-repeatable-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: var(--radius-sm);
}

.tm-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 576px) {
    .tm-row {
        grid-template-columns: 1fr 1fr;
    }
}

.mt-2 { margin-top: 8px; }

/* Upgrade Card */
.upgrade-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(13, 22, 43, 0.9) 100%);
    border: 1px dashed var(--gold-primary);
}

.upgrade-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
}

.upgrade-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold-primary);
    margin-top: 3px;
}

.upgrade-title {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.upgrade-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Timeline Cards */
.timeline-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

.timeline-card {
    cursor: pointer;
    position: relative;
}

.timeline-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tl-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--navy-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.tl-days {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2px;
}

.tl-label {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.timeline-card input:checked + .tl-content {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.timeline-card input:checked + .tl-content .tl-days {
    color: var(--gold-light);
}

/* Contact Person Grid */
.contact-person-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

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

/* Bespoke Note Box */
.bespoke-note-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--gold-primary);
}

.bespoke-title {
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.bespoke-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Step Action Buttons */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary, .btn-secondary, .btn-submit-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--navy-darkest);
    margin-left: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit-gold {
    background: var(--gold-gradient);
    color: var(--navy-darkest);
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 32px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@media (min-width: 576px) {
    .btn-submit-gold {
        width: auto;
        margin-left: auto;
    }
}

.btn-submit-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

/* ==========================================
   PROCESS SECTION (WHAT HAPPENS NEXT)
========================================== */
.process-section {
    background: var(--navy-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-header {
    text-align: center;
    margin-bottom: 45px;
}

.process-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

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

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.process-card {
    position: relative;
    background: var(--navy-card);
    border: 1px solid var(--navy-card-border);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-fast);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.step-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold-primary);
    color: var(--navy-darkest);
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.process-icon {
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 16px;
    margin-top: 8px;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.process-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
    background: var(--navy-darkest);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.fit-footer-badge {
    background: var(--gold-primary);
    color: var(--navy-darkest);
    font-weight: 900;
    font-size: 0.85rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-copy strong {
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp-green);
    color: var(--navy-darkest);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-footer-wa:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.footer-email {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-email:hover {
    color: var(--gold-light);
}

/* ==========================================
   MODAL DIALOG
========================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 20, 0.88);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.modal-card {
    background: var(--navy-card);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.success-icon-wrap {
    font-size: 3.5rem;
    color: var(--success-green);
    margin-bottom: 16px;
}

.modal-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.modal-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 22px;
}

.modal-reminder-box {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-bottom: 24px;
    font-size: 0.88rem;
}

.modal-reminder-box i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.btn-modal-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--whatsapp-green);
    color: var(--navy-darkest);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-modal-wa:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Inline WhatsApp Button inside Notice Strip */
.btn-wa-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--whatsapp-green);
    color: var(--navy-darkest) !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 4px;
    margin-left: 4px;
    text-decoration: none;
    transition: var(--transition-fast);
    vertical-align: middle;
}

.btn-wa-inline:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.flex-wa-align {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

/* Animation for dynamic visibility toggles */
#domain-suggestions-group, #email-setup-group {
    transition: all 0.35s ease-in-out;
}

