/* ============================================================
   AUTADUBAJ.CZ — Premium Luxury Import Website
   Dark luxury palette · Cinematic layout · Editorial design
   ============================================================ */

/* Font loaded via Fontshare CDN in HTML */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Colors — Dark Luxury */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1c1c1f;
    --bg-elevated: #1e1e21;

    --text-primary: #f0efe9;
    --text-secondary: rgba(240, 239, 233, 0.6);
    --text-tertiary: rgba(240, 239, 233, 0.35);
    --text-accent: #c8a455;

    --accent: #c8a455;
    --accent-light: #dbbf70;
    --accent-dark: #a88a3e;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);

    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    --nav-height: 80px;
    --section-padding: clamp(72px, 9vw, 144px);

    --font-sans:
        "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input {
    font-family: inherit;
}


/* ---------- NAVIGATION ---------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition:
        background var(--transition-smooth),
        box-shadow var(--transition-smooth),
        backdrop-filter var(--transition-smooth);
}

#main-header.scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 60px);
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-logo img {
    height: 32px;
    filter: brightness(1);
    transition: opacity var(--transition-fast);
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-smooth);
}

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

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

/* Nav Dropdown Styles */
.nav-item.has-dropdown {
    position: relative;
    padding: 20px 0; /* extra padding to bridge gap to dropdown */
    margin: -20px 0;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    color: var(--text-primary);
}

.nav-dropdown .dropdown-item::after {
    display: none;
}

.nav-dropdown .dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.nav-dropdown .dropdown-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 164, 85, 0.08); /* accent with low opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: all var(--transition-fast);
}

.nav-dropdown .dropdown-item:hover .dropdown-icon {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.05);
}

.nav-dropdown .dropdown-icon svg {
    width: 26px;
    height: 26px;
}

.nav-dropdown .dropdown-text {
    display: flex;
    flex-direction: column;
}

.nav-dropdown .dropdown-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.nav-dropdown .dropdown-desc {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-cta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-menu-links a {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.mobile-menu-links a:hover {
    color: var(--accent);
}

.mobile-menu-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-sm);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* Slideshow stacking */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 3s ease-out forwards;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.15);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
        linear-gradient(180deg,
            rgba(10, 10, 11, 0.4) 0%,
            rgba(10, 10, 11, 0.15) 30%,
            rgba(10, 10, 11, 0.3) 60%,
            rgba(10, 10, 11, 0.95) 100%);
}

/* AD Watermark Logo */
.hero-ad-watermark {
    position: absolute;
    z-index: 2;
    right: -8%;
    bottom: -12%;
    width: 70%;
    max-width: 900px;
    opacity: 0.07;
    pointer-events: none;
    transform: rotate(-8deg);
    animation: watermarkDrift 20s ease-in-out infinite alternate;
}

.hero-ad-watermark img {
    width: 100%;
    height: auto;
    filter: blur(0.5px);
}

@keyframes watermarkDrift {
    0% {
        transform: rotate(-8deg) translate(0, 0);
    }

    100% {
        transform: rotate(-6deg) translate(-10px, -10px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 clamp(24px, 4vw, 60px);
    padding-bottom: clamp(60px, 8vh, 120px);
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroContentFade 0.8s ease forwards 1.2s;
}

.hero-title {
    font-size: clamp(36px, 6vw, 84px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroContentSlide 1s ease forwards 1.4s;
}

.hero-title-accent {
    font-weight: 600;
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroContentSlide 1s ease forwards 1.6s;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroContentSlide 1s ease forwards 1.8s;
}

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

/* Hero Slide Dots */
.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition:
        background 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.4);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes heroContentFade {
    to {
        opacity: 1;
    }
}

@keyframes heroContentSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    z-index: 3;
    bottom: 32px;
    right: clamp(24px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroContentFade 1s ease forwards 2.5s;
}

.hero-scroll-indicator span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.05);
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-light);
}

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

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

.btn-full {
    width: 100%;
}

/* ---------- SECTION GLOBALS ---------- */
.section {
    position: relative;
    padding: var(--section-padding) clamp(24px, 4vw, 60px);
    max-width: 1440px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--accent);
    font-weight: 600;
}

.section-desc {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    overflow: visible;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-image-block {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.about-image-block:hover .about-img {
    transform: scale(1.04);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 10px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-smooth);
}

.feature-item:hover {
    background: var(--bg-card);
    border-color: var(--border);
}

.feature-item-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: flex;
}

.feature-item-link:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
    transform: translateX(4px);
}

.feature-item-link:hover .feature-icon {
    background: rgba(200, 164, 85, 0.14);
}

.feature-link-arrow {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.feature-item-link:hover .feature-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(200, 164, 85, 0.08);
    color: var(--accent);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.trust-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 400;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* ---------- EDITORIAL BREAK ---------- */
.editorial-break {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-image {
    position: absolute;
    inset: 0;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center 30%;
}

.editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            var(--bg-primary) 0%,
            rgba(10, 10, 11, 0.3) 20%,
            rgba(10, 10, 11, 0.3) 80%,
            var(--bg-primary) 100%);
}

.editorial-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.editorial-quote {
    font-size: clamp(22px, 3.5vw, 44px);
    font-weight: 200;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-style: italic;
    color: var(--text-primary);
    opacity: 0.9;
}

/* ---------- OFFER SECTION (Aktuální nabídka) ---------- */
.offer-section {
    padding-top: clamp(40px, 5vw, 80px);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.offer-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

/* Image container with hover swap */
.offer-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.offer-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.offer-img-hover {
    opacity: 0;
}

.offer-card:hover .offer-img-main {
    opacity: 0;
}

.offer-card:hover .offer-img-hover {
    opacity: 1;
    transform: scale(1.04);
}

/* Card info */
.offer-card-info {
    padding: 20px;
}

.offer-card-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.offer-card-spec {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 400;
}

.offer-card-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}

.offer-price-czk {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-secondary);
}

.offer-card-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
    border: none;
    background: none;
    padding: 0;
    text-decoration: none;
}

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

/* Instagram CTA Block */
.offer-ig-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.offer-ig-preview {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.offer-ig-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-ig-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-ig-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.offer-ig-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    transition: opacity var(--transition-fast);
}

.offer-ig-link:hover {
    opacity: 0.8;
}

/* Offer Responsive */
@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer-ig-block {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .offer-ig-preview {
        width: 100px;
        height: 100px;
    }

    .offer-ig-desc {
        max-width: 100%;
    }
}

/* ---------- CALCULATOR SECTION ---------- */
.calculator-section {
    background: var(--bg-primary);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.calc-input-panel,
.calc-result-panel {
    background: var(--bg-secondary);
    padding: clamp(28px, 3vw, 48px);
}

.calc-header,
.calc-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.calc-header h3,
.calc-result-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.result-currency {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: rgba(200, 164, 85, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.calc-field {
    margin-bottom: 24px;
}

.calc-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 70px 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: border-color var(--transition-fast);
}

.input-wrapper input:focus {
    border-color: var(--accent);
}

.input-wrapper input::placeholder {
    color: var(--text-tertiary);
    font-weight: 300;
}

.input-suffix {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
}

.input-suffix-select {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
    outline: none;
    cursor: pointer;
    padding: 6px;
    appearance: none;
    -webkit-appearance: none;
    width: 50px;
}

.input-suffix-select:focus {
    color: var(--accent);
}

.input-suffix-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Currency Toggle */
.currency-toggle,
.dph-toggle {
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.currency-btn,
.dph-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.currency-btn.active,
.dph-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
}

.currency-btn:hover:not(.active),
.dph-btn:hover:not(.active) {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.calc-rates {
    margin: 28px 0 32px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.rates-title {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

.rates-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rates-grid span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Result Panel */
.calc-result-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-dark) transparent;
    padding-bottom: 20px;
}

.calc-result-list::-webkit-scrollbar {
    width: 3px;
}

.calc-result-list::-webkit-scrollbar-track {
    background: transparent;
}

.calc-result-list::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 3px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.result-label small {
    display: block;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.result-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.result-value.highlight-yellow {
    color: #e8c547;
}

.result-divider {
    height: 1px;
    background: var(--accent);
    opacity: 0.2;
    margin: 8px 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 16px;
    margin-top: 12px;
    border-top: 2px solid var(--accent);
}

.total-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.total-value {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.result-disclaimer {
    font-size: 11px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-top: 8px;
}

/* ---------- ADVANTAGES SECTION ---------- */
.advantages-section {
    overflow: hidden;
}

.advantages-bg-logo {
    position: absolute;
    left: -15%;
    top: 10%;
    width: 60%;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(15deg);
}

.advantages-bg-logo img {
    width: 100%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.advantage-card {
    background: var(--bg-card);
    padding: clamp(32px, 3vw, 48px);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.advantage-card:hover {
    background: var(--bg-card-hover);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- EDITORIAL BREAK ALT ---------- */
.editorial-break-alt {
    height: 50vh;
}

.editorial-break-alt .parallax-img {
    object-position: center 65%;
}

/* ---------- CUSTOMIZATION SECTION ---------- */
.customization-section {
    overflow: visible;
}

.custom-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Before / After Slider */
.ba-slider-wrapper {
    width: 100%;
}

.ba-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    -webkit-user-drag: none;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    bottom: 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 5;
}

.ba-label-before {
    left: 16px;
}

.ba-label-after {
    right: 16px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: var(--accent);
}

.ba-handle-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.ba-handle-circle svg {
    width: 20px;
    height: 20px;
    stroke: var(--bg-primary);
}

/* Custom Services Grid */
.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.custom-service {
    background: var(--bg-card);
    padding: clamp(28px, 2.5vw, 40px);
    border-radius: 0;
    transition: background var(--transition-smooth);
}

.custom-service:hover {
    background: var(--bg-card-hover);
}

.custom-service-num {
    font-size: 28px;
    font-weight: 200;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    opacity: 0.8;
}

.custom-service h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-service p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Custom CTA */
.custom-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.custom-cta-text {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.custom-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--accent);
    transition: all var(--transition-fast);
    padding: 12px 0;
}

.custom-cta-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.custom-cta-link:hover {
    color: var(--accent-light);
}

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

.custom-cta-link-top {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    margin-bottom: 8px;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    overflow: hidden;
}

.contact-bg-logo {
    position: absolute;
    right: -10%;
    top: -5%;
    width: 50%;
    opacity: 0.025;
    pointer-events: none;
    transform: rotate(-12deg);
}

.contact-bg-logo img {
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    background: var(--bg-card);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-smooth);
}

.team-member:hover {
    background: var(--bg-card-hover);
    border-color: var(--border);
    transform: translateY(-4px);
}

.team-photo {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 1px solid var(--border-light);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.05);
    transition: filter var(--transition-smooth);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-name {
    font-size: 17px;
    font-weight: 600;
}

.team-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 4px 0;
}

.team-region {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin: 4px 0 10px;
}

.team-link {
    font-size: 14.5px;
    color: var(--accent);
    transition: opacity var(--transition-fast);
}

.team-link:hover {
    opacity: 0.7;
}

.flag-svg {
    width: 23px;
    height: auto;
    filter: grayscale(80%) opacity(0.85);
    transition: filter var(--transition-fast);
}

.team-member:hover .flag-svg {
    filter: grayscale(0%) opacity(1);
}

/* Contact Main */
.contact-main {
    text-align: center;
    padding-top: 40px;
}

.contact-phone a,
.contact-email a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.contact-phone a {
    font-size: clamp(24px, 3vw, 42px);
}

.contact-email {
    margin-top: 16px;
}

.contact-email a {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    gap: 12px;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: var(--accent);
}

.contact-phone svg,
.contact-email svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-email svg {
    width: 24px;
    height: 24px;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrapper {
    max-width: 100%;
    margin: 80px 0 0;
    padding: 0;
}

.contact-form-header {
    margin-bottom: 48px;
}

.contact-form-header h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-form-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-field label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 400;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: rgba(200, 164, 85, 0.03);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-tertiary);
    font-weight: 300;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

/* Chip / Tile selector */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    position: relative;
    cursor: pointer;
}

.chip input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.chip-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    transition: all var(--transition-fast);
    user-select: none;
    white-space: nowrap;
}

.chip-label::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--border-light);
    background: transparent;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

/* Hover */
.chip:hover .chip-label {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

/* Active / checked */
.chip input[type="radio"]:checked+.chip-label {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(200, 164, 85, 0.06);
}

.chip input[type="radio"]:checked+.chip-label::before {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: inset 0 0 0 3px var(--bg-primary);
}

/* Submit button */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn svg {
    flex-shrink: 0;
}

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

    .contact-form-wrapper {
        margin-top: 48px;
    }

    .form-submit-btn {
        width: 100%;
    }

    .chip-label {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ---------- FOOTER ---------- */
.footer {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer-top {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px clamp(24px, 4vw, 60px);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 0;
    filter: opacity(0.7);
}

.footer-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo-separator {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    user-select: none;
}

.footer-partner-logo {
    height: 44px;
    opacity: 0.5;
    filter: brightness(0.8);
    transition: opacity var(--transition-fast);
    position: relative;
    bottom: 2px;
}

.footer-partner-logo:hover {
    opacity: 0.7;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 360px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-social-link svg {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.footer-social-link:hover svg {
    color: var(--accent);
}

.footer-links h4,
.footer-contact h4,
.footer-partners h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.footer-links a,
.footer-contact a,
.footer-partners a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 0;
    margin: 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-partners a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px clamp(24px, 4vw, 60px);
    border-top: 1px solid var(--border);
}

.footer-bottom span {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-img {
    opacity: 0;
    transform: scale(1.05);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-img.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-container {
        grid-template-columns: 1fr;
    }

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

    .custom-showcase {
        grid-template-columns: 1fr;
    }

    .custom-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hide-on-mobile {
        display: none !important;
    }

    :root {
        --nav-height: 64px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .custom-services-grid {
        grid-template-columns: 1fr;
    }

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

    .team-member {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 18px 20px;
        gap: 18px;
    }

    .contact-bg-logo {
        top: 25%;
        opacity: 0.04;
    }

    .team-photo {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
        margin: 0;
    }

    .team-info {
        align-items: flex-start;
        gap: 3px;
    }

    .team-name {
        font-size: 15px;
    }

    .team-lang {
        justify-content: flex-start;
        margin: 2px 0;
    }

    .flag-svg {
        width: 18px;
    }

    .team-region {
        font-size: 13px;
        margin: 2px 0 6px;
    }

    .team-link {
        font-size: 13px;
    }

    .trust-strip {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

    .trust-strip {
        flex-direction: column;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-ad-watermark {
        width: 120%;
        right: -30%;
        bottom: -20%;
    }

    .calc-rates .rates-grid {
        flex-direction: column;
        gap: 6px;
    }

    .ba-slider {
        aspect-ratio: 4/3;
    }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ---------- SELECTION ---------- */
::selection {
    background: rgba(200, 164, 85, 0.3);
    color: var(--text-primary);
}

/* ---------- REMOVE SPINNER ON NUMBER INPUT ---------- */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}