/* ========================================
   DRIVELODGE EXACT REPLICA
   All animations and effects included
   ======================================== */

:root {
    --bg: #0a0b0d;
    --bg-elevated: #101114;
    --bg-card: #16181c;
    --bg-card-hover: #1c1e23;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.3);
    
    --accent: #c8a855;
    --accent-hover: #d4b665;
    --accent-glow: rgba(200, 168, 85, 0.3);
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --nav-height: 72px;
    --container: 1280px;
    --gutter: clamp(20px, 5vw, 48px);
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ========================================
   CURSOR
   ======================================== */

.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
}

body:hover .cursor,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-hover);
}

@media (hover: none) {
    .cursor, .cursor-follower { display: none; }
}

/* ========================================
   LOADER
   ======================================== */

.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader__content {
    text-align: center;
}

.loader__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.loader__logo span {
    color: var(--accent);
}

.loader__bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader__progress {
    width: 0;
    height: 100%;
    background: var(--accent);
    animation: loaderProgress 1.5s var(--ease) forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

/* ========================================
   LABEL
   ======================================== */

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.btn span {
    position: relative;
    z-index: 1;
}

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

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-hover);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.btn--primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.btn--ghost:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--ghost:hover {
    border-color: var(--border-hover);
}

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

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

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s;
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav.scrolled::before {
    opacity: 1;
}

.nav.scrolled {
    border-bottom: 1px solid var(--border);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.nav__logo {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    z-index: 10;
}

.nav__logo .accent,
.footer__logo .accent {
    color: var(--accent);
}

/* Nav Menu */
.nav__menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
    color: var(--text);
    
}

.nav__chevron {
    transition: transform 0.3s var(--ease);
}

.nav__item--has-dropdown:hover .nav__chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    min-width: 320px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.nav__dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.75rem;
}

.nav__dropdown-header span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.nav__dropdown-all {
    font-size: 0.75rem;
    color: var(--accent);
    transition: color 0.2s;
}

.nav__dropdown-all:hover {
    color: var(--accent-hover);
}

.nav__dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav__dropdown-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.2s;
}

.nav__dropdown-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.nav__dropdown-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 85, 0.1);
    border-radius: 10px;
    color: var(--accent);
}

.nav__dropdown-card-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.nav__dropdown-card-desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Nav Actions */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.nav__partner-link {
    font-size: 0.9375rem;
    color: var(--text);
    transition: color 0.2s;
    text-decoration: none;
    display: none;
}

.nav__partner-link:hover {
    color: var(--accent);
}

.nav__contact {
    display: none;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav__contact:hover {
    color: var(--text);
}

.nav__actions .btn {
    display: none;
}

/* Burger */
.nav__burger {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.nav__burger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__burger.active .nav__burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav__burger.active .nav__burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

@media (min-width: 1150px) {
    .nav__menu { display: block; }
    .nav__contact { display: block; }
    .nav__partner-link { display: inline-block; }
    .nav__actions .btn { display: inline-flex; }
    .nav__burger { display: none; }
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: auto;
}

.mobile-menu__bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active .mobile-menu__bg {
    opacity: 1;
}

.mobile-menu__container {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem var(--gutter);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.mobile-menu.active .mobile-menu__container {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 2rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.2s;
}

.mobile-menu.active .mobile-menu__link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__link[data-index="1"] { transition-delay: 0.1s; }
.mobile-menu__link[data-index="2"] { transition-delay: 0.15s; }
.mobile-menu__link[data-index="3"] { transition-delay: 0.2s; }
.mobile-menu__link[data-index="4"] { transition-delay: 0.25s; }
.mobile-menu__link[data-index="5"] { transition-delay: 0.3s; }
.mobile-menu__link[data-index="6"] { transition-delay: 0.35s; }

.mobile-menu__link:hover {
    color: var(--accent);
}

.mobile-menu__link--button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font: inherit;
    color: inherit;
    width: 100%;
    text-align: left;
}

.mobile-menu__link svg {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.mobile-menu__link:hover svg {
    transform: translateX(8px);
    opacity: 1;
}

.mobile-menu__footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu__footer .mobile-menu__link {
    border: none;
    padding: 0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.mobile-menu__contact a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.mobile-menu__contact a:hover {
    color: var(--text);
}

/* Mobile Menu - Responsive Pro Malé Displeje */
@media (max-width: 480px) {
    .mobile-menu__container {
        padding: 1.5rem var(--gutter);
    }

    .mobile-menu__link {
        padding: 1rem 0;
        font-size: 1.5rem;
    }

    .mobile-menu__footer {
        padding-top: 1.5rem;
    }

    .mobile-menu__footer .mobile-menu__link {
        font-size: 0.9rem;
    }
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--nav-height) + 2rem) 0 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    bottom: -10%;
    background-image: url('elements/images/hero-image.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -2;
    will-change: transform;
    transform: translateY(var(--parallax-y, 0));
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(10, 11, 13, 0.6) 0%, rgba(10, 11, 13, 0.4) 100%), 
        radial-gradient(ellipse 120% 80% at 70% -10%, rgba(200, 168, 85, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at -10% 50%, rgba(200, 168, 85, 0.08) 0%, transparent 40%);
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100vh - var(--nav-height) - 8rem);
    padding-bottom: 4rem;
}

.hero__content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1.5rem;
    border-left: 2px solid var(--text-dim);
    max-width: 300px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: var(--text);
    color: var(--bg);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: transform 0.3s var(--ease), background 0.3s;
}

.hero__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg);
    color: var(--text);
    border-radius: 50%;
    transition: transform 0.3s var(--ease);
}

.hero__cta-icon svg {
    width: 14px;
    height: 14px;
}

.hero__cta:hover {
    transform: translateY(-2px);
}

.hero__cta:hover .hero__cta-icon {
    transform: rotate(45deg);
}

.video-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    padding-right: 1.5rem;
    border-radius: 100px;
    overflow: hidden;
}

.video-trigger__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--bg);
    transition: transform 0.4s var(--ease);
}

.video-trigger__icon svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.video-trigger:hover .video-trigger__icon {
    transform: scale(1.1);
}

.video-trigger__text {
    text-align: left;
}

.video-trigger__title {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.video-trigger__subtitle {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.video-trigger__border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: border-color 0.3s;
}

.video-trigger:hover .video-trigger__border {
    border-color: var(--border-hover);
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero__scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

/* ========================================
   ABOUT/INTRO SECTION - Interias Style
   ======================================== */

.about-intro {
    padding: 8rem 0;
    background: var(--bg);
}

.about-intro__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-intro__label-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-intro__dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.about-intro__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-intro__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.about-intro__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.about-intro__cta:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
}

.about-intro__cta svg {
    transition: transform 0.3s var(--ease);
}

.about-intro__cta:hover svg {
    transform: translateX(4px);
}

/* Large Image */
.about-intro__image-wrapper {
    margin-bottom: 3rem;
}

.about-intro__image {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
}

.about-intro__image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3832 0%, #1a2420 100%);
}

/* Stats Cards */
.about-intro__stats {
    display: grid;
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

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

.stat-card__number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.stat-card__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-intro__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-intro__grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: flex-start;
    }
    
    .about-intro__right {
        align-items: flex-end;
        text-align: right;
    }
    
    .about-intro__desc {
        max-width: 400px;
    }
}

.products__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}

.products__title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.products__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.products__link:hover {
    color: var(--text);
}

.products__link svg {
    transition: transform 0.3s var(--ease);
}

.products__link:hover svg {
    transform: translateX(4px);
}

.products__grid {
    display: grid;
    gap: 1rem;
}

/* Product Card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.4s var(--ease);
}

.product-card:hover {
    border-color: var(--border-hover);
}

.product-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #2d4a3e 0%, #1a2f27 100%);
}

.product-card__image--blue {
    background: linear-gradient(135deg, #3d4654 0%, #252d38 100%);
}

.product-card__image--brown {
    background: linear-gradient(135deg, #4a4538 0%, #2d2a22 100%);
}

.product-card__bg {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__content {
    padding: 1.5rem;
}

.product-card__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(200, 168, 85, 0.15);
    color: var(--accent);
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.product-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card__count {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-card__arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-hover);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: background 0.3s, color 0.3s, transform 0.4s var(--ease);
}

.product-card:hover .product-card__arrow {
    background: var(--accent);
    color: var(--bg);
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card--featured {
        grid-row: span 2;
    }
    
    .product-card--featured .product-card__image {
        flex: 1;
        aspect-ratio: auto;
    }
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    padding: 5rem 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-banner__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-banner__text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ========================================
   SERVICES - Interias Style
   ======================================== */

.services-interias {
    padding: 8rem 0;
    background: var(--bg);
}

.services-interias__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
}

.services-interias__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.services-interias__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-interias__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.services-interias__cta:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
}

.services-interias__cta svg {
    transition: transform 0.3s var(--ease);
}

.services-interias__cta:hover svg {
    transform: translateX(4px);
}

/* Service Items */
.services-interias__list {
    display: flex;
    flex-direction: column;
    gap: 1px;
   
}

.service-interias {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--bg);
 
}

.service-interias:hover {
    cursor: pointer;
}

.service-interias__number {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 60px;
}

.service-interias__content {
    max-width: 600px;
}

.service-interias__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-interias__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-interias__stats {
    display: none;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-interias__number-big {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.service-interias__label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-interias__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
    transition: color 0.2s;
}

.service-interias__link:hover {
    color: var(--accent);
}

.service-interias__link svg {
    transition: transform 0.3s var(--ease);
}

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

.service-interias__image {
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.service-interias__image-bg {
    width: 100%;
    height: 100%;
}

.service-interias__image-bg--1 {
    background: linear-gradient(135deg, #2a3832 0%, #1a2420 100%);
}

.service-interias__image-bg--2 {
    background: linear-gradient(135deg, #3d4650 0%, #252a30 100%);
}

.service-interias__image-bg--3 {
    background: linear-gradient(135deg, #4a4538 0%, #2d2a22 100%);
}

.service-interias__image-bg--4 {
    background: linear-gradient(135deg, #384038 0%, #222822 100%);
}

.service-interias__image-bg--5 {
    background: linear-gradient(135deg, #3a3d45 0%, #24262b 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-interias {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-interias__number {
        order: -1;
    }
    
    .service-interias__image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 640px) {
    .services-interias {
        padding: 5rem 0;
    }
    
    .services-interias__header {
        margin-bottom: 4rem;
    }
    
    .service-interias {
        padding: 2rem 1.5rem;
    }
}

.services__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.services__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
}

.services__link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.services__link:hover {
    color: var(--text);
}

.services__grid {
    display: grid;
    gap: 1.5rem;
}

/* Service Card */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: var(--border-hover);
}

.service-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #2a3832 0%, #1a2420 100%);
    overflow: hidden;
}

.service-card__image--2 { background: linear-gradient(145deg, #3d4650 0%, #252a30 100%); }
.service-card__image--3 { background: linear-gradient(145deg, #4a4538 0%, #2d2a22 100%); }
.service-card__image--4 { background: linear-gradient(145deg, #384038 0%, #222822 100%); }
.service-card__image--5 { background: linear-gradient(145deg, #3a3d45 0%, #24262b 100%); }
.service-card__image--6 { background: linear-gradient(145deg, #45403a 0%, #2b2824 100%); }

.service-card__image-inner {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255,255,255,0.02) 15px, rgba(255,255,255,0.02) 30px);
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image-inner {
    transform: scale(1.05);
}

.service-card__body {
    padding: 1.5rem;
}

.service-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
}

.service-card__type {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.service-card__type::before {
    content: '•';
    margin-right: 0.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.service-card__link:hover {
    color: var(--accent);
}

.service-card__link svg {
    transition: transform 0.3s var(--ease);
}

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

@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   PROCESS - Drivelodge Style
   ======================================== */

.process {
    padding: 8rem 0;
    background: var(--bg);
}

.process__header {
    margin-bottom: 4rem;
}

/* Large Italic Headline */
.process__headline {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 300;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.process__headline-light {
    color: var(--text-muted);
}

.process__headline-bold {
    color: var(--text);
    font-weight: 500;
}

/* Two Column Layout */
.process__layout {
    display: grid;
    gap: 3rem;
}

/* Left: Image + Button */
.process__media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process__image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
}

img.process__image-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .2s linear;
}

.process__media .btn {
    align-self: flex-start;
}

/* Right: Features List */
.process__features {
    display: flex;
    flex-direction: column;
}

.process__feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.process__feature:first-child {
    padding-top: 0;
}

.process__feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process__feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.25rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.process__feature-content {
    flex: 1;
}

.process__feature-title {
    font-size: 1.38rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.process__feature-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (min-width: 900px) {
    .process__layout {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: start;
    }
    
    .process__image {
        aspect-ratio: 3 / 4;
        position: sticky;
        top: calc(var(--nav-height) + 2rem);
    }
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter {
    padding: 6rem 0;
}

.newsletter__content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
    padding: 6rem 0;
    background: var(--bg-elevated);
}

.video-section__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.video-section__player {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
}

.video-section__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3832 0%, #1a2420 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section__play {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--bg);
    transition: transform 0.4s var(--ease);
}

.video-section__play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.video-section__play:hover {
    transform: scale(1.1);
}

.video-section__title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (min-width: 900px) {
    .video-section__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

/* ========================================
   QUALITY
   ======================================== */

.quality {
    padding: 5rem 0;
}

.quality__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality__card {
    max-width: 100%;
    text-align: center;
    padding: 1.5rem;
}

.quality__content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.quality__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(200, 168, 85, 0.1);
    border-radius: 50%;
    color: var(--accent);
}

.quality__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quality__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .quality__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .quality__card {
        padding: 1rem;
    }

    .quality__title {
        font-size: 1.125rem;
    }

    .quality__text {
        font-size: 0.875rem;
    }
}

/* ========================================
   PROJECTS CAROUSEL - Interias Style
   ======================================== */

.projects-carousel {
    padding: 8rem 0;
    background: var(--bg);
    overflow: hidden;
}

.projects-carousel__header {
    margin-bottom: 4rem;
}

.projects-carousel__header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.projects-carousel__label-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.projects-carousel__dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.projects-carousel__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 800px;
}

.projects-carousel__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* Carousel Wrapper */
.projects-carousel__wrapper {
    position: relative;
    margin: 0 0 3rem;
    overflow: hidden;
}

.projects-carousel__track {
    display: flex;
    gap: 1.5rem;
    padding: 0 var(--gutter);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-carousel__track::-webkit-scrollbar {
    display: none;
}

/* Project Card */
.project-card {
    flex: 0 0 auto;
    width: clamp(320px, 40vw, 480px);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    transition: transform 0.3s var(--ease);
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.project-card__image-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease);
}

.project-card:hover .project-card__image-bg {
    transform: scale(1.05);
}

.project-card__placeholder {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.project-card__placeholder span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-card__image-bg--1 {
    background: linear-gradient(135deg, #2a3832 0%, #1a2420 100%);
}

.project-card__image-bg--2 {
    background: linear-gradient(135deg, #3d4650 0%, #252a30 100%);
}

.project-card__image-bg--3 {
    background: linear-gradient(135deg, #4a4538 0%, #2d2a22 100%);
}

.project-card__image-bg--4 {
    background: linear-gradient(135deg, #384038 0%, #222822 100%);
}

.project-card__image-bg--5 {
    background: linear-gradient(135deg, #3a3d45 0%, #24262b 100%);
}

.project-card__content {
    padding: 1.5rem;
}

.project-card__title {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    opacity: 0;
}

.project-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
}

.project-card__year {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.project-card__tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(200, 168, 85, 0.1);
    color: var(--accent);
    border-radius: 100px;
}

/* Carousel Controls */
.projects-carousel__controls {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.projects-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.projects-carousel__arrow:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: scale(1.05);
}

.projects-carousel__arrow:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-carousel__header-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .projects-carousel__controls {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .projects-carousel {
        padding: 4rem 0;
    }
    
    .projects-carousel__header {
        margin-bottom: 2.5rem;
    }

    .projects-carousel__header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .projects-carousel__title {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    
    .projects-carousel__subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .projects-carousel__controls {
        width: 100%;
        justify-content: flex-start;
    }
    
    .projects-carousel__arrow {
        width: 40px;
        height: 40px;
    }

    .projects-carousel__arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .project-card {
        width: clamp(280px, 80vw, 420px);
    }

    .project-card__content {
        padding: 1.25rem;
    }

    .project-card__title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .project-card__placeholder span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .projects-carousel {
        padding: 3rem 0;
    }
    
    .projects-carousel__header {
        margin-bottom: 2rem;
    }

    .projects-carousel__label-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .projects-carousel__title {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
        margin-bottom: 0.5rem;
        line-height: 1.25;
    }
    
    .projects-carousel__subtitle {
        font-size: 0.9375rem;
    }
    
    .projects-carousel__controls {
        gap: 0.75rem;
    }
    
    .projects-carousel__arrow {
        width: 36px;
        height: 36px;
    }

    .projects-carousel__arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .projects-carousel__wrapper {
        margin: 0 0 2rem;
    }

    .projects-carousel__track {
        gap: 1rem;
    }
    
    .project-card {
        width: clamp(260px, 85vw, 380px);
    }

    .project-card__content {
        padding: 1rem;
    }

    .project-card__title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .project-card__meta {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .project-card__tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

.gallery__header {
    margin-bottom: 3rem;
}

.gallery__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
}

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

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery__image {
    aspect-ratio: 4 / 3;
    transition: transform 0.6s var(--ease);
}

.gallery__image--1 { background: linear-gradient(135deg, #2a3832 0%, #1a2420 100%); }
.gallery__image--2 { background: linear-gradient(135deg, #3d4650 0%, #252a30 100%); }
.gallery__image--3 { background: linear-gradient(135deg, #4a4538 0%, #2d2a22 100%); }
.gallery__image--4 { background: linear-gradient(135deg, #384038 0%, #222822 100%); }
.gallery__image--5 { background: linear-gradient(135deg, #3a3d45 0%, #24262b 100%); }

.gallery__item:hover .gallery__image {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.gallery__item-title {
    font-size: 1rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery__item--wide {
        grid-column: span 2;
    }
}

/* ========================================
   CONTACT - Drivelodge Style
   ======================================== */

.contact {
    padding: 6rem 0;
    background: var(--bg-elevated);
}

.contact__grid {
    display: grid;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    padding-top: 1rem;
}

.contact__title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.contact__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 400px;
}

/* Hours badge - Brand style */
.contact__hours-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: auto;
    padding-top: 3rem;
}

.contact__hours-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 12px;
    color: var(--bg);
    flex-shrink: 0;
}

.contact__hours-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid var(--bg-elevated);
}

.contact__hours-text p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.125rem;
    line-height: 1.5;
}

/* Form - Brand Style */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__row {
    display: grid;
    gap: 1.5rem;
}

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

.form__label {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.form__input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input::placeholder {
    color: var(--text-dim);
}

.form__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__input--textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

/* Submit button - Brand accent style */
.form__submit {
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--bg);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.form__submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.form__submit:active {
    transform: translateY(0);
}

.form__submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Loading Spinner Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form__spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Success */
.form__success {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
}

.form__success.active {
    display: block;
}

.form__success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(200, 168, 85, 0.15);
    color: var(--accent);
    border-radius: 50%;
}

.form__success-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form__success-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Checkbox styling */
.form__group--checkbox {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.form__checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}

.form__checkbox-label a:hover {
    color: var(--accent-hover);
}

.form__checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--bg);
    transition: all 0.3s var(--ease-in-out);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form__checkbox:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__checkbox:checked {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    transform: scale(1.05);
}

.form__checkbox:checked::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    animation: checkmarkPop 0.4s var(--ease);
}

@keyframes checkmarkPop {
    0% {
        opacity: 0;
        transform: rotate(0deg) scale(0.3);
    }
    50% {
        transform: rotate(45deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.form__checkbox:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form.hidden {
    display: none;
}

@media (min-width: 640px) {
    .form__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .contact__grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 6rem;
    }
    
    .contact__info {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }
}

/* ========================================
   CTA FINAL
   ======================================== */

.cta-final {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

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

.cta-final__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   PRE-FOOTER CTA
   ======================================== */

.prefooter {
    padding: 6rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.prefooter__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.prefooter__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.2;
    max-width: 600px;
}

.prefooter__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   FOOTER - Livohaus Style
   ======================================== */

.footer {
    position: relative;
    padding: 0 0 2rem;
    background: var(--bg);
    overflow: hidden;
}

.footer__top-line {
    height: 3px;
    background: var(--accent);
    margin-bottom: 4rem;
}

.footer__main {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 320px;
}

.footer__tagline {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid var(--text);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.footer__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--bg);
    transition: transform 0.3s var(--ease);
}

.footer__cta:hover {
    background: var(--text);
    color: var(--bg);
}

.footer__cta:hover .footer__cta-icon {
    transform: translateX(4px);
}

.footer__col {
    min-width: 0;
}

.footer__heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text);
}

.footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.footer__contact-item svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.footer__contact-item a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer__contact-item a:hover {
    color: var(--text);
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: background 0.3s, color 0.3s;
}

.footer__social:hover {
    background: var(--accent);
    color: var(--bg);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer__copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: var(--text);
}

/* Large brand text at bottom */
.footer__brand-large {
    position: relative;
    margin-top: 2rem;
    text-align: center;
    overflow: hidden;
}

.footer__brand-large span {
    display: block;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.85;
    white-space: nowrap;
    user-select: none;
}

@media (min-width: 768px) {
    .footer__main {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer__main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 6rem;
    }
    
    .footer__tagline {
        font-size: 1.75rem;
    }
}

/* ========================================
   VIDEO MODAL
   ======================================== */


/* Service Modal */
/* Partner Modal */
.partner-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-modal.active {
    pointer-events: auto;
}

.partner-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, 0.95);
    opacity: 0;
    transition: opacity 0.4s;
}

.partner-modal.active .partner-modal__backdrop {
    opacity: 1;
}

.partner-modal__content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    display: flex;
    flex-direction: column;
}

.partner-modal.active .partner-modal__content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.partner-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: color 0.2s, background 0.2s;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.partner-modal__close:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.partner-modal__close:active {
    transform: scale(0.95);
}

.partner-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.partner-modal__header {
    margin-bottom: 30px;
}

.partner-modal__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text);
}

.partner-modal__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.partner-modal__main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.partner-modal__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-modal__section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    padding: 16px 0 12px 0;
    border-top: 1px solid var(--border);
}

.partner-modal__section-title:first-child {
    border-top: none;
    padding-top: 0;
}

.partner-modal__description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.partner-modal__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-modal__list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.partner-modal__list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.partner-modal__cta {
    margin-top: 20px;
}

.partner-modal__contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(200, 168, 85, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.partner-modal__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.partner-modal__contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.partner-modal__contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.partner-modal__contact-item a:hover {
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .partner-modal__content {
        max-width: 95%;
    }

    .partner-modal__body {
        padding: 24px;
    }

    .partner-modal__title {
        font-size: 24px;
    }

    .partner-modal__section-title {
        font-size: 16px;
    }
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal.active {
    pointer-events: auto;
}

.service-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, 0.95);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-modal.active .service-modal__backdrop {
    opacity: 1;
}

.service-modal__content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    display: flex;
    flex-direction: column;
}

.service-modal.active .service-modal__content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.service-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: color 0.2s;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 10;
}

.service-modal__close:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.service-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.service-modal__header {
    margin-bottom: 30px;
}

.service-modal__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.service-modal__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-modal__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}

.service-modal__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-modal__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-modal__details {
    display: none;
    gap: 12px;
}

.service-modal__detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.service-modal__detail-item:first-child {
    border-top: none;
    padding-top: 0;
}

.service-modal__detail-label {
    color: var(--text-muted);
    font-size: 14px;
    min-width: 120px;
}

.service-modal__detail-value {
    color: var(--text);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .service-modal__body {
        padding: 24px;
    }

    .service-modal__main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-modal__title {
        font-size: 24px;
    }

    .service-modal__image {
        aspect-ratio: 16 / 9;
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.video-modal.active {
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 13, 0.95);
    opacity: 0;
    transition: opacity 0.4s;
}

.video-modal.active .video-modal__backdrop {
    opacity: 1;
}

.video-modal__content {
    position: absolute;
    inset: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
}

.video-modal.active .video-modal__content {
    transform: scale(1);
    opacity: 1;
}

.video-modal__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: color 0.2s;
}

.video-modal__close:hover {
    color: var(--accent);
}

.video-modal__player {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.video-modal__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate="fade"] {
    transform: none;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ========================================
   FOCUS & A11Y
   ======================================== */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

.service-interias:hover .process__image-inner{
    transform: scale(1.05);
   
}

.about-intro__stats{
    display:none;
}

