/* Design System Variables - Premium Dark Theme (BeeBuzz Inspired) */
:root {
    --bg-dark: #000000; /* Pure obsidian black background */
    --surface-dark: rgba(10, 10, 10, 0.7); /* Dark glass surface */
    --surface-border: rgba(255, 255, 255, 0.08); /* Very soft border */
    --surface-border-hover: rgba(255, 255, 255, 0.18);
    
    --color-primary: #ff781f; /* Vibrant, rich orange */
    --color-primary-glow: rgba(255, 120, 31, 0.15);
    --color-secondary: #ff3c00; /* Neon red-orange accent */
    --color-secondary-glow: rgba(255, 60, 0, 0.15);
    
    --text-main: #ffffff; /* Crisp white main text */
    --text-muted: #a3a3a3; /* Medium grey for descriptions */
    --text-dark: #525252; /* Dark grey for secondary UI components */
    
    --grad-text: linear-gradient(135deg, #ffffff 15%, #ffb076 60%, #ff5100 100%); /* High-fidelity metallic sunset-orange text gradient */
    --grad-orange: linear-gradient(135deg, #ff9f43 0%, #ff6b00 50%, #ff2a00 100%); /* Sunlit gold to deep red-orange gradient */
    --grad-dark-glass: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(5, 5, 5, 0.9) 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glass-blur: blur(16px);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

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

/* Background Blobs & Grid Overlay */
.blob {
    position: absolute;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    filter: blur(90px); /* Reduced from 120px to save GPU fill-rate repaint cost */
    z-index: -2;
    opacity: 0.28; /* High opacity for vibrant dark mode glows */
    pointer-events: none;
    will-change: transform; /* Hardware acceleration hint */
    transform: translateZ(0); /* Force GPU composite layer */
    backface-visibility: hidden;
    animation: floating 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: 5%;
    left: -10%;
    background: var(--color-primary);
}

.blob-2 {
    top: 50%;
    right: -10%;
    background: var(--color-secondary);
    animation-delay: -10s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

/* Common Layout Containers */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Glassmorphism System Card */
.glass-card {
    background: var(--surface-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    will-change: transform, opacity; /* Promotes elements to GPU layers */
    backface-visibility: hidden;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.glass-card:hover {
    border-color: var(--surface-border-hover);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #facc15 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--surface-border);
}

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

.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: var(--color-primary);
    filter: blur(20px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Typography elements */
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outlined-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.glow-badge {
    background: rgba(249, 115, 22, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(249, 115, 22, 0.2);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.08);
}

.badge-icon {
    width: 14px;
    height: 14px;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--surface-border);
    transition: var(--transition-smooth);
}

.header-scrolled {
    padding: 0.5rem 0;
    background: rgba(5, 5, 5, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--color-secondary);
    background: var(--grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.2rem 0;
}

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

.nav-link:hover {
    color: var(--text-main);
}

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--surface-dark);
    backdrop-filter: var(--glass-blur);
    z-index: 200;
    border-left: 1px solid var(--surface-border);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-close-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav-link:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding-top: 10rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--surface-border);
    padding-top: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-media-container {
    position: relative;
    padding: 0.75rem;
    border-radius: 24px;
    background: var(--surface-dark);
    border: 1px solid var(--surface-border);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.glowing-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
}

.video-overlay-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    top: 0;
    left: 0;
}

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

/* Section Header Styles */
.section-header {
    margin-bottom: 4.5rem;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-title-sm {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

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

.service-card {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface-dark);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
}

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-icon {
    background: var(--grad-orange);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}

.marketing-icon {
    background: linear-gradient(135deg, #ea580c 0%, #ff8c00 100%);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.25);
}

.ai-icon {
    background: linear-gradient(135deg, #eab308 0%, #facc15 100%);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.25);
}

.web-icon {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.service-icon-wrapper i {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    width: 100%;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.feat-icon {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
}

.video-icon + .service-card-title + .service-card-desc + .service-features .feat-icon {
    color: var(--color-primary);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.15);
}

/* 6-Benefits Value Grid Styles */
.value-benefits-header {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

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

.benefit-card {
    padding: 2.2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
    background: var(--surface-dark);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.benefit-card:focus .benefit-icon,
.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card:nth-child(even) .benefit-icon {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.15);
    color: var(--color-primary);
}

.benefit-icon i {
    width: 20px;
    height: 20px;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--surface-border-hover);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

/* Comparison Section (Before / After Slider) */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.spec-badge {
    background: rgba(8, 145, 178, 0.08);
    color: var(--color-secondary);
    border: 1px solid rgba(8, 145, 178, 0.15);
    margin-bottom: 1rem;
}

.tips-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.tip-item {
    display: flex;
    gap: 1.2rem;
}

.tip-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    background: rgba(124, 58, 237, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

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

.comparison-container {
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
    background: var(--surface-dark);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 14px;
    overflow: hidden;
    user-select: none;
}

.before-after-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

/* Raw footage effect - raw camera flat / slightly muted coloring */
.image-before {
    filter: grayscale(0.5) contrast(0.9) brightness(1.15) sepia(0.15);
    width: 100%;
    height: 100%;
}

.before-after-slider .label-before {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-after-slider .label-after {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    background: var(--color-primary);
    color: #fff;
}

/* Slider Controls styling */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 25;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    flex-grow: 1;
    width: 2px;
    background: rgba(255,255,255,0.7);
}

.handle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    border: 4px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    cursor: grab;
    z-index: 30;
}

.handle-button i {
    width: 18px;
    height: 18px;
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    z-index: 40;
    cursor: ew-resize;
    outline: none;
    margin: 0;
}

/* Comparison Table Styling */
.comparison-table-section {
    background: radial-gradient(circle at 10% 30%, rgba(249, 115, 22, 0.03), transparent 40%);
}

.table-wrapper {
    margin-top: 3.5rem;
    border-radius: 16px;
    border-color: var(--surface-border);
    overflow-x: auto;
    background: var(--surface-dark);
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 2px solid var(--surface-border);
    width: 50%;
}

.comparison-table th:first-child {
    color: var(--text-muted);
}

.comparison-table th:last-child {
    color: var(--color-primary);
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.08), rgba(255, 127, 0, 0.08));
    border-bottom-color: rgba(249, 115, 22, 0.2);
}

.comparison-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--surface-border);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody td:first-child {
    color: var(--text-muted);
}

.comparison-table tbody td:last-child {
    color: var(--text-main);
    font-weight: 600;
    background: rgba(249, 115, 22, 0.02);
    border-left: 1px solid rgba(255, 255, 255, 0.02);
}

/* Promotional CTA Banner */
.promotional-banner-section {
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    background: #050505;
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

.bg-glow-cyan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.promotional-banner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.promo-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 750px;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    color: #000000;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.sub-filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sub-filter-btn:hover, .sub-filter-btn.active {
    background: var(--color-primary);
    color: #000000;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    grid-column: span 2;
}

.portfolio-item.short-card {
    grid-column: span 1;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-item {
        grid-column: span 2 !important;
    }
    .portfolio-item.short-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item, .portfolio-item.short-card {
        grid-column: span 1 !important;
    }
}

.portfolio-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-media iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.portfolio-media.shorts-media {
    aspect-ratio: 9/16;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.portfolio-item:hover .portfolio-media img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

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

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

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

/* Package Estimator Styles */
.estimator-section {
    background: radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.03), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.03), transparent 50%);
}

.calc-badge {
    background: rgba(124, 58, 237, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(124, 58, 237, 0.15);
    margin-bottom: 1rem;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.estimator-value-props {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.val-prop {
    display: flex;
    gap: 1.2rem;
}

.val-icon {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.val-prop h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

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

.estimator-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    background: #ffffff;
}

.calculator-group {
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 1.8rem;
}

.calculator-group:nth-child(2) {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.mini-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.calculator-group:nth-child(2) .mini-icon {
    color: var(--color-secondary);
}

.slider-control {
    margin-bottom: 1.5rem;
}

.slider-control:last-child {
    margin-bottom: 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.slider-labels label {
    font-size: 0.95rem;
    color: var(--text-main);
}

.value-display {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

/* Styled Range Input */
.range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.05);
    outline: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
    transition: transform 0.1s ease;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-group:nth-child(2) .range-input::-webkit-slider-thumb {
    border-color: var(--color-secondary);
    box-shadow: 0 2px 10px rgba(8, 145, 178, 0.3);
}

/* Custom Checkboxes */
.checkbox-controls {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--surface-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.08);
    border-color: var(--color-secondary);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.checkmark::after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.label-text {
    display: flex;
    flex-direction: column;
}

.label-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.label-text small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Price summary container */
.price-summary-container {
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 1rem;
}

.price-header {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-display .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    align-self: flex-start;
    margin-right: 0.1rem;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-display .period {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

/* FAQ Accordion Section */
.faq-section {
    background: radial-gradient(circle at 90% 70%, rgba(8, 145, 178, 0.02), transparent 45%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: flex-start;
}

.cta-mini-card {
    margin-top: 2.5rem;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-color: var(--surface-border);
    background: var(--surface-dark);
}

.cta-mini-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-mini-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border-radius: 16px;
    border-color: var(--surface-border);
    transition: var(--transition-smooth);
    background: var(--surface-dark);
}

.faq-question {
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    transition: var(--transition-smooth);
    padding-right: 1.5rem;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-toggle-icon i {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    display: none;
    padding: 0 2rem 1.6rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item.active {
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.04);
    background: rgba(15, 15, 15, 0.85);
}

.faq-item.active .faq-question h4 {
    color: var(--text-main);
}

.faq-item.active .faq-toggle-icon {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.faq-item.active .faq-toggle-icon i {
    transform: rotate(180deg);
}

.faq-item:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.12);
}

/* About Philosophy Section */
.about-section {
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

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

.about-brand-box {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(255, 127, 0, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.huge-tagline {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
}

.about-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.team-quote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.8rem;
    text-align: left;
    margin-top: 2rem;
}

.team-quote p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Form Contact Section */
.form-container-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem;
    margin-top: 3.5rem;
    background: var(--surface-dark);
}

/* Form Stepper */
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.step.active {
    opacity: 1;
}

.step.complete {
    opacity: 0.8;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.step.active .step-num {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
}

.step.complete .step-num {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.step-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step.active .step-label {
    color: var(--text-main);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--surface-border);
    margin: 0 1rem;
    transition: var(--transition-smooth);
}

.step-line.active {
    background: var(--grad-text);
}

/* Brief Form Fields */
.brief-form {
    min-height: 320px;
    position: relative;
}

.form-step-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

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

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

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
    width: 100%;
}

.form-group-row {
    display: flex;
    gap: 1.5rem;
}

.form-group-row .form-group {
    flex: 1;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

input[type="text"],
input[type="url"],
input[type="email"],
select,
textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}

select option {
    background: #0f0f0f;
    color: var(--text-main);
}

textarea {
    resize: vertical;
}

.form-brief-package {
    background: rgba(249, 115, 22, 0.04);
    border: 1px dashed rgba(249, 115, 22, 0.3);
    border-radius: 10px;
    padding: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* Scheduler Grid */
.scheduler-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 992px) {
    .scheduler-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.scheduler-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scheduler-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scheduler-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.scheduler-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.scheduler-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-weight: 500;
}

.scheduler-bullets li i {
    color: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.scheduler-bullets h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.scheduler-bullets p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.host-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.host-avatars {
    display: flex;
    margin-right: 0.5rem;
}

.host-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.host-avatar.founder-1 {
    background: var(--color-primary);
}

.host-avatar.founder-2 {
    background: #a855f7;
    margin-left: -15px;
}

.host-text h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

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

/* Scheduler Card Container */
.scheduler-card {
    padding: 2.5rem;
    background: var(--surface-dark);
}

/* Custom Calendar View */
.calendar-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calendar-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-day-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: not-allowed;
    user-select: none;
    transition: var(--transition-smooth);
}

.calendar-day.active-day {
    color: var(--text-main);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.calendar-day.active-day:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-primary);
    border-color: rgba(249, 115, 22, 0.2);
}

.calendar-day.selected-day {
    background: var(--color-primary) !important;
    color: #000000 !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

.calendar-day.empty-day {
    background: transparent;
    border: none;
    cursor: default;
}

/* Time slots container */
.timeslots-container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeslots-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.8rem;
}

.timeslot-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.timeslot-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

.timeslot-btn.selected-slot {
    background: var(--color-primary) !important;
    color: #000000 !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.25);
}

/* Details Booking Form block */
.booking-form-block {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

.scheduler-tab-btn.active {
    background: var(--color-primary) !important;
    color: #000000 !important;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

/* Footer Section - Premium Deep Anchored Theme */
.footer {
    background: #0f172a; /* Deep Slate footer */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 0 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer .logo {
    color: #ffffff;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-links a.social-youtube:hover {
    color: #ff0000;
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-links a.social-instagram:hover {
    color: #e1306c;
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
}

.social-links a.social-linkedin:hover {
    color: #0077b5;
    border-color: #0077b5;
    background: rgba(0, 119, 181, 0.1);
}

.social-links a i {
    width: 18px;
    height: 18px;
}

.footer-links-group h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links-group ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.footer-links-group ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-info-item {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-info-item i {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    color: #64748b;
    font-size: 0.85rem;
}

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

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
    animation: modalReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalReveal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-content {
    max-width: 1200px;
    width: 95%;
    padding: 3rem;
    position: relative;
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--surface-dark);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Success Toast */
.success-toast {
    position: fixed;
    bottom: 2rem;
    right: -450px;
    z-index: 1000;
    width: 380px;
    max-width: 90vw;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-toast.active {
    right: 2rem;
}

.toast-content {
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.08);
    background: var(--surface-dark);
}

.success-icon-wrapper {
    width: 42px;
    height: 42px;
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper i {
    width: 22px;
    height: 22px;
}

.toast-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .glass-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(15, 23, 42, 0.88) !important; /* Premium dark background fallback */
    }

    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-value-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .promotional-banner-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .promo-actions {
        justify-content: center;
    }
    
    .estimator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .section-container {
        padding: 0 1.25rem;
    }
    
    .blob {
        max-width: 250px;
        max-height: 250px;
        filter: blur(80px);
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .scheduler-card {
        padding: 1.5rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .success-toast {
        left: 50%;
        right: auto;
        transform: translate(-50%, 150%);
        bottom: 2rem;
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .success-toast.active {
        right: auto;
        transform: translate(-50%, 0);
    }
    


    
    .benefits-value-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container-card {
        padding: 2rem;
    }
    
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
    
    .stepper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .step-line {
        display: none;
    }
    
    .flex-space-between {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Logo Marquee Section */
.marquee-section {
    background: #000;
    padding: 3.5rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 5rem;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 5rem;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-content span {
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.marquee-content span:hover {
    color: var(--color-primary);
    opacity: 1;
}

.marquee-content span i {
    color: var(--color-primary);
    opacity: 0.8;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ==========================================================================
   Lightbox Image Zoom Modal Style
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: zoomInLightbox 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: #ffffff;
}

@keyframes zoomInLightbox {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

/* ==========================================================================
   Legal Subpages Styles
   ========================================================================== */
.legal-section {
    padding: 10rem 0 7rem 0;
    position: relative;
    z-index: 10;
}
.legal-card {
    padding: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface-dark);
}
.legal-card h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legal-card .effective-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}
.legal-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 2.5rem 0 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}
.legal-card p, .legal-card li {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: square;
}
.legal-card li {
    margin-bottom: 0.5rem;
}
.legal-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.legal-card a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .legal-card {
        padding: 2rem 1.5rem;
    }
    .legal-card h1 {
        font-size: 2.2rem;
    }
    .legal-card h2 {
        font-size: 1.35rem;
    }
}
