/* ============================================================
   DIGITIGER — Colorful One-Pager
   Mobile-first, micro-interactions, scroll-snap
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #7B2FF7;
    --primary-light: #9D5CFF;
    --primary-dark: #5A1DB8;
    --secondary: #FF6B2C;
    --secondary-light: #FF8F5C;
    --accent-pink: #FF3B8B;
    --accent-yellow: #FFD166;
    --accent-cyan: #00D4FF;
    --accent-green: #06D6A0;

    --bg-dark: #08081A;
    --bg-surface: #0E0E28;
    --bg-card: #161640;
    --bg-card-hover: #1E1E50;

    --text: #FFFFFF;
    --text-secondary: #B8B8D4;
    --text-muted: #9090AC;

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 100px;

    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.3s var(--ease-out);
}

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

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
address { font-style: normal; }

/* ---- Scroll Progress ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink), var(--secondary));
    z-index: 1000;
    transform: scaleX(0);
    transform-origin: left;
    transition: none;
}

/* ---- Site Logo (fixed top-left) ---- */
.site-logo {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.8; }
.site-logo img {
    width: 36px;
    height: 36px;
    transition: transform var(--transition);
}
.site-logo:hover img { transform: scale(1.08); }

/* ---- Curtain Splash ---- */
.curtain {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}
.curtain.is-hidden { display: none; }
.curtain-logo {
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: scale(0.7);
    animation: curtain-logo-in 0.8s var(--ease-spring) 0.2s forwards;
}
.curtain-name {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    animation: curtain-text-in 0.6s var(--ease-out) 0.7s forwards;
}
.curtain-name span {
    background: linear-gradient(135deg, var(--secondary), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.curtain.is-leaving {
    animation: curtain-exit 0.6s var(--ease-out) forwards;
}
@keyframes curtain-logo-in {
    to { opacity: 1; transform: scale(1); }
}
@keyframes curtain-text-in {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes curtain-exit {
    to { opacity: 0; pointer-events: none; }
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section Base ---- */
.section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.section-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
}
.glow-purple { background: radial-gradient(circle 350px at 90% 10%, rgba(123, 47, 247, 0.15), transparent); }
.glow-orange { background: radial-gradient(circle 350px at 10% 20%, rgba(255, 107, 44, 0.15), transparent); }
.glow-pink { background: radial-gradient(circle 350px at 95% 10%, rgba(255, 59, 139, 0.15), transparent); }
.glow-cyan { background: radial-gradient(circle 350px at 8% 90%, rgba(0, 212, 255, 0.15), transparent); }
.glow-green { background: radial-gradient(circle 350px at 92% 15%, rgba(6, 214, 160, 0.15), transparent); }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition);
}
.btn:hover::after {
    background: rgba(255,255,255,0.1);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    box-shadow: 0 4px 24px rgba(123, 47, 247, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(123, 47, 247, 0.5);
}

/* ---- Sidebar Navigation ---- */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(14, 14, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 900;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -webkit-transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 32px 32px;
}
.sidebar.open {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}
.sidebar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color var(--transition), transform var(--transition);
    border-radius: 50%;
}
.sidebar-close:hover {
    color: var(--text);
    transform: rotate(90deg);
}
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sidebar-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.sidebar-logo span {
    background: linear-gradient(135deg, var(--secondary), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    position: relative;
}
.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition);
}
.sidebar-link:hover,
.sidebar-link.active {
    color: var(--text);
    background: rgba(123, 47, 247, 0.08);
}
.sidebar-link.active::before,
.sidebar-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}
.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}
.sidebar-nexpec {
    color: var(--accent-yellow);
}
.sidebar-nexpec:hover {
    color: var(--secondary);
    background: rgba(255, 107, 44, 0.08);
}
.sidebar-nexpec::before { display: none; }

/* Sidebar Toggle */
.sidebar-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(14, 14, 40, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.sidebar-toggle:hover {
    background: rgba(14, 14, 40, 0.9);
    border-color: var(--border-hover);
}
.sidebar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
}
.sidebar-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.sidebar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.sidebar-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar backdrop */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 850;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.sidebar-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ---- HERO ---- */
.hero {
    background: radial-gradient(ellipse at 50% 20%, rgba(123, 47, 247, 0.15) 0%, transparent 60%),
                var(--bg-dark);
    padding-top: 60px;
    text-align: center;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    will-change: transform;
    transform: translateZ(0);
}
.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    right: -80px;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-pink);
    bottom: 10%;
    left: -60px;
    animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    top: 30%;
    right: 10%;
    animation: float 7s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 720px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(123, 47, 247, 0.15);
    transition: box-shadow 0.5s;
}
.hero-video-wrapper:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(123, 47, 247, 0.25);
}

/* Vimeo background video — overlay hides all player UI */
.vimeo-bg-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--bg-surface);
}
.vimeo-bg-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: var(--bg-surface);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.video-facade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-facade.loaded .video-facade-thumb {
    display: none;
}

/* ---- ORDER FORM DOWNLOAD BUTTON ---- */
.order-download {
    text-align: center;
    margin-top: 32px;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
}
.btn-download:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-light);
    color: var(--primary-light);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(123, 47, 247, 0.15);
}
.btn-download svg {
    flex-shrink: 0;
}

/* ---- VIDEO COMPARISON SELECTORS ---- */
.vc-scene-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.vc-scene-btn {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.vc-scene-btn:hover {
    border-color: var(--secondary);
    color: var(--text);
}
.vc-scene-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 44, 0.3);
}

.vc-tier-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.vc-tier-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.vc-tier-btn {
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.vc-tier-btn:hover {
    border-color: var(--primary);
    color: var(--text);
}
.vc-tier-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(123, 47, 247, 0.3);
}

@media (max-width: 600px) {
    .vc-scene-btn {
        padding: 6px 14px;
        font-size: 0.78rem;
    }
    .vc-tier-btn {
        padding: 5px 14px;
        font-size: 0.75rem;
    }
    .vc-tier-label {
        flex-basis: 100%;
        text-align: center;
    }
}

/* ---- VIDEO COMPARISON WIDGET WRAPPER ---- */
.video-comparison-wrapper {
    max-width: 960px;
    margin: 0 auto;
}
.video-comparison-wrapper .vc-container {
    width: 100%;
    height: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 900px) {
    .video-comparison-wrapper .vc-container {
        height: 400px;
        border-radius: var(--radius-md);
    }
}
@media (max-width: 600px) {
    .video-comparison-wrapper .vc-container {
        height: 280px;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero-title-digi {
    color: var(--text);
}
.hero-title-tiger {
    background: linear-gradient(135deg, var(--secondary), var(--accent-yellow), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}
.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 400;
}
.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-cta {
    margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 4px;
    animation: scroll-dot 2s ease-in-out infinite;
}

/* ---- MARQUEE ---- */
.marquee {
    background: linear-gradient(90deg, var(--primary), var(--accent-pink), var(--secondary));
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    /* scroll-snap removed */
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: marquee 20s linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.marquee-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- FORMAT TAGS ---- */
.format-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: default;
}
.tag-active {
    border-color: rgba(123, 47, 247, 0.3);
    color: var(--text);
}
.tag:hover {
    border-color: var(--primary);
    background: rgba(123, 47, 247, 0.08);
    color: var(--text);
    transform: translateY(-1px);
}
/* Tag hover image tooltip */
.tag[data-img] {
    position: relative;
    cursor: pointer;
}
.tag-img-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 180px;
    aspect-ratio: 7 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
    border: 1px solid rgba(123, 47, 247, 0.25);
    z-index: 50;
    background: var(--bg-surface);
}
.tag-img-tooltip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tag[data-img]:hover .tag-img-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* Mobile: show on tap via .tag-active-tooltip class */
@media (max-width: 768px) {
    .tag[data-img]:hover .tag-img-tooltip {
        opacity: 0;
        transform: translateX(-50%) translateY(6px);
    }
    .tag[data-img].tag-show-img .tag-img-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.tag-more {
    cursor: pointer;
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}
.tag-more:hover {
    background: rgba(255, 209, 102, 0.1);
    border-color: var(--accent-yellow);
}
.format-tags-extra {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: fadeInUp 0.4s var(--ease-out);
}
.format-tags-extra.visible {
    display: flex;
}
.tag-note {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- INFO BADGE ---- */
.info-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(123, 47, 247, 0.08);
    border: 1px solid rgba(123, 47, 247, 0.2);
    color: var(--primary-light);
    font-size: 0.85rem;
    margin: 0 auto 32px;
    max-width: 600px;
    text-align: center;
    justify-content: center;
}

/* ---- PRICE CARDS ---- */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.price-cards-duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    transition: background var(--transition);
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-popular::before {
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
}
.card-popular {
    border-color: rgba(123, 47, 247, 0.25);
}
.card-popular:hover {
    border-color: rgba(123, 47, 247, 0.5);
    box-shadow: 0 20px 40px rgba(123, 47, 247, 0.15);
}

.card-premium::before {
    background: linear-gradient(90deg, var(--secondary), var(--accent-yellow));
}
.card-premium {
    border-color: rgba(255, 107, 44, 0.2);
}
.card-premium:hover {
    border-color: rgba(255, 107, 44, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 44, 0.1);
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    margin-bottom: 12px;
}
.card-popular .card-badge {
    background: rgba(123, 47, 247, 0.15);
    color: var(--primary-light);
}
.card-premium .card-badge {
    background: rgba(255, 107, 44, 0.15);
    color: var(--secondary-light);
}

.card-tier {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 40px;
}
.card-price {
    margin-bottom: 20px;
}
.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: block;
}
.card-popular .price-amount {
    color: var(--primary-light);
}
.card-premium .price-amount {
    color: var(--secondary-light);
}
.price-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.price-extra {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-yellow);
    margin-top: 4px;
}

.card-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}
.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.card-popular .card-features li::before {
    background: rgba(123, 47, 247, 0.4);
}
.card-premium .card-features li::before {
    background: rgba(255, 107, 44, 0.4);
}

/* ---- ADDON BANNER (Tonfilm option) ---- */
.addon-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 560px;
    margin: 32px auto 0;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.08) 0%, rgba(123, 47, 247, 0.06) 100%);
    border: 1px solid rgba(255, 107, 44, 0.2);
    overflow: hidden;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}
.addon-banner:hover {
    border-color: rgba(255, 107, 44, 0.35);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 44, 0.1);
}
.addon-banner-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.addon-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.15), rgba(255, 107, 44, 0.05));
    border: 1px solid rgba(255, 107, 44, 0.2);
    color: var(--secondary);
}
.addon-banner-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.addon-banner-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.addon-banner-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.addon-banner-badge {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: white;
}

/* ---- COMPARISON / JUXTAPOSE ---- */
.comparison-section {
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 44, 0.08) 0%, transparent 50%),
                var(--bg-dark);
}
.comparison-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.comp-tab {
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}
.comp-tab:hover {
    border-color: var(--primary);
    color: var(--text);
}
.comp-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(123, 47, 247, 0.3);
}

/* ---- IMAGE COMPARISON SELECTORS ---- */
.ic-scene-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.ic-scene-btn {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.ic-scene-btn:hover { border-color: var(--accent-cyan); color: var(--text); }
.ic-scene-btn.active {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: #08081A;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.ic-tier-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.ic-tier-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ic-tier-btn {
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.ic-tier-btn:hover { border-color: var(--primary); color: var(--text); }
.ic-tier-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(123, 47, 247, 0.3);
}

@media (max-width: 600px) {
    .ic-scene-btn { padding: 6px 14px; font-size: 0.78rem; }
    .ic-tier-btn { padding: 5px 14px; font-size: 0.75rem; }
    .ic-tier-label { flex-basis: 100%; text-align: center; }
}

/* ---- IMAGE COMPARISON WIDGET ---- */
.ic-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.ic-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    cursor: ew-resize;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.ic-img-layer {
    display: block;
}
.ic-img-layer img {
    display: block;
    width: 100%;
    height: auto;
}
.ic-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    -webkit-clip-path: inset(0 50% 0 0);
}
.ic-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ic-after {
    position: relative;
    z-index: 1;
}
.ic-splitter {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 10;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
.ic-splitter-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(123, 47, 247, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.ic-splitter-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
}
.ic-label {
    position: absolute;
    bottom: 12px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: white;
    z-index: 11;
    pointer-events: none;
}
.ic-label-left { left: 12px; }
.ic-label-right { right: 12px; }

@media (hover: none) and (pointer: coarse) {
    .ic-splitter { width: 24px; background: transparent; }
    .ic-splitter::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: white;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    }
    .ic-splitter-handle { width: 44px; height: 44px; }
}

.comparison-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- EXTRAS GRID V2 (Dias & Fotos) ---- */
.extras-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 32px auto 0;
}
.extra-card-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border);
    -webkit-transition: all 0.4s var(--ease-out);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}
.extra-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
    opacity: 0;
    -webkit-transition: opacity 0.4s var(--ease-out);
    transition: opacity 0.4s var(--ease-out);
}
.extra-card-v2:hover {
    background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border-color: var(--border-hover);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.extra-card-v2:hover::before {
    opacity: 1;
}
.extra-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 16px;
    position: relative;
}
.extra-card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.15;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    z-index: -1;
    /* GPU-promote to avoid iOS repaint jitter */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.extra-card-icon--purple {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15), rgba(157, 92, 255, 0.08));
    border: 1px solid rgba(123, 47, 247, 0.25);
    color: var(--primary-light);
}
.extra-card-icon--purple::after {
    background: var(--primary);
}
.extra-card-icon--cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--accent-cyan);
}
.extra-card-icon--cyan::after {
    background: var(--accent-cyan);
}
.extra-card-icon--orange {
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.15), rgba(255, 143, 92, 0.05));
    border: 1px solid rgba(255, 107, 44, 0.25);
    color: var(--secondary-light);
}
.extra-card-icon--orange::after {
    background: var(--secondary);
}
.extra-card-body {
    flex: 1;
    margin-bottom: 12px;
}
.extra-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.extra-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.extra-card-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-yellow);
}
.extra-card-price small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
}
.extra-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: rgba(123, 47, 247, 0.12);
    border: 1px solid rgba(123, 47, 247, 0.2);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--primary-light);
    text-transform: uppercase;
}

/* keep old class for backwards compat in case used elsewhere */
.extras-grid { display: none; }

/* ---- AUDIO PRICING ---- */
.audio-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 740px;
    margin: 0 auto;
}
.audio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}
.audio-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.audio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.plus-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent-yellow));
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}
.audio-card-plus {
    border-color: rgba(255, 107, 44, 0.2);
    overflow: hidden;
}
.audio-card-plus::before {
    content: '';
    display: block;
    height: 3px;
    margin: -29px -25px 24px;
    background: linear-gradient(90deg, var(--secondary), var(--accent-yellow));
}
.audio-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.audio-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.audio-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.audio-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.audio-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    white-space: nowrap;
}

/* ---- TRUST SECTION ---- */
.trust-section {
    min-height: auto;
    padding: 48px 0 40px;
    /* scroll-snap removed */
    background: linear-gradient(180deg, transparent, rgba(123, 47, 247, 0.03), transparent);
}
.trust-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.trust-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.trust-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}
/* ---- Logo Carousel ---- */
.logo-carousel {
    max-width: 560px;
    margin: 20px auto 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    padding: 12px 0;
}
.logo-carousel-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-carousel-img {
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6) invert(0.8);
    opacity: 0.45;
    flex-shrink: 0;
}
/* Per-logo sizing: tuned so visible text/icon has equal visual weight */
.logo-roche    { width: 80px;  height: 42px; }
.logo-novartis { width: 130px; height: 22px; }
.logo-hdm      { width: 90px;  height: 32px; object-fit: cover; }
.logo-oris     { width: 80px;  height: 48px; }

@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- FAQ ---- */
.faq-section {
    background: radial-gradient(ellipse at 50% 80%, rgba(123, 47, 247, 0.06) 0%, transparent 50%),
                var(--bg-dark);
    min-height: auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-cat-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover {
    border-color: var(--border-hover);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: background var(--transition);
}
.faq-question:hover {
    background: rgba(255,255,255,0.02);
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out);
    color: var(--text-muted);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 16px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ filter tags */
.faq-filter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 20px 0 12px;
}
.faq-filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.faq-tag {
    cursor: pointer;
    transition: all var(--transition);
}
.faq-tag.active {
    border-color: var(--primary);
    background: rgba(123, 47, 247, 0.15);
    color: var(--text);
    box-shadow: 0 0 12px rgba(123, 47, 247, 0.2);
}
.faq-cat-section {
    animation: faqFadeIn 0.35s ease;
}
.faq-cat-section[hidden] {
    display: none;
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- CONTACT CTA ---- */
.contact-cta-section {
    min-height: auto;
    padding: 60px 0;
}
.contact-cta {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.contact-cta-info {
    background: linear-gradient(160deg, rgba(123,47,247,0.15) 0%, rgba(123,47,247,0.04) 100%);
    border: 1px solid rgba(123,47,247,0.15);
    border-right: none;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
}
.contact-cta-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-cta-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(123,47,247,0.3);
}
.contact-cta-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
}
.contact-cta-role {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.contact-cta-points {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-cta-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.contact-cta-points svg {
    flex-shrink: 0;
    color: var(--primary-light);
}
.contact-cta-channels {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.contact-cta-channels-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    transition: color var(--transition);
}
.contact-cta-link:hover {
    color: var(--text);
}
.contact-cta-whatsapp {
    color: #25D366;
    font-weight: 500;
}
.contact-cta-whatsapp:hover {
    color: #128C7E;
}
.contact-cta-hint {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}
.contact-cta-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    padding: 44px 40px;
}
.contact-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 28px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-field label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-bottom-color: var(--primary);
}
.contact-form-field textarea {
    min-height: 80px;
}
.contact-form-submit {
    align-self: flex-end;
}
@media (max-width: 768px) {
    .contact-cta {
        grid-template-columns: 1fr;
    }
    .contact-cta-info {
        border-right: 1px solid rgba(123,47,247,0.15);
        border-bottom: none;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
    .contact-cta-form {
        border-left: 1px solid var(--border);
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* ---- FOOTER ---- */
.footer-section {
    min-height: auto;
    padding: 60px 0 0;
    /* scroll-snap removed */
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.footer-logo span {
    background: linear-gradient(135deg, var(--secondary), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.footer-cta {
    margin-bottom: 12px;
}
.footer-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-phone:hover {
    color: var(--primary-light);
}

.footer-address h4,
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-address address {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.footer-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    flex-direction: column;
}
.footer-links a {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-legal a:hover {
    color: var(--text);
}

/* ---- ANIMATIONS ---- */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-dot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

@keyframes ripple {
    to { transform: scale(2); opacity: 0; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .section {
        min-height: auto;
        padding: 60px 0;
        /* Remove overflow:hidden on mobile — fights iOS scroll momentum */
        overflow: visible;
    }
    .hero {
        /* Use 100vh not dvh — dvh recalculates on address bar show/hide causing jump */
        min-height: 100vh;
        /* iOS: lock hero height so address bar toggle doesn't resize it */
        min-height: -webkit-fill-available;
        overflow: hidden;  /* hero keeps overflow hidden for video */
    }

    /* Lighter reveal animations on mobile — reduce transform distance */
    .reveal {
        -webkit-transform: translateY(16px);
        transform: translateY(16px);
        -webkit-transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
        transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }

    /* Kill floating/gradient animations on mobile — causes iOS scroll jitter */
    .deco-shape,
    .shape {
        animation: none !important;
        will-change: auto;
    }
    .section-divider {
        animation: none !important;
        background-size: 100% 100%;
    }
    .section-glow {
        animation: none !important;
    }

    .price-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    .price-cards-duo {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

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

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

    .audio-pricing {
        grid-template-columns: 1fr;
    }

    .extras-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 12px;
        margin: 24px auto 0;
    }
    .extra-card-v2 {
        flex-direction: row;
        align-items: center;
        padding: 16px;
        gap: 14px;
    }
    .extra-card-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
        border-radius: 12px;
        margin-bottom: 0;
    }
    .extra-card-icon svg {
        width: 24px;
        height: 24px;
    }
    .extra-card-body {
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
    }
    .extra-card-title {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    .extra-card-desc {
        font-size: 0.76rem;
    }
    .extra-card-price {
        flex-shrink: 0;
        font-size: 0.9rem;
    }
    .extra-card-tag {
        top: 8px;
        right: 8px;
        padding: 2px 8px;
        font-size: 0.6rem;
    }
    /* Addon banner mobile */
    .addon-banner {
        max-width: 100%;
        padding: 14px 16px;
        gap: 12px;
        margin: 20px auto 0;
    }
    .addon-banner-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
    .addon-banner-icon svg {
        width: 20px;
        height: 20px;
    }
    .addon-banner-label {
        font-size: 0.82rem;
    }
    .addon-banner-desc {
        font-size: 0.72rem;
    }
    .addon-banner-badge {
        padding: 3px 10px;
        font-size: 0.62rem;
    }
    .addon-banner-glow {
        display: none;
    }
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-title {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .hero-video-wrapper {
        border-radius: var(--radius-md);
    }

    .sidebar {
        width: 100%;
        left: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg-surface);
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        transition: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        /* Extend behind iOS notch + home indicator */
        padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
        border-left: none;
    }

    .marquee-track {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .price-card {
        padding: 24px 20px;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .comparison-tabs {
        gap: 4px;
    }
    .comp-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    /* Addon banner — small phones: stack vertically */
    .addon-banner {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }
    .addon-banner-content {
        flex: 1 1 calc(100% - 58px);
    }
    .addon-banner-badge {
        margin-left: auto;
    }

    /* Extra cards — tighter on small phones */
    .extra-card-v2 {
        padding: 14px 12px;
        gap: 12px;
    }
    .extra-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        border-radius: 10px;
    }
    .extra-card-icon svg {
        width: 20px;
        height: 20px;
    }
    .extra-card-title {
        font-size: 0.85rem;
    }
    .extra-card-desc {
        font-size: 0.72rem;
    }
    .extra-card-price {
        font-size: 0.85rem;
    }
    .extra-card-price small {
        font-size: 0.65rem;
    }
}

/* ---- ULTRA-SMALL SCREENS (iPhone SE, Galaxy S series, ≤375px) ---- */
@media (max-width: 375px) {
    .addon-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    .addon-banner-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }
    .addon-banner-badge {
        align-self: flex-start;
    }

    .extra-card-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
        gap: 10px;
    }
    .extra-card-icon {
        margin-bottom: 0;
    }
    .extra-card-price {
        font-size: 0.9rem;
    }
    .extra-card-tag {
        position: static;
        align-self: flex-start;
        margin-top: -4px;
    }
}

/* ---- MOBILE PRICE CAROUSEL OPTION ---- */
@media (max-width: 900px) {
    .price-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        max-width: 100%;
        padding: 4px 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .price-cards::-webkit-scrollbar { display: none; }
    .price-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
    }
    .price-cards-duo .price-card {
        flex: 0 0 82%;
    }
}

/* ---- PIXETIVITY-STYLE ENHANCEMENTS ---- */

/* Colorful section dividers */
.section-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink), var(--secondary), var(--accent-cyan));
    background-size: 300% 100%;
    animation: gradient-shift 6s ease infinite;
    /* scroll-snap removed */
}

/* Decorative floating shapes */
.deco-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.07;
    z-index: 0;
}
.deco-circle {
    border-radius: 50%;
    border: 2px solid;
    will-change: transform;
    transform: translateZ(0);
}
.deco-ring-purple {
    border-color: var(--primary);
    width: 120px;
    height: 120px;
    top: 15%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}
.deco-ring-pink {
    border-color: var(--accent-pink);
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 8%;
    animation: float 8s ease-in-out infinite 2s;
}
.deco-dot-grid {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-cyan) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.06;
}

/* Animated gradient borders on popular cards */
.card-popular {
    position: relative;
}
.card-popular::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--accent-pink), var(--accent-cyan), var(--primary));
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}
.card-popular:hover::after {
    opacity: 0.6;
}

/* Staggered reveal for cards */
.price-cards .price-card:nth-child(1) { transition-delay: 0s; }
.price-cards .price-card:nth-child(2) { transition-delay: 0.12s; }
.price-cards .price-card:nth-child(3) { transition-delay: 0.24s; }

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced trust section with color band */
.trust-section {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(123, 47, 247, 0.04) 20%,
        rgba(255, 59, 139, 0.03) 50%,
        rgba(123, 47, 247, 0.04) 80%,
        transparent 100%
    );
}

/* Section emoji bounce on scroll */
.section-header .section-label {
    position: relative;
    overflow: hidden;
}
.section-header .section-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out);
}
.revealed .section-label::after {
    transform: scaleX(1);
}

/* Footer top accent removed — border-top on .footer-section is sufficient */

/* Extra hover shine on price cards */
.price-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 55%,
        transparent 60%
    );
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s;
    pointer-events: none;
    z-index: 1;
}
.price-card:hover::after {
    transform: translateX(20%) translateY(20%);
}

/* ---- Page Transition Overlay ---- */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition-overlay.is-leaving {
    opacity: 1;
    pointer-events: auto;
}
.page-transition-overlay.is-entering {
    opacity: 1;
    animation: page-fade-in 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes page-fade-in {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}

/* ---- TOUCH DEVICES — disable hover transforms that stick on iOS/Android ---- */
@media (hover: none) and (pointer: coarse) {
    .addon-banner:hover {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: none;
    }
    .extra-card-v2:hover {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: none;
    }
    .extra-card-v2:hover::before {
        opacity: 0;
    }
    /* Price cards: disable 3D tilt hover (set by JS) */
    .price-card:hover {
        -webkit-transform: none !important;
        transform: none !important;
    }

    /* Active state for touch feedback instead of hover */
    .addon-banner:active {
        background: linear-gradient(135deg, rgba(255, 107, 44, 0.12) 0%, rgba(123, 47, 247, 0.08) 100%);
        border-color: rgba(255, 107, 44, 0.3);
    }
    .extra-card-v2:active {
        background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
        border-color: var(--border-hover);
    }

    /* Remove icon blur glow on mobile — causes iOS GPU compositing lag */
    .extra-card-icon::after {
        display: none;
    }

    /* Remove decorative glow to save GPU on mobile */
    .addon-banner-glow {
        display: none;
    }

    /* Kill all will-change on touch — saves GPU memory, prevents compositing storms */
    .marquee-track,
    .sidebar,
    .faq-answer {
        will-change: auto !important;
    }
}

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .page-transition-overlay {
        display: none;
    }
    .curtain {
        display: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================================
   LEGAL PAGES (AGB, Datenschutz)
   ============================================================ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}
.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}
.legal-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.legal-back {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color var(--transition);
}
.legal-back:hover {
    color: var(--primary-light);
}
.legal-page section {
    margin-bottom: 36px;
}
.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}
.legal-page h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 16px 0 8px;
}
.legal-page p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 720px;
}
.legal-page ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    max-width: 720px;
}
.legal-page li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}
.legal-page li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.legal-page a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-page a:hover {
    color: var(--accent-cyan);
}
.legal-footer {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   BLOG STYLES
   ============================================================ */

/* ---- Blog Home Link ---- */
.blog-home-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    margin-bottom: 24px;
}
.blog-home-link:hover {
    color: var(--primary-light);
}

/* ---- Blog Hero ---- */
.blog-hero {
    min-height: auto;
    padding: 120px 0 40px;
    background: radial-gradient(ellipse at 50% 20%, rgba(123, 47, 247, 0.1) 0%, transparent 60%),
                var(--bg-dark);
}

/* ---- Blog Listing ---- */
.blog-listing {
    min-height: auto;
    padding: 0 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Blog Card ---- */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    position: relative;
    text-decoration: none;
    color: inherit;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.blog-card:hover::before {
    opacity: 1;
}

.blog-card-image {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    background: var(--bg-surface);
}
.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Blog card placeholder gradient (when no image) */
.blog-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(123, 47, 247, 0.15) 50%, rgba(255, 59, 139, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.4;
}

.blog-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-card-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(123, 47, 247, 0.15);
    color: var(--primary-light);
}

.blog-card-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--text);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: gap var(--transition), color var(--transition);
}
.blog-card:hover .blog-card-link {
    gap: 10px;
    color: var(--accent-pink);
}

/* ---- Blog Post Hero ---- */
.post-hero {
    padding-top: 0;
    min-height: auto;
}
.post-hero-video {
    width: 100%;
    max-width: 960px;
    margin: 80px auto 0;
    padding: 0 20px;
}
.post-hero-video .video-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(123, 47, 247, 0.15);
}
.post-hero-image {
    width: 100%;
    max-width: 960px;
    margin: 80px auto 0;
    padding: 0 20px;
}
.post-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
}

/* ---- Blog Post Article ---- */
.post-article {
    min-height: auto;
    padding: 40px 0 60px;
}
.post-container {
    max-width: 800px;
}

/* Breadcrumb */
.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.post-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.post-breadcrumb a:hover {
    color: var(--primary-light);
}
.post-breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Post Header */
.post-header {
    margin-bottom: 40px;
}
.post-header .blog-card-tag {
    margin-bottom: 16px;
}
.post-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.post-meta-item svg {
    opacity: 0.6;
}

/* Post Content — Rich Text */
.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.post-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    margin: 48px 0 16px;
}
.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 12px;
}
.post-content p {
    margin-bottom: 20px;
}
.post-content a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: rgba(157, 92, 255, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition);
}
.post-content a:hover {
    text-decoration-color: var(--primary-light);
}
.post-content strong {
    color: var(--text);
    font-weight: 600;
}
.post-content figure {
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.post-content figure img {
    width: 100%;
    height: auto;
    display: block;
}
.post-content figcaption {
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}
.post-content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.post-content blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 8px;
}
.post-content blockquote p:last-child {
    margin-bottom: 0;
}
.post-content blockquote cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}
.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 24px;
}
.post-content li {
    margin-bottom: 8px;
    padding-left: 8px;
}
.post-content li::marker {
    color: var(--primary-light);
}

/* Back Navigation */
.post-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* ---- Blog Responsive ---- */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .post-hero-video,
    .post-hero-image {
        margin-top: 70px;
        padding: 0;
    }
    .post-hero-video .video-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .post-hero-image img {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 600px) {
    .blog-hero {
        padding: 100px 0 32px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-card-body {
        padding: 16px 18px 20px;
    }
    .post-meta {
        flex-direction: column;
        gap: 8px;
    }
    .post-content {
        font-size: 1rem;
    }
    .post-content figure {
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}
