/* =========================================
   DESIGN TOKENS & VARIABLES
   ========================================= */
:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;

    --accent-primary: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --accent-secondary: #8b5cf6;

    --font-main: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.glow-1 {
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--accent-primary), transparent 70%);
    width: 800px;
    height: 800px;
}

.glow-2 {
    top: 20%;
    right: -200px;
    background: radial-gradient(circle, var(--accent-secondary), transparent 70%);
}

.glow-3 {
    bottom: -100px;
    left: 20%;
    background: radial-gradient(circle, var(--accent-primary), transparent 70%);
    opacity: 0.3;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    color: #ef4444;
    /* Vibrant Red */
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    border-radius: 100px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #e4e4e7;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-dark);
}

/* =========================================
   NAVIGATION BAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 6px;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    margin-right: -10px; /* Offset padding to align with container edge */
    width: 44px; /* Standard touch target size */
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
    gap: 6rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.proof-text strong {
    color: var(--text-primary);
}

/* =========================================
   HERO VISUAL (ABSTRACT UI)
   ========================================= */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.dashboard-ui {
    width: 100%;
    max-width: 480px;
    height: 340px;
    display: flex;
    flex-direction: column;
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 12, 0.9) 100%);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.header-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.dots span:nth-child(1) {
    background-color: #ff5f56;
}

.dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.dots span:nth-child(3) {
    background-color: #27c93f;
}

.card-body.with-grid {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    gap: 1.5rem;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 25px 25px;
    background-position: center bottom;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-size: 0.7rem;
    color: var(--text-secondary);
    padding-bottom: 5px;
    font-weight: 500;
}

.chart-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-bar {
    position: relative;
    width: 45px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(59, 130, 246, 0.1) 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.chart-bar:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.bar-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-primary);
    opacity: 0.8;
}

.bar-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bar-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.chart-bar:hover .bar-value {
    opacity: 1;
}

.bar-1 {
    height: 35%;
}

.bar-2 {
    height: 65%;
}

.bar-3 {
    height: 45%;
    background: linear-gradient(180deg, var(--accent-secondary) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.bar-3 .bar-dot {
    box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-secondary);
}

.bar-4 {
    height: 90%;
}

.sub-card {
    position: absolute;
    bottom: 20px;
    left: -50px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 5s ease-in-out infinite reverse;
}

.stat-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.mini-card {
    position: absolute;
    top: 30px;
    right: -30px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: float 4s ease-in-out infinite 1s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.dot.green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 12px #10b981;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   SOCIAL PROOF MARQUEE
   ========================================= */
.social-proof-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.social-proof-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Gradient mask for smooth fade in/out on the edges */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 35s linear infinite;
    gap: 6rem;
    padding-right: 6rem;
    /* Must match the gap for seamless loop */
}

.marquee-track:hover {
    animation-play-state: paused;
    /* Optional: pauses animation when hovered */
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    letter-spacing: -0.5px;
    transition: var(--transition);
    cursor: default;
}

.marquee-item:hover {
    opacity: 1;
    color: var(--text-primary);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   LAYOUT & SECTIONS
   ========================================= */
.section {
    padding: 8rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   WHY US / BENTO GRID
   ========================================= */
.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 1.5rem;
}

.bento-card {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    /* Subtle top light */
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-tall {
    grid-row: span 2;
}

.card-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.bento-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    transition: var(--transition);
}

.bento-card:hover .bento-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 95%;
    position: relative;
    z-index: 2;
}

/* -------------------------------------
   Specific Card Enhancements
   ------------------------------------- */
.card-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Card 1: Platform Mastery Visual */
.feature-visual-container {
    margin-top: auto;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.abstract-ui-box {
    width: 110%;
    /* Slight bleed */
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card-1:hover .abstract-ui-box {
    transform: translateY(0);
}

.ui-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.ui-line {
    height: 8px;
    width: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.ui-bar-row {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.ui-bar {
    height: 100%;
    border-radius: 4px;
}

.ui-bar.blue {
    background: var(--accent-primary);
}

.ui-bar.purple {
    background: var(--accent-secondary);
}

.ui-bar.green {
    background: #10b981;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.w-90 {
    width: 90%;
}

.ui-floating-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #111;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.text-green {
    color: #10b981;
}

/* Card 2: Team Avatars */
.team-avatars {
    display: flex;
    margin-top: auto;
    padding-top: 1rem;
}

.team-avatars img,
.avatar-more {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #141419;
    margin-left: -15px;
}

.team-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--accent-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Card 3: Growth Line */
.growth-line {
    margin-top: auto;
    width: 100%;
    height: 60px;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.feature-card-3:hover .growth-line {
    opacity: 1;
}

.growth-line svg {
    width: 100%;
    height: 100%;
}

/* Card 4: Modern Chart (Wide Card) */
.card-content-left {
    flex: 1;
    max-width: 400px;
}

.card-content-right {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    min-height: 150px;
}

.modern-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    width: 100%;
    justify-content: flex-end;
}

.chart-col {
    width: 24px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.chart-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: height 1s ease, background 0.3s ease;
}

.chart-col:hover .chart-bar {
    background: rgba(255, 255, 255, 0.2);
}

.active-col .chart-bar {
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(59, 130, 246, 0.2) 100%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.chart-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.chart-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.active-col .chart-tooltip,
.chart-col:hover .chart-tooltip {
    opacity: 1;
}

/* =========================================
   PROCESS / SERVICES SECTION
   ========================================= */
.process-section {
    position: relative;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    margin-top: 4rem;
}

/* Connecting Line Behind Cards */
.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.2) 80%, transparent);
    z-index: 0;
}

.process-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 3.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    background: var(--bg-dark);
    padding: 0 15px;
    line-height: 1;
    transition: var(--transition);
}

.process-card:hover .step-number {
    -webkit-text-stroke: 1px var(--accent-primary);
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    color: var(--accent-primary);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-visual {
    margin-top: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.process-card:hover .process-visual {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--text-primary);
    transform: scale(1.05) rotate(5deg);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle inner glow */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #fbbf24;
    /* Gold */
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Pushes client info to the bottom */
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.client-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* =========================================
   ABOUT PAGE HERO
   ========================================= */
.about-hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

/* === IMAGE SIDE === */
.about-image-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

/* The outer glowing ring */
.founder-frame {
    position: relative;
    width: 240px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* The actual photo */
.founder-img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center 10%;
    display: block;
}

/* Subtle bottom fade to blend with background */
.founder-img-fade {
    display: none;
}

/* Floating name badge */
.founder-badge {
    margin-top: 1.5rem;
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 240px;
}

.founder-badge strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-badge span {
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 500;
}

/* Glow orb behind the image */
.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* === TEXT SIDE === */
.about-content {
    position: relative;
    z-index: 2;
}

.about-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.about-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 650px;
}

.about-message p {
    margin-bottom: 1.5rem;
}

.about-message p:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.about-cta {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.about-cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-cta-note span {
    color: #22c55e;
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-hero {
        padding: 8rem 0 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-image-container {
        display: flex;
        justify-content: center;
    }

    .about-content h1 {
        font-size: 2.5rem;
    }

    .about-cta {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .founder-frame {
        width: 200px;
        height: 240px;
    }

    .founder-badge {
        width: 200px;
    }
}

/* =========================================
   FOOTER & FINAL CTA
   ========================================= */
.footer-section {
    padding: 6rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

/* Big CTA Box inside Footer */
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5rem;
    border-radius: 24px;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.8), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.cta-action {
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.cta-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-primary), transparent 70%);
    opacity: 0.15;
    filter: blur(50px);
    z-index: 0;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.25rem;
    max-width: 280px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
        padding-bottom: 6rem;
        min-height: auto;
        gap: 3rem;
    }

    .hero-container {
        align-items: center;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 160px;
    }

    .hero-visual {
        width: 100%;
        margin-top: 3rem;
        height: auto;
    }

    .hero-video-wrapper {
        width: 100%;
        max-width: 500px;
    }

    .sub-card {
        display: none;
        /* Hide complex floating cards on small screens to reduce clutter */
    }


    .section-title {
        font-size: 2.5rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(280px, auto);
    }

    .card-tall {
        grid-row: span 1;
        height: auto;
        min-height: 320px;
    }

    .card-wide {
        grid-column: span 2;
    }

    .feature-visual-container {
        display: none;
    }

    .bento-card {
        padding: 1.5rem;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .stars {
        margin-bottom: 1rem;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .cta-content {
        margin-bottom: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links:not(.active) {
        /* Remove display: none to allow for smooth transitions */
    }

    .nav-cta {
        display: none;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .logo-img {
        height: 24px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 2rem;
        visibility: hidden; /* Hide when not active but keep in DOM for transition */
        padding-top: 5rem; /* Space for the top header area */
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-primary);
    }

    .mobile-socials {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .mobile-socials .social-icons {
        justify-content: center;
        gap: 2rem;
    }
}

/* Hide mobile socials on desktop */
.mobile-socials {
    display: none;
}

@media (max-width: 768px) {
    /* ── HERO: Mobile Full Reset ── */
    .hero {
        padding: 7rem 1.25rem 2.5rem !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        gap: 2rem !important;
        box-sizing: border-box !important;
    }

    .hero-container {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* Badge */
    .hero-badge {
        display: inline-flex !important;
        margin-bottom: 1.5rem !important;
        font-size: 0.82rem !important;
        padding: 0.45rem 1rem !important;
    }

    /* Main headline */
    .hero-title {
        font-size: 2.4rem !important;
        line-height: 1.18 !important;
        letter-spacing: -1px !important;
        margin-bottom: 1.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        font-weight: 800 !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
    }

    /* Subtitle — the crowded text problem */
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.75 !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        color: var(--text-secondary) !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
    }

    /* Buttons stack */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.875rem !important;
        margin-bottom: 2rem !important;
        align-items: center !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
        display: inline-flex !important;
    }

    /* Social proof (rating row) */
    .hero-social-proof {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        width: 100% !important;
    }

    .avatars img {
        width: 32px !important;
        height: 32px !important;
    }

    .proof-text {
        font-size: 0.85rem !important;
        text-align: center !important;
    }

    /* Hero video */
    .hero-visual {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero-video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 14px !important;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-chart {
        justify-content: center;
        margin-top: 1.5rem;
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2rem;
    }

    .process-grid::before {
        display: none;
    }

    .process-card {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
        left: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calendly-inline-widget {
        height: 700px !important;
        /* Slightly taller for mobile to avoid inner scroll */
    }

    .calendar-container {
        padding: 0;
        margin: 0 -1rem;
        /* Negative margin to give more space on tiny screens */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-title {
        font-size: 2.25rem;
    }

    .contact-form-wrap {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 600px !important;
        padding: 0 !important;
        margin: 1.5rem 0 0 !important;
        border-radius: 20px !important;
    }

    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3rem !important;
    }

    .about-content h1 {
        font-size: 2.25rem !important;
        margin-bottom: 1.5rem !important;
    }

    .about-hero, .contact-page {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .about-message {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 0.5rem !important;
    }

    .about-image-container {
        margin-bottom: 1rem !important;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   OUR TEAM SECTION
   ========================================= */
.team-section {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

/* Image wrapper — fixed square crop */
.team-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0d0d12;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

/* Role badge floating on image */
.team-role-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

/* Text info below image */
.team-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.team-info>p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Skill tags */
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-skills span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page {
    padding: 12rem 0 6rem;
    position: relative;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- LEFT: Info Side --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 420px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.04);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* "What happens next?" box */
.expect-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1.75rem;
    margin-top: 0.5rem;
}

.expect-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.expect-box ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
}

.expect-box li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.expect-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 8px;
    padding: 0.25rem 0.6rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* --- RIGHT: Form Card --- */
.contact-form-wrap {
    padding: 0;
    overflow: hidden;
    height: 580px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 440px;
    width: 100%;
    margin-left: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-form-wrap h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background: #0d0d12;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.btn-large svg {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.btn-large:hover svg {
    transform: translateX(4px);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 2.5rem;
    }
}

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

    .contact-form-wrap {
        padding: 2rem 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

/* =========================================
   BOOKING SECTION
   ========================================= */
.booking-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4rem;
}

.calendar-container {
    max-width: 440px;
    margin: 0 auto;
    background: #050505;
    border: none;
    border-radius: 0;
    overflow: hidden;
    height: 580px;
    box-shadow: none;
}

@media (max-width: 768px) {
    .calendar-container {
        border-radius: 12px;
    }
}

/* --- HERO VIDEO COMPONENT --- */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 40px rgba(59, 130, 246, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-video-wrapper:hover {
    transform: scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(4px);
    transition: all 0.5s ease;
    z-index: 10;
}

.play-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: video-pulse 2s infinite;
}

.play-icon svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    /* Offset for visual centering */
}

.video-play-overlay:hover .play-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.unmute-text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- PROGRESS BAR --- */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 15;
}

.video-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.1s linear;
}






/* --- CONTACT VIDEO COMPONENT (Deprecated but kept for reference) --- */
.contact-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 9/16;
    max-height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}

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

.hero-container > * {
    animation: fadeInUp 0.6s ease-out both;
}

.hero-container .hero-badge { animation-delay: 0.1s; }
.hero-container .hero-title { animation-delay: 0.2s; }
.hero-container .hero-subtitle { animation-delay: 0.3s; }
.hero-container .hero-buttons { animation-delay: 0.4s; }
.hero-container .hero-social-proof { animation-delay: 0.5s; }

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes video-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        transform: scale(1);
    }
}