@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
    /* Fonts */
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Shared Brand Colors */
    --gold-primary: #DCA22D;     /* Brushed Rich Gold */
    --gold-secondary: #F3C66F;   /* Soft Warm Gold */
    --gold-hover: #C58F21;       /* Darker Gold for hover state */
    --gold-rgb: 220, 162, 45;
    
    --navy-deep: #030712;        /* Premium Slate/Midnight */
    --navy-medium: #0b0f19;      /* Card/Background Navy */
    --navy-light: #1e293b;       /* Accent Navy */
    
    --success: #10B981;
    --error: #EF4444;

    /* Bounds and Border Radius */
    --max-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Animation Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* --- LIGHT MODE VARIABLE TOKENS --- */
    --bg-primary: #F8FAFC;       /* Off-white */
    --bg-secondary: #FFFFFF;     /* Pure white */
    --bg-tertiary: #F1F5F9;      /* Slate-100 */
    --bg-glass: rgba(248, 250, 252, 0.85);
    --bg-glass-card: rgba(255, 255, 255, 0.7);
    
    --text-primary: #0F172A;      /* Dark slate-900 */
    --text-secondary: #475569;    /* Muted slate-600 */
    --text-muted: #64748B;
    
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(220, 162, 45, 0.12);
    
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.08);
    
    --hero-gradient: linear-gradient(135deg, #0A1424 0%, #15293E 50%, #2A425B 100%);
    --overlay-color: rgba(255, 255, 255, 0.03);
}

/* --- DARK MODE VARIABLE TOKENS --- */
body.dark-mode {
    --bg-primary: #030712;       /* Slate-950 */
    --bg-secondary: #0B0F19;     /* Slate-900/Navy shade */
    --bg-tertiary: #111827;      /* Slate-900 */
    --bg-glass: rgba(3, 7, 18, 0.85);
    --bg-glass-card: rgba(11, 15, 25, 0.65);
    
    --text-primary: #F8FAFC;      /* Slate-50 */
    --text-secondary: #94A3B8;    /* Slate-400 */
    --text-muted: #64748B;
    
    --border-color: rgba(248, 250, 252, 0.08);
    --border-glow: rgba(220, 162, 45, 0.22);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.8);
    
    --hero-gradient: linear-gradient(135deg, #02040A 0%, #060A13 60%, #100C06 100%);
    --overlay-color: rgba(0, 0, 0, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

section {
    padding: 7.5rem 0;
    position: relative;
}

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

/* Text Gradient Highlight */
.text-gold {
    color: var(--gold-primary);
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-glass);
    border-bottom-color: rgba(220, 162, 45, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 4.25rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.75rem;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 2.25rem;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.theme-toggle:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background-color: var(--bg-tertiary);
}

.theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.theme-toggle .sun-icon { display: block; }
.theme-toggle .moon-icon { display: none; }

body.dark-mode .theme-toggle .sun-icon { display: none; }
body.dark-mode .theme-toggle .moon-icon { display: block; }

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #C58F21 100%);
    color: #030712;
    box-shadow: 0 4px 14px rgba(var(--gold-rgb), 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.35);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
    background-color: rgba(220, 162, 45, 0.05);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: #030712;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION & DECORATIVE ORBS
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 10.5rem;
    padding-bottom: 8.5rem;
    background: var(--hero-gradient);
    color: #FFFFFF;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 25%, rgba(220, 162, 45, 0.16) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: rgba(220, 162, 45, 0.12);
    border: 1px solid rgba(220, 162, 45, 0.35);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-secondary);
    margin-bottom: 1.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.75rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 2.75rem;
    max-width: 92%;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.25rem;
}

.hero-ctas .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.hero-ctas .btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background-color: rgba(220, 162, 45, 0.1);
}

.licensing-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
}

.licensing-strip strong {
    color: var(--gold-secondary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 400px;
    aspect-ratio: 4 / 5;
    background: #030712;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.04);
}

/* Glassmorphic floating card in Hero */
.trust-badge-card {
    position: absolute;
    bottom: -1.75rem;
    left: -2.25rem;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.35rem 1.6rem;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    max-width: 290px;
}

.trust-badge-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(220, 162, 45, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.trust-badge-text h4 {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 600;
}

.trust-badge-text p {
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.6);
    margin-top: 0.15rem;
}

/* Background animated decorative circles */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
    animation: pulse-orbs 8s infinite alternate ease-in-out;
}

.orb-1 {
    width: 320px;
    height: 320px;
    background: rgba(220, 162, 45, 0.15);
    top: -60px;
    right: -40px;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: rgba(30, 41, 59, 0.45);
    bottom: -120px;
    left: -120px;
    animation-delay: 2s;
}

@keyframes pulse-orbs {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

/* ==========================================================================
   INTERACTIVE ONBOARDING QUIZ SECTION (NEW)
   ========================================================================== */
.onboarding-quiz-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 5rem 0;
}

.quiz-intro {
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.quiz-card {
    background-color: var(--bg-glass-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.quiz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: var(--transition-smooth);
}

.quiz-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-secondary);
}

.quiz-card:hover::before {
    background: var(--gold-primary);
}

.quiz-card-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(220, 162, 45, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.quiz-card:hover .quiz-card-icon {
    background: var(--gold-primary);
    color: #030712;
}

.quiz-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quiz-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quiz-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: auto;
}

.quiz-card-arrow svg {
    transition: var(--transition-smooth);
}

.quiz-card:hover .quiz-card-arrow svg {
    transform: translateX(4px);
}

/* Highlight target section indicator style */
@keyframes section-highlight-glow {
    0% { box-shadow: 0 0 0 0 rgba(220, 162, 45, 0.4); }
    100% { box-shadow: 0 0 0 16px rgba(220, 162, 45, 0); }
}
.highlight-glowing-effect {
    animation: section-highlight-glow 1.5s 2 ease-out-in;
    border-color: var(--gold-primary) !important;
}

/* ==========================================================================
   ABOUT & TRUST SECTION
   ========================================================================== */
.about {
    background-color: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-bio {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.stat-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.services {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--bg-glass-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.75rem 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-secondary);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(220, 162, 45, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    color: #030712;
}

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

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-primary);
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
}

.service-link svg {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   EFA SPOTLIGHT SECTION (REPLACEMENT - NO CALCULATOR, OPTION A CONCEPTUAL)
   ========================================================================== */
.efa-spotlight {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.efa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.efa-content {
    max-width: 580px;
}

.efa-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    margin-top: 1.5rem;
}

.efa-benefits-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.efa-benefits-list li svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Step-based conceptual visual container (Right Column) */
.efa-concept-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold-primary);
}

.efa-concept-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.efa-concept-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.efa-process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.efa-process-flow::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    width: 2px;
    height: calc(100% - 2.5rem);
    background-color: var(--border-color);
}

.efa-process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.efa-step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.efa-process-step:hover .efa-step-number {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #030712;
    transform: scale(1.08);
}

.efa-step-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.efa-step-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   CARRIER MARQUEE SECTION (NEW)
   ========================================================================== */
.carrier-showcase-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.carrier-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carrier-intro {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    text-align: center;
}

.carrier-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.carrier-badge {
    background-color: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 0.65rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.carrier-badge:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   MY JOURNEY TIMELINE (NEW - RESTORED & DYNAMIC ON IMMIGRANT PAGE)
   ========================================================================== */
.journey-section {
    background-color: var(--bg-primary);
}

.journey-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.journey-visual {
    position: relative;
}

.journey-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.journey-badge-floating {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #D4901C 100%);
    color: #030712;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.journey-badge-floating span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-top: 0.15rem;
}

.journey-content {
    max-width: 600px;
}

.journey-quote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold-primary);
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.5;
}

.journey-narrative p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.journey-narrative p:last-child {
    margin-bottom: 0;
}

/* Interactive Timeline Styles */
.interactive-timeline-container {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-card {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    gap: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.timeline-card:hover, .timeline-card.active {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.timeline-marker {
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.timeline-card:hover .timeline-marker, .timeline-card.active .timeline-marker {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #030712;
}

.timeline-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   BUSINESS OPPORTUNITY SECTION (THE TEAM TRACK)
   ========================================================================== */
.biz-op {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.biz-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5.5rem;
    align-items: center;
}

.biz-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.25rem 0;
}

.biz-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.biz-feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(220, 162, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.biz-feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.biz-feature-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.biz-cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Career Timeline Visual Panel */
.career-card-container {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-lg);
}

.career-card-title {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.career-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
}

.career-steps::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    left: 0.65rem;
    width: 2px;
    height: calc(100% - 1.5rem);
    background-color: var(--border-color);
}

.career-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.career-step-circle {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: var(--transition-smooth);
}

.career-step.active .career-step-circle {
    border-color: var(--gold-primary);
    background-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.3);
}

.career-step-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.career-step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   LEAD CAPTURE FORM
   ========================================================================== */
.lead-capture-section {
    background-color: var(--bg-primary);
}

.lead-form-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
}

.lead-form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 1.5rem;
    text-align: center;
}

/* ==========================================================================
   BOOK A CALL / CAL.COM PANEL
   ========================================================================== */
.booking-section {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.booking-header {
    margin-bottom: 2.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-channel-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-channel-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-channel-item:hover .contact-channel-icon {
    border-color: var(--gold-primary);
    background-color: var(--gold-primary);
    color: #030712;
}

.contact-channel-info span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-channel-info a, .contact-channel-info p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-channel-info a:hover {
    color: var(--gold-primary);
}

/* Cal.com embed design */
.cal-embed-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cal-embed-header {
    background-color: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cal-embed-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success);
}

.cal-embed-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.cal-embed-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success);
    animation: pulse-ring 1.5s infinite ease-in-out;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.cal-iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 5.5rem 0 3.5rem 0;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4.5rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-img {
    height: 3rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-contact-info {
    line-height: 1.7;
}

.footer-contact-info a {
    font-weight: 500;
}

.footer-contact-info a:hover {
    color: var(--gold-primary);
}

.footer-compliance {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-compliance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 5.5rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid, .about-grid, .efa-grid, .journey-grid, .biz-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-visual, .about-visual, .journey-visual {
        order: -1;
    }
    
    .hero-visual {
        margin-top: 1.5rem;
    }
    
    .trust-badge-card {
        left: -1rem;
    }
    
    .quiz-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-top > div:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 5rem);
        background-color: var(--bg-secondary);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .header-cta-btn {
        display: none;
    }
    
    .quiz-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-top > div:last-child {
        grid-column: span 1;
    }
    
    .footer-compliance-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .trust-badge-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .journey-badge-floating {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
        display: inline-flex;
    }
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
