/* ==========================================================================
   AURONIX CAR - EXACT PIXEL-PERFECT DESKTOP DESIGN SYSTEM
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* 2. Design Tokens (CSS Variables) */
:root {
    /* Primary brand colors */
    --primary: #E50914;
    --primary-hover: #C40710;
    --primary-glow: rgba(229, 9, 20, 0.4);
    
    /* Dark Theme Token Colors (Used in Topbar, Header, Hero, Why Choose, Features, Footer) */
    --bg-dark: #080809;
    --bg-dark-secondary: #0F0F11;
    --bg-dark-card: #141416;
    --text-dark-main: #FFFFFF;
    --text-dark-muted: #8E8E93;
    --text-dark-light: #D1D1D6;
    --border-dark: rgba(255, 255, 255, 0.08);
    
    /* Light Theme Token Colors (Used in Services, Packages, Brands) */
    --bg-light: #F4F4F6;
    --bg-light-secondary: #FFFFFF;
    --text-light-main: #1C1C1E;
    --text-light-muted: #636366;
    --text-light-light: #8E8E93;
    --border-light: #E5E5EA;

    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Timing & Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows & Blurs */
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(8, 8, 9, 0.82);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(15px);
    
    --container-width: 1240px;
}

/* 3. Base Elements Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    color: var(--text-dark-main);
    background-color: var(--bg-dark);
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252528;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* 4. Global Core Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.813rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.btn-outline:hover {
    border-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 1px solid #1C1C1E;
    color: #1C1C1E;
    background-color: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(229, 9, 20, 0.02);
    transform: translateY(-2px);
}

.section-tag {
    font-family: var(--font-headings);
    font-size: 0.813rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
    display: block;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 2.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.25;
}

.title-line {
    width: 48px;
    height: 3px;
    background-color: var(--primary);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-desc {
    font-size: 0.938rem;
    max-width: 600px;
    margin: -10px auto 45px auto;
    text-align: center;
    line-height: 1.6;
}

/* ==========================================================================
   5. Modular Component Layout Sections
   ========================================================================== */

/* Top Info Bar */
.topbar {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.75rem;
    color: var(--text-dark-muted);
    padding: 10px 0;
    font-family: var(--font-body);
}

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

.topbar-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark-muted);
}

.social-link:hover {
    color: #FFFFFF;
    transform: scale(1.12);
}

.social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Navigation Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    height: 96px;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 78px;
    background: rgba(8, 8, 9, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Brand Logo (High-Fidelity SVG-HTML Custom Replica) */
.logo {
    display: flex;
    align-items: center;
}

.logo-flex-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.logo-flex-container:hover {
    transform: translateY(-1px);
}

.logo-svg {
    filter: drop-shadow(0 3px 6px rgba(229, 9, 20, 0.2));
    transition: var(--transition-smooth);
}

.logo-flex-container:hover .logo-svg {
    filter: drop-shadow(0 4px 10px rgba(229, 9, 20, 0.35));
    transform: scale(1.04);
}

.logo-main-text {
    font-family: var(--font-headings);
    font-size: 1.875rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 0.9;
    text-transform: uppercase;
}

.logo-sub-text {
    font-family: var(--font-headings);
    font-size: 0.688rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.55em;
    padding-left: 0.55em;
    text-transform: uppercase;
    line-height: 1;
}

.logo-line {
    flex-grow: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #E50914);
}

/* Navbar Menu Links matching mockup */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark-light);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

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

.nav-item.active .nav-link {
    color: var(--primary) !important;
}

.nav-link svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.nav-link:hover svg {
    transform: translateY(2px);
    fill: var(--primary);
}

/* Dropdown Sub-menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 220px;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 9px 24px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-dark-muted);
}

.dropdown-item a:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.03);
    padding-left: 28px;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Hamburger mobile button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #050506;
    min-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-vignette {
    position: absolute;
    inset: 0;
}

.hero-slider {
    z-index: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 850ms ease, transform 1800ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-vignette {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(3, 3, 4, 0.96) 0%, rgba(3, 3, 4, 0.88) 24%, rgba(3, 3, 4, 0.48) 46%, rgba(3, 3, 4, 0.08) 70%, rgba(3, 3, 4, 0.5) 100%),
        linear-gradient(180deg, rgba(3, 3, 4, 0.18) 0%, rgba(3, 3, 4, 0) 55%, rgba(3, 3, 4, 0.72) 100%);
}

.hero .container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.hero-content {
    max-width: 560px;
    text-align: left;
    margin-bottom: 30px;
    z-index: 10;
}

/* Decorative Chevrons situated in the center-right transition zone exactly like the mockup */
.hero-diagonal-overlay {
    position: absolute;
    top: 0;
    right: 46%;
    bottom: 0;
    width: 250px;
    pointer-events: none;
    z-index: 2;
}

.hero-diagonal-overlay::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100px;
    height: 260px;
    border-right: 2.5px solid rgba(255, 255, 255, 0.12);
    border-top: 2.5px solid rgba(255, 255, 255, 0.12);
    transform: skewX(-25deg);
}

.hero-diagonal-overlay::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 45px;
    width: 100px;
    height: 260px;
    border-right: 2.5px solid var(--primary);
    border-top: 2.5px solid var(--primary);
    transform: skewX(-25deg);
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.5));
}

.hero-tag {
    font-family: var(--font-headings);
    font-size: 0.813rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 4.25rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}

.hero-title span.title-white {
    color: #FFFFFF;
    display: block;
}

.hero-title span.title-red {
    color: var(--primary);
    display: block;
    text-shadow: 0 0 25px rgba(229, 9, 20, 0.35);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-dark-light);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    z-index: 8;
}

.hero-actions .btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

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

.hero-carousel-dots {
    position: absolute;
    right: 34px;
    bottom: 108px;
    z-index: 8;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active {
    width: 26px;
    border-color: var(--primary);
    background: var(--primary);
}

/* Stats Footer Bar (Dark Full-Width Element) */
.hero-stats {
    background-color: rgba(6, 6, 8, 0.92);
    border-top: 1px solid var(--border-dark);
    padding: 26px 0;
    position: relative;
    z-index: 5;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.stats-intro-text {
    font-family: var(--font-headings);
    font-size: 0.813rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.35;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 20px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(229, 9, 20, 0.07);
    border: 1px solid rgba(229, 9, 20, 0.12);
    color: var(--primary);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.stat-number {
    font-family: var(--font-headings);
    font-size: 1.375rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3px;
}

/* ==========================================================================
   6. SERVICES SECTION (LIGHT THEME - OFF-WHITE BACKGROUND)
   ========================================================================== */
.services-section {
    padding: 95px 0;
    background-color: var(--bg-light);
    color: var(--text-light-main);
}

.services-section .section-tag {
    color: var(--primary);
}

.services-section .section-title {
    color: var(--text-light-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

/* Left-Aligned Crisp Service Cards */
.service-card {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-align: left; /* Left-aligned like mockup */
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.06);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
}

.service-content {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-family: var(--font-headings);
    font-size: 1.063rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light-main);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.844rem;
    color: var(--text-light-muted);
    margin-bottom: 20px;
    line-height: 1.55;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.service-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   7. WHY CHOOSE SECTION (DARK THEME - RICH OBSIDIAN BACKGROUND)
   ========================================================================== */
.why-choose-section {
    background-color: var(--bg-dark);
    padding: 95px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Left video thumbnail block */
.why-media-wrapper {
    position: relative;
    height: 460px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.why-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 9, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.why-media-overlay:hover {
    background: rgba(8, 8, 9, 0.25);
}

.play-btn-circle {
    width: 72px;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.play-btn-circle svg {
    width: 22px;
    height: 22px;
    fill: #FFFFFF;
    transform: translateX(2px);
}

.why-media-overlay:hover .play-btn-circle {
    transform: scale(1.08);
    background-color: var(--primary);
    border-color: var(--primary);
}

.why-media-text {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FFFFFF;
}

/* Center Column Content */
.why-content {
    display: flex;
    flex-direction: column;
}

.why-content .section-tag {
    text-align: left;
}

.why-content .section-title {
    text-align: left;
    margin-bottom: 18px;
    color: #FFFFFF;
}

.why-desc {
    font-size: 0.938rem;
    color: var(--text-dark-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.15);
    color: var(--primary);
    flex-shrink: 0;
}

.checklist-icon svg {
    width: 9px;
    height: 9px;
    fill: currentColor;
}

.checklist-text {
    font-family: var(--font-headings);
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* Floating Glass Quote Card (Right Column) */
.quote-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 32px 28px;
    position: relative;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.quote-card-header {
    text-align: center;
    margin-bottom: 22px;
}

.quote-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    margin-bottom: 10px;
    color: var(--primary);
}

.quote-card-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.quote-card-title {
    font-family: var(--font-headings);
    font-size: 1.063rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.quote-card-sub {
    font-size: 0.719rem;
    color: var(--text-dark-muted);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 11px 15px;
    font-size: 0.75rem;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--primary);
    background-color: rgba(0, 0, 0, 0.4);
}

.quote-card-img {
    height: 105px;
    margin: 12px -28px -32px -28px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-dark);
}

.quote-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   8. PACKAGES SECTION (LIGHT THEME - OFF-WHITE BACKGROUND)
   ========================================================================== */
.packages-section {
    padding: 95px 0;
    background-color: var(--bg-light);
    color: var(--text-light-main);
}

.packages-section .section-tag {
    color: var(--primary);
}

.packages-section .section-title {
    color: var(--text-light-main);
}

.packages-section .section-desc {
    color: var(--text-light-muted);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Clean White Packages Cards */
.package-card {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 38px 24px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.package-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Card 3: Premium Detail Highlight */
.package-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.08);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary);
    color: #FFFFFF;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(229, 9, 20, 0.25);
    white-space: nowrap;
}

.package-name {
    font-family: var(--font-headings);
    font-size: 1.063rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light-main);
    margin-bottom: 20px;
}

.package-price-wrapper {
    margin-bottom: 25px;
}

.price-label {
    font-size: 0.688rem;
    color: var(--text-light-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    display: block;
}

.package-price {
    font-family: var(--font-headings);
    font-size: 2.125rem;
    font-weight: 900;
    color: var(--text-light-main);
    line-height: 1;
}

.package-price span {
    font-size: 1.375rem;
    font-weight: 600;
    margin-right: 2px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.781rem;
    color: var(--text-light-muted);
}

.feature-item svg {
    width: 10px;
    height: 10px;
    fill: var(--primary);
    flex-shrink: 0;
}

.package-card .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.75rem;
}

/* ==========================================================================
   9. FEATURES BAR (DARK THEME)
   ========================================================================== */
.features-bar {
    background-color: #050506;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 45px 0;
}

.features-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-bar-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 20px;
}

.feature-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-dark);
    color: var(--primary);
    flex-shrink: 0;
}

.feature-bar-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.feature-bar-content {
    display: flex;
    flex-direction: column;
}

.feature-bar-title {
    font-family: var(--font-headings);
    font-size: 0.813rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.feature-bar-desc {
    font-size: 0.719rem;
    color: var(--text-dark-muted);
    line-height: 1.35;
}

/* ==========================================================================
   10. BRANDS SCROLLER (PURE WHITE BACKGROUND)
   ========================================================================== */
.brands-section {
    background-color: #FFFFFF;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

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

.brands-title {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8E8E93;
    flex-shrink: 0;
    margin-right: 40px;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 30px;
    overflow-x: auto;
}

.brands-row::-webkit-scrollbar {
    display: none;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.brand-logo-wrapper svg {
    height: 22px;
    max-width: 90px;
    fill: #3A3A3C;
    transition: var(--transition-smooth);
}

.brand-logo-wrapper:hover svg {
    fill: #000000;
    transform: scale(1.06);
}

/* ==========================================================================
   11. FOOTER SECTION (DARK THEME)
   ========================================================================== */
.footer {
    background-color: #050506;
    border-top: 1px solid var(--border-dark);
    padding: 75px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
}

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

.footer-desc {
    font-size: 0.781rem;
    color: var(--text-dark-muted);
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 240px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-dark);
    color: var(--text-dark-muted);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.footer-title {
    font-family: var(--font-headings);
    font-size: 0.813rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link a {
    font-size: 0.781rem;
    color: var(--text-dark-muted);
    display: inline-flex;
    align-items: center;
}

.footer-link a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.781rem;
    color: var(--text-dark-muted);
}

.footer-contact-item svg {
    width: 13px;
    height: 13px;
    fill: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item div {
    line-height: 1.45;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
}

.newsletter-desc {
    font-size: 0.781rem;
    color: var(--text-dark-muted);
    line-height: 1.45;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-dark);
    border-radius: 4px;
    padding: 11px 15px;
    font-size: 0.75rem;
    color: #FFFFFF;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.newsletter-form .btn {
    width: 100%;
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 22px 0;
    margin-top: 50px;
}

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

.copyright {
    font-size: 0.719rem;
    color: var(--text-dark-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    font-size: 0.719rem;
    color: var(--text-dark-muted);
}

.footer-bottom-link:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   12. Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1200px) {
    .hero {
        background-position: right 25% center;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .quote-card {
        grid-column: span 2;
        max-width: 460px;
        margin: 25px auto 0 auto;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .header {
        height: 80px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
        gap: 20px;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        font-size: 0.938rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        border: none;
        background-color: rgba(255, 255, 255, 0.02);
        margin-top: 8px;
        display: none;
    }
    
    .nav-item:hover .dropdown-menu {
        display: block;
    }
    
    .header .btn {
        display: none;
    }
    
    .hero {
        background-position: center;
        text-align: center;
        padding-top: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 30px auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-desc {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-intro-text {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-media-wrapper {
        height: 320px;
    }
    
    .quote-card {
        grid-column: auto;
    }
    
    .features-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-bar-item:nth-child(odd) {
        border-left: none;
        padding-left: 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        grid-column: span 2;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-intro-text {
        grid-column: auto;
    }
    
    .stat-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        padding-bottom: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .features-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-bar-item {
        border-left: none !important;
        padding-left: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 15px;
    }
    
    .brands-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .brands-title {
        margin-right: 0;
    }
    
    .brands-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-column: auto;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ==========================================================================
   13. Reference Desktop Lockup
   The supplied desktop comp is 864px wide, so desktop styling must remain
   active at that width instead of switching to tablet/mobile.
   ========================================================================== */

@media (min-width: 721px) {
    :root {
        --container-width: 864px;
    }

    .container {
        max-width: var(--container-width);
        padding: 0 20px;
    }

    .topbar {
        height: 43px;
        padding: 0;
        display: flex;
        align-items: center;
        font-size: 0.625rem;
        color: #d7d7d9;
    }

    .topbar-info {
        gap: 30px;
    }

    .info-item {
        gap: 7px;
        white-space: nowrap;
    }

    .info-item svg,
    .social-link svg {
        width: 13px;
        height: 13px;
    }

    .topbar-socials {
        gap: 17px;
    }

    .header,
    .header.scrolled {
        position: relative;
        top: auto;
        height: 73px;
        background: #050607;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .reference-logo {
        width: 165px;
        height: 72px;
        object-fit: contain;
        display: block;
    }

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

    .hamburger {
        display: none;
    }

    .nav-menu,
    .nav-menu.active {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        flex-direction: row;
        align-items: center;
        gap: 22px;
        overflow: visible;
    }

    .nav-item {
        width: auto;
    }

    .nav-link {
        width: auto;
        justify-content: flex-start;
        padding: 28px 0;
        color: #ffffff;
        font-size: 0.563rem;
        line-height: 1;
        letter-spacing: 0.045em;
    }

    .nav-item.active .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        height: 2px;
        background: var(--primary);
    }

    .dropdown-menu {
        top: calc(100% - 10px);
    }

    .header .btn {
        display: inline-flex;
        min-width: 122px;
        height: 34px;
        padding: 0 17px;
        border-radius: 3px;
        font-size: 0.563rem;
        letter-spacing: 0.035em;
    }

    .hero {
        height: 385px;
        min-height: 0;
        padding: 0;
        display: flex;
        text-align: left;
    }

    .hero-diagonal-overlay {
        display: none;
    }

    .hero .container {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        max-width: 864px;
    }

    .hero-slide {
        background-position: center;
    }

    .hero-vignette {
        background:
            linear-gradient(90deg, rgba(3, 3, 4, 0.96) 0%, rgba(3, 3, 4, 0.82) 29%, rgba(3, 3, 4, 0.34) 52%, rgba(3, 3, 4, 0.07) 74%, rgba(3, 3, 4, 0.52) 100%),
            linear-gradient(180deg, rgba(3, 3, 4, 0.1) 0%, rgba(3, 3, 4, 0) 57%, rgba(3, 3, 4, 0.85) 100%);
    }

    .hero-content {
        max-width: 350px;
        margin: 20px 0 0;
        text-align: left;
    }

    .hero-tag {
        font-size: 0.688rem;
        letter-spacing: 0.06em;
        margin-bottom: 7px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 0.98;
        margin-bottom: 14px;
    }

    .hero-desc {
        max-width: 310px;
        font-size: 0.75rem;
        line-height: 1.5;
        margin: 0 0 20px;
    }

    .hero-actions {
        justify-content: flex-start;
        gap: 12px;
    }

    .hero-actions .btn {
        height: 35px;
        min-width: 128px;
        padding: 0 15px;
        font-size: 0.563rem;
        border-radius: 3px;
    }

    .hero-stats {
        display: block;
        padding: 12px 0;
        background: rgba(5, 5, 6, 0.74);
    }

    .stats-grid {
        grid-template-columns: 1.15fr repeat(4, 1fr);
        gap: 10px;
    }

    .stats-intro-text {
        font-size: 0.5rem;
    }

    .stat-item {
        gap: 8px;
        padding-left: 12px;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
    }

    .stat-icon svg {
        width: 13px;
        height: 13px;
    }

    .stat-number {
        font-size: 0.875rem;
    }

    .stat-label {
        font-size: 0.438rem;
    }

    .hero-carousel-dots {
        right: 20px;
        bottom: 57px;
    }

    .section-tag {
        font-size: 0.625rem;
        letter-spacing: 0.035em;
        margin-bottom: 4px;
    }

    .section-title {
        font-size: 1.375rem;
        line-height: 1.12;
        margin-bottom: 20px;
        letter-spacing: 0;
    }

    .title-line {
        width: 29px;
        height: 2px;
        margin-top: 7px;
    }

    .services-section {
        padding: 30px 0 23px;
        background: #f7f8fa;
    }

    .services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 11px;
        margin-bottom: 18px;
    }

    .service-card {
        border-radius: 4px;
        height: 219px;
    }

    .service-img-wrapper {
        height: 121px;
    }

    .service-content {
        padding: 10px 11px 9px;
    }

    .service-title {
        font-size: 0.594rem;
        line-height: 1.18;
        letter-spacing: 0;
        margin-bottom: 7px;
    }

    .service-desc {
        font-size: 0.531rem;
        line-height: 1.42;
        margin-bottom: 10px;
    }

    .service-link {
        font-size: 0.5rem;
        letter-spacing: 0.02em;
        gap: 4px;
    }

    .services-cta-wrapper {
        display: flex;
        justify-content: center;
    }

    .services-cta-wrapper .btn {
        width: 164px;
        height: 30px;
        padding: 0;
        font-size: 0.563rem;
        letter-spacing: 0.02em;
        border-radius: 3px;
    }

    .why-choose-section {
        padding: 22px 0 22px;
        background: #070809;
    }

    .why-choose-grid {
        grid-template-columns: 1.95fr 1.28fr 0.71fr;
        gap: 22px;
        align-items: center;
    }

    .why-media-wrapper {
        height: 245px;
        border-radius: 2px;
    }

    .play-btn-circle {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
    }

    .why-media-text {
        font-size: 0.5rem;
    }

    .why-content .section-title {
        font-size: 1.125rem;
        line-height: 1.06;
        margin-bottom: 10px;
    }

    .why-desc {
        font-size: 0.563rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .checklist {
        gap: 6px;
    }

    .checklist-icon {
        width: 18px;
        height: 18px;
    }

    .checklist-text {
        font-size: 0.531rem;
        font-weight: 500;
    }

    .quote-card {
        grid-column: auto;
        max-width: none;
        margin: 0;
        min-height: 228px;
        padding: 20px 16px 0;
        border-radius: 4px;
    }

    .quote-card-header {
        margin-bottom: 12px;
    }

    .quote-card-icon {
        width: 33px;
        height: 33px;
        margin-bottom: 8px;
    }

    .quote-card-title {
        font-size: 0.625rem;
        line-height: 1.2;
        margin-bottom: 7px;
    }

    .quote-card-sub {
        font-size: 0.563rem;
        line-height: 1.45;
    }

    .quote-compact-btn {
        width: 100%;
        height: 31px;
        padding: 0;
        font-size: 0.5rem;
        border-radius: 2px;
    }

    .quote-card-img {
        height: 74px;
        margin: 12px -16px 0;
    }

    .packages-section {
        padding: 20px 0 17px;
        background: #f7f8fa;
    }

    .packages-section .section-desc {
        font-size: 0.688rem;
        line-height: 1.25;
        margin: -14px auto 17px;
    }

    .packages-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
        margin-top: -6px;
    }

    .package-card {
        height: 176px;
        min-height: 0;
        padding: 17px 24px 16px;
        border-radius: 5px;
    }

    .popular-badge {
        top: 0;
        right: 12px;
        left: auto;
        transform: translateY(-45%);
        font-size: 0.438rem;
        padding: 3px 8px;
    }

    .package-name {
        font-size: 0.719rem;
        margin-bottom: 10px;
    }

    .package-price-wrapper {
        margin-bottom: 11px;
    }

    .price-label {
        font-size: 0.5rem;
    }

    .package-price {
        font-size: 1.375rem;
    }

    .package-price span {
        font-size: 0.875rem;
    }

    .package-features {
        gap: 6px;
        margin-bottom: 12px;
        padding-top: 0;
        border-top: none;
    }

    .feature-item {
        font-size: 0.5rem;
        gap: 7px;
    }

    .package-card .btn {
        height: 25px;
        padding: 0;
        font-size: 0.5rem;
        border-radius: 2px;
    }

    .features-bar {
        padding: 18px 0;
    }

    .features-bar-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .feature-bar-item {
        gap: 12px;
    }

    .feature-bar-icon {
        width: 32px;
        height: 32px;
    }

    .feature-bar-title {
        font-size: 0.625rem;
        margin-bottom: 4px;
    }

    .feature-bar-desc {
        font-size: 0.563rem;
    }

    .brands-section {
        padding: 18px 0;
    }

    .brands-title {
        font-size: 0.563rem;
        margin-right: 32px;
    }

    .brand-logo-wrapper svg {
        height: 24px;
        max-width: 72px;
    }

    .footer {
        padding: 8px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1.15fr 0.72fr 1fr 1.1fr 1fr;
        gap: 24px;
        margin-bottom: 8px;
    }

    .footer-info {
        grid-column: auto;
        margin-bottom: 0;
    }

    .footer-reference-logo {
        width: 135px;
        height: auto;
    }

    .footer-desc,
    .footer-link a,
    .footer-contact-item,
    .newsletter-desc,
    .copyright,
    .footer-bottom-links {
        font-size: 0.594rem;
    }

    .footer-title {
        font-size: 0.625rem;
        margin-bottom: 8px;
    }

    .footer-desc {
        margin-bottom: 13px;
        line-height: 1.45;
    }

    .footer-links,
    .footer-contact-list {
        gap: 5px;
    }

    .footer-link a,
    .footer-contact-item,
    .newsletter-desc {
        line-height: 1.18;
    }

    .newsletter-desc {
        margin-bottom: 8px;
    }

    .newsletter-form {
        gap: 8px;
    }

    .footer-social-link {
        width: 25px;
        height: 25px;
    }

    .newsletter-input {
        height: 35px;
        font-size: 0.594rem;
    }

    .newsletter-form .btn {
        height: 31px;
        padding: 0;
        font-size: 0.5rem;
    }

    .footer-bottom {
        padding: 9px 0;
        margin-top: 4px;
    }
}

@media (min-width: 1200px) {
    :root {
        --container-width: 1280px;
    }

    .container {
        max-width: var(--container-width);
        padding: 0 32px;
    }

    .topbar .container,
    .header .container {
        max-width: 100%;
        padding-left: 52px;
        padding-right: 52px;
    }

    .topbar-info {
        gap: 46px;
    }

    .header,
    .header.scrolled {
        height: 86px;
    }

    .reference-logo {
        width: 190px;
        height: 83px;
    }

    .nav-menu,
    .nav-menu.active {
        gap: 34px;
    }

    .nav-link {
        font-size: 0.688rem;
        padding: 35px 0;
    }

    .nav-item.active .nav-link::after {
        bottom: 27px;
    }

    .header .btn {
        width: 184px;
        height: 51px;
        font-size: 0.688rem;
    }

    .hero {
        width: 100%;
        height: clamp(620px, 44.58vw, 856px);
    }

    .hero .container {
        max-width: var(--container-width);
    }

    .hero-slide {
        background-position: center;
    }

    .hero-vignette {
        background:
            linear-gradient(90deg, rgba(3, 3, 4, 0.98) 0%, rgba(3, 3, 4, 0.86) 23%, rgba(3, 3, 4, 0.38) 48%, rgba(3, 3, 4, 0.06) 73%, rgba(3, 3, 4, 0.42) 100%),
            linear-gradient(180deg, rgba(3, 3, 4, 0.12) 0%, rgba(3, 3, 4, 0) 56%, rgba(3, 3, 4, 0.82) 100%);
    }

    .hero-content {
        max-width: 560px;
        margin-top: 34px;
    }

    .hero-tag {
        font-size: 1rem;
        letter-spacing: 0.08em;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(4.7rem, 5.4vw, 6.8rem);
        margin-bottom: 24px;
    }

    .hero-desc {
        max-width: 520px;
        font-size: 1.125rem;
        margin-bottom: 36px;
    }

    .hero-actions .btn {
        height: 54px;
        min-width: 188px;
        padding: 0 28px;
        font-size: 0.813rem;
    }

    .hero-stats {
        padding: 24px 0;
    }

    .stats-grid {
        gap: 24px;
    }

    .stats-intro-text {
        font-size: 0.813rem;
    }

    .stat-item {
        gap: 14px;
        padding-left: 20px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
    }

    .stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .stat-number {
        font-size: 1.375rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-carousel-dots {
        right: 52px;
        bottom: 122px;
    }

    .section-tag {
        font-size: 0.813rem;
    }

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

    .services-section {
        padding: 48px 0 42px;
    }

    .services-grid {
        gap: 18px;
    }

    .service-card {
        height: 315px;
    }

    .service-img-wrapper {
        height: 178px;
    }

    .service-content {
        padding: 18px 18px 16px;
    }

    .service-title {
        font-size: 0.813rem;
    }

    .service-desc {
        font-size: 0.75rem;
    }

    .service-link {
        font-size: 0.688rem;
    }

    .services-cta-wrapper .btn {
        width: 250px;
        height: 44px;
        font-size: 0.688rem;
    }

    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-grid {
        gap: 38px;
    }

    .why-media-wrapper {
        height: 370px;
    }

    .why-content .section-title {
        font-size: 1.875rem;
    }

    .why-desc {
        font-size: 0.875rem;
    }

    .checklist {
        gap: 12px;
    }

    .checklist-text {
        font-size: 0.813rem;
    }

    .quote-card {
        min-height: 345px;
        padding: 32px 24px 0;
    }

    .quote-card-title {
        font-size: 0.875rem;
    }

    .quote-card-sub {
        font-size: 0.75rem;
    }

    .quote-compact-btn {
        height: 44px;
        font-size: 0.688rem;
    }

    .quote-card-img {
        height: 122px;
        margin: 20px -24px 0;
    }

    .packages-section {
        padding: 40px 0 42px;
    }

    .packages-section .section-desc {
        font-size: 0.875rem;
        margin: -10px auto 34px;
    }

    .packages-grid {
        gap: 26px;
        margin-top: 0;
    }

    .package-card {
        height: 280px;
        padding: 28px 34px 26px;
    }

    .package-name {
        font-size: 0.938rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .package-price span {
        font-size: 1.25rem;
    }

    .package-features {
        gap: 11px;
        margin-bottom: 22px;
    }

    .feature-item {
        font-size: 0.75rem;
    }

    .package-card .btn {
        height: 38px;
        font-size: 0.688rem;
    }

    .features-bar {
        padding: 30px 0;
    }

    .brands-section {
        padding: 24px 0;
    }

    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        gap: 44px;
        margin-bottom: 34px;
    }

    .footer-reference-logo {
        width: 170px;
    }

    .footer-desc,
    .footer-link a,
    .footer-contact-item,
    .newsletter-desc,
    .copyright,
    .footer-bottom-links {
        font-size: 0.75rem;
        line-height: 1.45;
    }

    .footer-title {
        font-size: 0.813rem;
        margin-bottom: 18px;
    }

    .footer-links,
    .footer-contact-list {
        gap: 10px;
    }

    .newsletter-input {
        height: 44px;
    }

    .newsletter-form .btn {
        height: 44px;
    }

    .footer-bottom {
        padding: 20px 0;
        margin-top: 34px;
    }
}
