/* index.css */

:root {
    /* HB Assur Premium Color Palette */
    --primary: #112B41;
    /* Midnight Petrol Blue */
    --primary-light: #1A4060;
    --primary-dark: #0A1926;

    --secondary: #00BA7A;
    /* Vibrant Lime/Emerald Green */
    --secondary-hover: #009964;
    --secondary-light: #E5F8F2;

    --accent: #F5A623;
    /* Gold/Amber for highlights */

    --text-main: #2D3748;
    --text-muted: #718096;
    --text-light: #F7FAFC;

    --bg-main: #DFE5EB;
    --bg-white: #EDF1F5;
    --bg-dark: #112B41;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #112B41 0%, #1E4F75 100%);
    --grad-secondary: linear-gradient(135deg, #00BA7A 0%, #009964 100%);
    --grad-dark: linear-gradient(135deg, #0A1926 0%, #112B41 100%);
    --grad-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.70);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 4px 20px 0 rgba(17, 43, 65, 0.05);

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Base & Reset
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-xl {
    font-size: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.5rem;
}

.mt-6 {
    margin-top: 2rem;
}

.mt-8 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.uppercase {
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
}

/* =========================================
   Utility Classes & Colors
   ========================================= */
.primary {
    color: var(--primary);
}

.emerald {
    color: var(--secondary);
}

.accent {
    color: var(--accent);
}

.text-white,
.text-light,
.text-light-muted {
    color: var(--text-light);
}

.text-light-muted {
    opacity: 0.8;
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-light {
    background-color: var(--bg-main);
}

.bg-dark,
.bg-gradient-dark {
    background: var(--grad-dark);
    color: white;
}

.bg-emerald-light {
    background-color: var(--secondary-light);
}

.bg-primary-light {
    background-color: rgba(17, 43, 65, 0.1);
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(17, 43, 65, 0.12);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    transition: transform 0.3s;
}

.btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 43, 65, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(17, 43, 65, 0.35);
    transform: translateY(-2px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 186, 122, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    box-shadow: 0 8px 25px rgba(0, 186, 122, 0.35);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--bg-main);
    transform: translateY(-2px);
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-lift-sm {
    transition: transform var(--transition-fast);
}

.hover-lift-sm:hover {
    transform: translateY(-2px);
}

/* =========================================
   Animations
   ========================================= */
/* Setup Initial States */
.reveal-on-scroll,
.fade-up,
.animate-pop-in,
.animate-slide-in {
    opacity: 0;
}

.reveal-on-scroll,
.fade-up {
    transform: translateY(30px);
}

.animate-pop-in {
    transform: scale(0.95);
}

.animate-slide-in {
    transform: translateX(30px);
}

/* Visible States */
.visible.reveal-on-scroll,
.visible.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible.animate-pop-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible.animate-slide-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.25s;
}

.stagger-3 {
    transition-delay: 0.4s;
}

.stagger-4 {
    transition-delay: 0.55s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a.nav-link:hover {
    color: var(--primary);
}

.nav-links a.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(17, 43, 65, 0.1);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-main);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

/* Background Abstract Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    border-radius: 50%;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(0, 186, 122, 0.15);
}

.shape-2 {
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: rgba(17, 43, 65, 0.08);
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: rgba(245, 166, 35, 0.1);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(17, 43, 65, 0.06);
    border: 1px solid rgba(17, 43, 65, 0.05);
}

.badge-accent {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

/* Trust Avatars */
.trust-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    z-index: 1;
}

/* Visuals */
.hero-visual {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    min-width: max-content;
}

.floating-card.bottom-left {
    bottom: 3rem;
    left: -3rem;
}

.floating-card:not(.bottom-left) {
    top: 4rem;
    right: -2rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* =========================================
   Partners
   ========================================= */
.partners {
    padding: 3rem 0 0 0;
}

.partner-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.partner-track:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    color: var(--primary);
    transform: scale(1.15) translateY(-3px);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Stats Section
   ========================================= */
.stats {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem !important;
    text-align: center;
    background: var(--bg-white);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    display: inline-block;
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover .stat-num {
    color: var(--secondary);
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 186, 122, 0.3);
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* =========================================
   Section Headers (Shared)
   ========================================= */
.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Pourquoi Nous Choisir (Features)
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    border-color: rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

/* =========================================
   Expertises
   ========================================= */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.expertise-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 43, 65, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.expertise-card:hover .overlay {
    opacity: 1;
}

.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-icon-container {
    position: absolute;
    top: -24px;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.check-list {
    list-style: none;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.check-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-list li i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

/* =========================================
   Notre Méthode (Timeline)
   ========================================= */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: rgba(17, 43, 65, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    z-index: 2;
    transition: var(--transition-normal);
}

.active-dot {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(17, 43, 65, 0.1);
}

.timeline-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.border-emerald {
    border-left: 4px solid var(--secondary);
}

/* =========================================
   Simulator
   ========================================= */
.simulator-section {
    position: relative;
    overflow: hidden;
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding: 4rem !important;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.value-display {
    color: var(--secondary);
    font-size: 1.1rem;
}

.styled-range {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.styled-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--bg-white);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s;
}

.styled-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.simulator-result-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-circle {
    width: 100%;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.result-val {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin: 1rem 0;
    text-shadow: 0 4px 10px rgba(0, 186, 122, 0.3);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(17, 43, 65, 0.05);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.client-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.client-info div {
    display: flex;
    flex-direction: column;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   FAQ
   ========================================= */
.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.faq-text-side {
    padding-top: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem !important;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.answer-inner {
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--secondary);
}

.fa-chevron-down {
    transition: transform 0.3s;
}

/* =========================================
   Contact Form & Forms global
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem !important;
    border-radius: var(--radius-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.form-header h3 {
    margin-bottom: 0.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: #F8FAFC;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 186, 122, 0.1);
}

input[type="date"] {
    color: var(--text-muted);
}

input[type="date"]:valid {
    color: var(--text-main);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.rgpd-checkbox {
    margin-bottom: 2rem;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    min-width: 20px;
    height: 20px;
    background-color: #F8FAFC;
    border: 1px solid #CBD5E0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    margin-top: 2px;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #EDF2F7;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.checkmark:after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    padding-bottom: 2px;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.btn-submit {
    width: 100%;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
}

.form-status {
    display: none;
    margin-top: 1.5rem;
}

.success-box {
    background: var(--secondary-light);
    color: var(--secondary-hover);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

/* =========================================
   Global Modal Overlay
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 38, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 500px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(17, 43, 65, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.modal-content {
    padding: 3rem 2.5rem;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* =========================================
   Footer
   ========================================= */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: white;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.socials a:hover {
    background: var(--secondary);
}

.footer-links h4,
.footer-trust h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.trust-badge-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-badge-footer p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   Scroll Top Button
   ========================================= */
#scrollTop {
    position: fixed;
    bottom: 2.25rem;
    right: 6.5rem; /* Repositioned to the left of the chatbot launcher */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--primary);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {

    .hero-grid,
    .simulator-wrapper,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid,
    .expertise-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        padding: 0 2rem;
    }

    .timeline::before {
        left: 24px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem !important;
    }

    .features-grid,
    .expertise-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--glass-shadow);
        display: none;
        align-items: flex-start;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .timeline-item {
        padding-left: 4.5rem;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .simulator-wrapper {
        padding: 2.5rem !important;
    }

    .floating-card {
        position: relative;
        inset: auto;
        margin-top: 1rem;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    #scrollTop {
        right: 1.25rem;
        bottom: 10rem; /* Move up on mobile to avoid social toast/chat launcher */
        width: 45px;
        height: 45px;
    }
}


/* Custom Date Inputs */
input[type="date"].custom-date {
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

input[type="date"].custom-date::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 1.2rem;
    width: 20px;
    height: 20px;
    z-index: 10;
}

.date-wrapper {
    position: relative;
}

.date-wrapper::after {
    content: "\f073";
    /* FontAwesome Calendar */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    pointer-events: none;
    z-index: 5;
    background: white;
    font-size: 1.1rem;
    padding-left: 5px;
    /* Cover default ugly arrow behind it */
}

/* Dark Mode Styles Removed */

/* =========================================
   CONVERSION FEATURES (Chatbot, Toast, Sticky CTA)
   ========================================= *//* HB Expert Chatbot - Premium Overhaul (Dezoomed) */
.hb-chat-launcher {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    height: 60px;
    background: var(--grad-secondary); /* Switch to vibrant emerald */
    color: white;
    border-radius: 40px; /* Pillow shape for label accessibility */
    display: flex;
    align-items: center;
    padding: 0 5px 0 20px;
    gap: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(17, 43, 65, 0.4);
    z-index: 2000000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255,255,255,0.2);
    animation: hbPulse 2.5s infinite;
}

.hb-launcher-label {
    color: white !important;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.hb-chat-launcher i {
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@keyframes hbPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 186, 122, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 186, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 186, 122, 0); }
}

.hb-chat-launcher:hover {
    transform: scale(1.05);
    background: var(--secondary-hover);
}


.hb-chat-window {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 380px; /* Wider for better readability */
    height: 550px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    z-index: 2000000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(40px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hb-chat-window.active { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto !important; }

/* New: Message Timestamps */
.msg-time {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 4px;
    text-align: right;
    display: block;
}

.msg-user .msg-time {
    color: rgba(255, 255, 255, 0.8);
}


.hb-chat-header {
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary), #004e61);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

/* Redesigning Close Button */
.close-chat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.hb-chat-header .expert-info { display: flex; align-items: center; gap: 12px; }
.hb-chat-header .expert-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
}

.hb-chat-header .expert-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.hb-chat-header h4 { 
    font-size: 1.05rem; 
    margin: 0; 
    font-weight: 600; 
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif; /* Cleaner for UI */
}

.hb-chat-header p { font-size: 0.75rem; margin: 0; opacity: 0.9; }

.hb-chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f8fafc; /* Light gray background for contrast */
}

/* Fluid Messaging Style */
.chat-msg {
    max-width: 85%;
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    font-size: 0.88rem;
    line-height: 1.55;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(15px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.msg-bot {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: var(--text-main);
}

.msg-bot::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 20px;
    height: 20px;
    background: white;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: -1;
}

.msg-user {
    background: linear-gradient(135deg, var(--primary), #1e4f75);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 5px 15px rgba(17, 43, 65, 0.15);
}

.msg-user::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #1e4f75;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: -1;
}

.hb-chat-footer {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.hb-chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border-radius: 24px;
    padding: 6px 6px 6px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.hb-chat-input-wrapper:focus-within {
    background: white;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 186, 122, 0.1);
}

.hb-chat-input-wrapper input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.9rem;
    outline: none;
    padding: 6px 0;
}

.send-btn {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(17, 43, 65, 0.2);
}

.quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.quick-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 186, 122, 0.2);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.8rem 1rem !important;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    animation: hbTyping 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes hbTyping {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); background: var(--secondary); }
}

/* Message Content formatting */
.msg-content b, .msg-content strong {
    color: var(--primary);
    font-weight: 700;
}

.msg-user .msg-content b, .msg-user .msg-content strong {
    color: white;
    text-decoration: underline rgba(255,255,255,0.3);
}


@media (max-width: 768px) {
    .hb-chat-window {
        width: calc(100vw - 2rem);
        height: 70vh;
        right: 1rem;
        bottom: 5.5rem;
        border-radius: 20px;
    }
    .hb-chat-launcher {
        right: 1rem;
        bottom: 5.5rem;
        width: 60px; /* Switch back to circle on mobile */
        padding: 0;
        justify-content: center;
    }
    .hb-launcher-label {
        display: none;
    }
}



/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.social-proof-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-content {
    font-size: 0.9rem;
    line-height: 1.3;
}

.toast-name {
    font-weight: 600;
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: var(--bg-white);
    border-top: 1px solid var(--glass-border);
    z-index: 998;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-mobile.show {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }


    .social-proof-toast {
        bottom: 5.5rem;
        left: 1rem;
        right: 1rem;
    }
}

/* Multi-Step Form */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-progress {
    width: 100%;
    height: 6px;
    background: var(--glass-border);
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--secondary);
    transition: width 0.4s ease;
}

.step-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: background 0.3s;
}

.step-dot.active {
    background: var(--secondary);
}