:root {
    --bg-color: #0b0c10;
    --bg-alt: #13151a;
    --text-primary: #ffffff;
    --text-secondary: #a0aab2;
    --accent: #C49A3C;
    --accent-glow: rgba(196, 154, 60, 0.18);
    --hover-red: #ff3b30;
    --hover-red-glow: rgba(255, 59, 48, 0.3);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

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

/* Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(11, 12, 16, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

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

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

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

.mobile-only-btn {
    display: none;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: var(--transition);
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-color: var(--glass-border);
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-glass {
    background: rgba(196, 154, 60, 0.1);
    color: #ffffff;
    border: 1px solid rgba(196, 154, 60, 0.5);
    box-shadow: 0 0 20px rgba(196, 154, 60, 0.15), inset 0 0 20px rgba(196, 154, 60, 0.04);
    backdrop-filter: blur(8px);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(196, 154, 60, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-glass:hover {
    background: rgba(196, 154, 60, 0.18);
    border-color: rgba(196, 154, 60, 0.85);
    box-shadow: 0 0 30px rgba(196, 154, 60, 0.35), inset 0 0 20px rgba(196, 154, 60, 0.08);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-glass:hover::before {
    left: 120%;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.dark-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Hero with Animated Background */


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(11, 12, 16, 0.45) 0%,
            rgba(11, 12, 16, 0.65) 40%,
            rgba(11, 12, 16, 0.92) 75%,
            rgba(11, 12, 16, 1) 100%);
    z-index: 1;
}

.hero-container {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.hero-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 154, 60, 0.4);
    background: rgba(196, 154, 60, 0.08);
    color: #C49A3C;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.hero-price-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C49A3C;
    box-shadow: 0 0 6px rgba(196, 154, 60, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero-title {
    font-size: clamp(1rem, 3.8vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0AAB2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: calc(15vh + 3.5cm);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2.5rem;
}

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

.services-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.services-scroll-wrapper .fade-left,
.services-scroll-wrapper .fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: none;
    transition: opacity 0.25s ease;
}

.services-scroll-wrapper .fade-left {
    left: 0;
    background: linear-gradient(to right, #13151a 40%, transparent);
}

.services-scroll-wrapper .fade-right {
    right: 0;
    background: linear-gradient(to left, #13151a 40%, transparent);
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(196, 154, 60, 0.4);
    background: #1d1710;
    color: #C49A3C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(8px);
}

.scroll-arrow:hover {
    background: #2a2114;
    border-color: rgba(196, 154, 60, 0.8);
}

.scroll-arrow--left  { left: 8px; display: none; }
.scroll-arrow--right { right: 8px; }

.service-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    scrollbar-width: none;
}

.service-grid::-webkit-scrollbar {
    display: none;
}

.service-grid .service-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

@media (min-width: 769px) {
    .service-grid .service-card.animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

.carousel-dots {
    display: none;
}

/* Glassmorphism Cards */
.card,
.service-card,
.box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Red Hover Effect for Problem Cards */
.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--hover-red);
    box-shadow: 0 10px 40px var(--hover-red-glow);
    background: rgba(255, 59, 48, 0.03);
}

.problem-card .card-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: var(--transition);
}

.problem-card:hover .card-icon {
    color: var(--hover-red);
    opacity: 1;
    text-shadow: 0 0 20px var(--hover-red-glow);
}

.problem-card p {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    font-size: 1.15rem;
}

/* Service Cards */
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.services-note {
    max-width: 760px;
    margin: 3rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}


/* Timeline / Process */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: var(--line-height, 100%);
    width: 2px;
    background: var(--glass-border);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 24px;
    height: 40px;
    width: 2px;
    background: var(--accent);
    z-index: 1;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-glow);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-secondary);
    z-index: 3;
    transition: var(--transition);
}

.timeline-item.active .timeline-number {
    border-color: var(--accent);
    background-color: var(--bg-color);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.1);
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.timeline-item.active .timeline-content h3 {
    color: var(--accent);
}

/* About Box */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.meta-text {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-alt);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-img-footer {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-img-footer:hover {
    opacity: 1;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-copy {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.comparison-bad {
    border-color: rgba(255, 59, 48, 0.2);
}

.comparison-bad:hover {
    border-color: var(--hover-red);
    box-shadow: 0 10px 40px var(--hover-red-glow);
    background: rgba(255, 59, 48, 0.03);
}

.comparison-good {
    border-color: rgba(196, 154, 60, 0.25);
}

.comparison-good:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--accent-glow);
    background: rgba(196, 154, 60, 0.03);
}

.comparison-label {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
    display: block;
}

.bad-label {
    color: var(--hover-red);
}

.good-label {
    color: var(--accent);
}

.comparison-label-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: block;
    opacity: 0.6;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
}

.comparison-bad .comparison-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--hover-red);
    font-size: 0.75rem;
    top: 0.2em;
    font-weight: 700;
}

.comparison-good .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.9rem;
    top: 0.05em;
    font-weight: 700;
}

/* Trust Section */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.trust-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-badge:hover {
    border-color: rgba(196, 154, 60, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.trust-badge-icon {
    display: inline-flex;
    padding: 1rem;
    background: rgba(196, 154, 60, 0.08);
    border-radius: 12px;
    color: var(--accent);
}

.trust-badge-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.trust-badge-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-detail {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.trust-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: rgba(196, 154, 60, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* Animations that POP */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up {
    transform: translateY(50px) scale(0.95);
}

.fade-left {
    transform: translateX(50px) scale(0.95);
}

.fade-right {
    transform: translateX(-50px) scale(0.95);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Badge icon accent */
.badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem;
    }

    .section {
        padding: var(--section-padding) 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-only-btn {
        display: none;
    }

    .mobile-only-btn {
        display: inline-flex;
        width: 100%;
        margin-top: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
        padding: 2rem;
    }

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

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

    /* Hero Section */
    .hero {
        padding-top: 80px;
    }

    .hero-container {
        margin-top: 1cm;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: calc(15vh + 5cm);
    }

    .hero-cta .btn {
        width: auto;
        font-size: 0.8rem;
        padding: 0.6rem 1.1rem;
    }

    .hero-badges {
        margin-top: 3rem;
        gap: 0.8rem;
    }

    .badge {
        width: auto;
        font-size: 0.68rem;
        padding: 0.35rem 0.7rem;
    }

    /* Grids & Cards */
    .problem-grid,
    .service-grid,
    .comparison-grid,
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service cards — 3D coverflow carousel on mobile */
    .services-scroll-wrapper {
        overflow: visible;
    }

    .service-grid {
        display: block !important;
        position: relative !important;
        perspective: 1100px;
        overflow: visible;
        overflow-y: visible;
        margin: 0;
        padding: 0;
        grid-template-columns: unset !important;
        scroll-snap-type: none;
        touch-action: pan-y;
    }

    .services-scroll-wrapper .fade-left,
    .services-scroll-wrapper .fade-right,
    .scroll-arrow {
        display: none !important;
    }

    .service-grid .service-card {
        position: absolute !important;
        flex: unset !important;
        width: 76vw;
        max-width: 300px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease;
        grid-column: auto !important;
        cursor: pointer;
        will-change: transform, opacity;
        user-select: none;
        -webkit-user-select: none;
    }

    /* Carousel dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: none;
        cursor: pointer;
        transition: background 0.25s, transform 0.25s;
        padding: 0;
    }

    .carousel-dot.active {
        background: #C49A3C;
        transform: scale(1.4);
    }

    .card,
    .service-card,
    .box,
    .comparison-card,
    .trust-badge {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
    }

    /* Timeline */
    .timeline::before {
        left: 17px;
    }

    .timeline-progress {
        left: 17px;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 3rem;
    }

    .timeline-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
    }

    .timeline-content p {
        font-size: 1rem;
    }

    /* About & Footer */
    .about-content p {
        font-size: 1.1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}
/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    animation: modalAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: white;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Form Styles */
.lead-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--bg-color);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.hidden {
    display: none;
}

/* Service Card — Vorher/Nachher */
.service-card-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0 1.2rem;
}

.service-grid .service-card:nth-child(2) .service-card-divider,
.service-grid .service-card:nth-child(3) .service-card-divider {
    margin-top: calc(1.5rem + 28px);
}

.service-grid .service-card:nth-child(5) .service-card-divider {
    margin-top: calc(1.5rem + 56px);
}

.service-before,
.service-after {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.service-before {
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

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

.service-before-icon {
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 0.15rem;
    color: var(--hover-red);
}

.service-after-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 0.05rem;
    color: var(--accent);
}

/* ========================
   QUIZ
   ======================== */

.quiz-progress-wrap {
    max-width: 680px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.quiz-progress-track {
    height: 3px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-step-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quiz-stage {
    display: grid;
}

.quiz-stage > * {
    grid-area: 1 / 1;
}

.quiz-completion:not(.hidden) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    animation: quizEnterFromRight 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.quiz-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.quiz-question-card,
.quiz-awareness-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

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

@keyframes quizEnterFromLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes quizExitToLeft {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(-20px); }
}

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

.quiz-q-number {
    font-size: 0.73rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quiz-q-text {
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 1.75rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.93rem;
    font-family: var(--font-main);
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    line-height: 1.4;
}

.quiz-option:hover {
    border-color: rgba(196, 154, 60, 0.45);
    color: var(--text-primary);
    background: rgba(196, 154, 60, 0.04);
}

.quiz-option.selected {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--accent-glow);
}

.quiz-option-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
    position: relative;
}

.quiz-option.selected .quiz-option-dot {
    background: var(--accent);
    border-color: var(--accent);
}

.quiz-option.selected .quiz-option-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--bg-color);
}

.quiz-freetext {
    margin-bottom: 1.4rem;
}

.quiz-freetext input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-main);
    transition: border-color 0.15s, color 0.15s;
}

.quiz-freetext input::placeholder {
    color: rgba(160, 170, 178, 0.38);
    font-style: italic;
}

.quiz-freetext input:focus {
    outline: none;
    border-color: rgba(196, 154, 60, 0.5);
    color: var(--text-primary);
}

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

.quiz-nav--center {
    justify-content: center;
}

.quiz-back-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-main);
    cursor: pointer;
    padding: 0.5rem 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.6;
    transition: opacity 0.15s, color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.quiz-back-btn:hover {
    opacity: 1;
    color: var(--text-primary);
}

.quiz-next-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    gap: 0.35rem;
}

.quiz-next-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Awareness moment */
.quiz-awareness-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    animation: quizFadeIn 0.5s ease both;
}

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

.quiz-awareness-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid rgba(196, 154, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: var(--accent);
}

.quiz-awareness-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-awareness-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Profile sidebar */
.quiz-profile-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem;
    position: sticky;
    top: 110px;
}

.quiz-profile-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.quiz-profile-placeholder {
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.35;
    font-style: italic;
    text-align: center;
    padding: 1.5rem 0;
}

.quiz-profile-list {
    display: flex;
    flex-direction: column;
}

.quiz-profile-entry {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.45;
    animation: profileIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.quiz-profile-entry:last-child {
    border-bottom: none;
}

.quiz-profile-label {
    border: 1.5px solid var(--accent);
    border-radius: 3px;
    background: var(--accent-glow);
    padding: 0.05rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

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

/* Result card */
.quiz-result {
    min-width: 0;
}

.quiz-result-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
}

.quiz-result-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-recs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.quiz-rec-item {
    background: var(--accent-glow);
    border: 1px solid rgba(196, 154, 60, 0.22);
    border-radius: 14px;
    padding: 1.5rem;
}

.quiz-rec-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.quiz-rec-reason {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0.625rem;
}

.quiz-rec-desc {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.quiz-result-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.quiz-result-cta p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Inline contact form */
.quiz-contact {
    min-width: 0;
}

.quiz-contact-intro {
    margin-bottom: 2rem;
}

.quiz-contact-intro h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.quiz-lead-form {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem;
}

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

@media (max-width: 768px) {
    .quiz-layout {
        grid-template-columns: 1fr;
    }

    .quiz-completion:not(.hidden) {
        grid-template-columns: 1fr;
    }

    .quiz-q-text {
        font-size: 1.25rem;
    }

    .quiz-result-card {
        padding: 2rem 1.5rem;
    }

    .quiz-lead-form .form-grid {
        grid-template-columns: 1fr;
    }

    .quiz-profile-card {
        position: static;
    }
}
