:root {
    --color-blue: #4DA5FF;
    --color-blue-dark: #66B5FF;
    --color-orange: #FF7A10;
    --color-orange-soft: #FFAC59;
    --bg-dark: #07090F;
    --bg: #0B1222;
    --bg-card: #111B33;
    --text-main: #F5F8FF;
    --text-muted: #9BB1D1;
    --border-color: rgba(102, 163, 255, 0.25);
    --shadow: 0 16px 36px rgba(0, 0, 0, 0.45);

    --font-sans: 'Poppins', sans-serif;
    --font-accent: 'Sacramento', cursive;
    --transition: all 0.35s ease;
    --border-radius: 14px;
    --nav-height: 96px;
}

* { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    padding-top: calc(var(--nav-height) + 10px);
}

section,
header,
.hero,
.section-header {
    scroll-margin-top: calc(var(--nav-height) + 16px);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: 700; }

p, li, span, a, button { font-family: var(--font-sans); }

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


img, iframe { display: block; max-width: 100%; }

.navbar { background: rgba(5, 8, 17, 0.8); border-bottom: 1px solid rgba(102, 163, 255, 0.2); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35); }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: radial-gradient(circle at top left, rgba(0, 78, 255, 0.1) 0%, transparent 50%);
    padding-top: 80px;
    overflow: hidden;
}
.hero-title { color: var(--text-main); }
.hero-bullets li { color: var(--text-muted); }
.hero-cta-wrapper .btn { background: var(--color-orange); color: #fff; }
.hero-cta-wrapper .btn:hover { background: var(--color-orange-soft); }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}

@media (max-width: 992px) {
    .hero-badge--left { top: 22%; left: 1.2%; }
    .hero-badge--right { top: 66%; right: 1.2%; }
    .hero-badge { font-size: 0.9rem; padding: 8px 14px; }
}

.section-header h2 { color: var(--color-blue); }
.section-desc { color: var(--text-muted); }

.box-outline { border: 1px solid rgba(80, 142, 255, 0.25); background: linear-gradient(145deg, rgba(10,14,30,.96), rgba(18,28,57,.95)); }

.hero-video-box { background: #0d1a3b; border-color: rgba(102, 163, 255,0.3); }

.video-card-slider { background: #101f3d; border-color: rgba(102, 163, 255,0.2); }
.footer { background: #050A20; color: #c9d5f4; }
.footer a:hover { color: var(--color-orange-soft); }


section { opacity:0; transform: translateY(20px); animation: sectionFadeIn 0.8s forwards; }
section:nth-of-type(1) { animation-delay: 0.1s; }
section:nth-of-type(2) { animation-delay: 0.2s; }
section:nth-of-type(3) { animation-delay: 0.3s; }
@keyframes sectionFadeIn { to { opacity: 1; transform: translateY(0); } }

.navbar { background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--border-color); box-shadow: 0 10px 25px rgba(10, 31, 74, 0.06); }
.navbar .nav-container { padding: 14px 32px; }
.nav-link { color: var(--text-main); font-weight: 600; padding: 10px 8px; transition: color var(--transition); }
.nav-link:hover { color: var(--color-orange); }
.btn-outline { border: 1px solid var(--color-blue); color: var(--color-blue); }
.btn-outline:hover { background: var(--color-blue-soft); color: #fff; }

/* hero defined above */
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    filter: none;
}
.handwritten {
    font-family: var(--font-accent);
    color: var(--color-orange);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    display: inline;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}
.hero-bullets li {
    color: #d9e6ff;
    font-size: 1.2rem;
    margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}
.hero-bullets li::before { color: var(--color-blue); }
.hero-cta-wrapper .btn {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-soft));
    color: #fff; border-radius: 70px; padding: 14px 36px; box-shadow: 0 10px 26px rgba(255, 122, 16, 0.35); font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-cta-wrapper .btn:hover {
    background: linear-gradient(135deg, rgb(255 155 79), rgb(255 168 64));
    transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 122, 16, 0.45);
}

.btn-primary { background: var(--color-orange); color: white; border: 1px solid var(--color-orange); box-shadow: 0 10px 28px rgba(255, 122, 16, 0.4); }
.btn-primary:hover { background: var(--color-orange-soft); border-color: var(--color-orange-soft); }

.btn-outline { background: transparent; color: var(--color-orange); border: 1px solid var(--color-orange); }
.btn-outline:hover { background: rgba(255, 122, 16, 0.15); color: white; }

.hero-video-box { background: #0c1640; border: 1px solid var(--color-blue); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); height: 360px; }
.video-card-slider, .thumb-card, .process-image-box { border: 1px solid var(--color-blue); }
.video-card-slider { background: #10203b; }
.thumb-card { background: #10203b; }

.section-header h2 { color: var(--color-orange); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.6rem; }
.section-desc { color: #FFFFFF; font-size: 1.05rem; }
#trailers .section-header h2 { color: var(--color-orange); }
#trailers .section-desc { color: #FFFFFF; }
#shorts .section-header h2 { color: var(--color-orange); }
#shorts .section-desc { color: #FFFFFF; }

.slider-section, .process-section, .thumbnail-section, .faq-section, .booking-section { padding: 80px 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

.box-outline { border: 1px solid var(--border-color); border-radius: var(--border-radius); background: var(--bg-card); box-shadow: var(--shadow); }

.process-step-item, .faq-item, .thumb-card, .video-card-slider { border-radius: 14px; overflow: hidden; }
.process-step-item { background: rgba(4, 50, 95, 0.25); border: 1px solid rgba(32, 117, 255, 0.45); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28); }
.process-step-item:hover { border: 1px solid rgba(255, 133, 40, 0.8); background: rgba(28, 129, 239, 0.24); }
.process-step-item h3 { color: #FFFFFF; }
.process-step-item p { color: rgba(207, 223, 255, 0.94); }
.video-card-slider { background: #06112a; border: 1px solid rgba(70, 120, 200, 0.4); transition: transform var(--transition), box-shadow var(--transition); }
.video-card-slider:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(255, 143, 35, 0.2); }

.footer { background: #0F1F49; color: #DDE3F1; padding: 48px 0; }
.footer a:hover { color: var(--color-orange-soft); }

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; }
    .navbar .nav-container { flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .section-padding { padding: 60px 0; }
    .hero-video-box { height: 220px; }
}

/* Force 3 full cards no clipping */
.slider-container-wrapper { overflow: hidden; }
.slider-container { overflow: hidden; padding: 0; scroll-snap-type: x mandatory; }
.slider-track { display: flex; gap: 20px; }
.video-card-slider.short { flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); width: calc((100% - 40px) / 3); }
.video-card-slider.short iframe { border-radius: 14px; }
.slider-container::-webkit-scrollbar { display: none; }

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: calc(var(--nav-height) + 10px);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-orange); }

h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; text-transform: none; }
.section-padding { padding: 120px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-in-section.revealed, .fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* Utilities */
.center { text-align: center; }
.mt-12 { margin-top: 3rem; }
.box-outline { border: 1px solid var(--border-color); border-radius: var(--border-radius); background: var(--bg-card); }

/* (Admin styles removed) */

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    text-decoration: none; transition: var(--transition); cursor: pointer;
    border: none; font-size: 1rem; font-family: var(--font-sans);
}
.btn-primary { background-color: var(--color-orange); color: white; box-shadow: 0 0 20px rgba(0, 78, 255, 0.4); }
.btn-primary:hover { background-color: var(--primary-hover); box-shadow: 0 0 30px rgba(0, 78, 255, 0.6); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--color-orange); background: rgba(0, 78, 255, 0.1); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.125rem; }
.btn-xl { padding: 20px 48px; font-size: 1.25rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 12px 0; transition: var(--transition);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    background: rgba(6, 9, 20, 0.88); border-bottom: 1px solid rgba(77, 140, 255, 0.15);
}
.navbar.scrolled { padding: 15px 0; border-bottom: 1px solid var(--border-color); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo-img { height: 56px; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-separator { color: var(--text-muted); opacity: 0.5; }
.nav-link, .btn, .btn-outline, .btn-primary, a, .process-step-item, .faq-item {
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.nav-link { color: var(--text-main); text-decoration: none; font-weight: 500; }
.nav-link:hover,
.btn:hover,
.btn-outline:hover,
.btn-primary:hover,
a:hover {
    color: var(--color-orange);
    text-decoration: none;
}
.nav-btn {
    font-size: 0.9rem; padding: 10px 24px;
    background: var(--color-orange) !important;
    color: #fff !important;
    border-color: var(--color-orange) !important;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-btn:hover {
    background: var(--color-orange-soft) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 122, 16, 0.35);
}
.nav-container { flex-wrap: nowrap !important; gap: 24px; }

/* Hero Section */
/* hero defined above */
.hero-main { flex: 1; display: flex; align-items: center; width: 100%; padding-top: 10px !important; padding-bottom: 60px !important; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }

.hero-content {
    text-align: left;
    max-width: 760px;
    padding-left: 14px;
    padding-right: 20px;
    margin-left: 0;
    margin-right: auto;
}
.hero-title { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin-bottom: 8px; line-height: 1.1; font-weight: 700; color: #fff; white-space: nowrap; }
.hero-title-secondary { display: block; color: var(--color-orange); font-weight: 800; letter-spacing: 0.01em; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; border-bottom: 4px solid; border-image: linear-gradient(to right, #1fa9ff 0%, #ffa140 100%) 1; padding-bottom: 7px; margin-top: 4px; }
.hero-subtitle { font-size: clamp(1.5rem, 3.2vw, 2rem); color: var(--text-muted); margin-bottom: 0.9rem; font-weight: 700; }
.handwritten { font-family: var(--font-accent); font-size: clamp(2.8rem, 5vw, 3.2rem); color: var(--color-orange); font-weight: 800; display: inline-block; margin-top: 0; }


@media (max-width: 992px) {
    .hero-subtitle { font-size: clamp(1.25rem, 3.8vw, 1.6rem); }
    .handwritten { font-size: clamp(2rem, 5.5vw, 2.3rem); }
}
.hero-title-secondary {
    color: var(--color-orange);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.highlighted-term::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(4, 169, 255, 0.95), rgba(255, 141, 26, 0.95));
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scaleX(0.95);
}
.highlighted-term:hover::after {
    opacity: 1;
    transform: scaleX(1.05);
}
.handwritten { font-family: var(--font-accent); font-size: clamp(1.9rem, 3.8vw, 2.2rem); color: var(--color-orange); font-weight: 600; display:inline-block; margin-top: 0;}

/* Hero Pill Badge */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 16, 0.12);
    border: 1px solid rgba(255, 122, 16, 0.45);
    color: var(--color-orange);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
    box-shadow: 0 0 14px rgba(255, 122, 16, 0.18);
}

.hero-bullets { list-style: none; margin-bottom: 36px; }
.hero-bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 1.05rem;
    color: #c8d8f8;
    line-height: 1.6;
    margin-bottom: 8px;
}
.hero-bullets li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-orange);
    font-size: 0.85rem;
}

.hero-cta-wrapper { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-btn { font-size: 1.1rem; padding: 16px 40px; }

.hero-social-proof {
    font-size: 0.85rem;
    color: #8fa8d8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Hero Visual Box */
.hero-video-box { 
    width: 100%; aspect-ratio: 16/9; background: var(--bg-card); 
    border: 1px solid var(--border-color); border-radius: 4px; 
    display: flex; align-items: stretch; justify-content: stretch; 
    color: var(--text-muted); font-weight: 500; font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hero-video-box iframe {
    display: block;
    flex: 1;
    min-height: 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.hero-youtube-file-hint {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 100%;
}
.hero-youtube-file-hint strong { color: var(--text-main); font-weight: 600; }

/* Credibility Ticker */
.credibility-ticker-wrapper { 
    width: 100%; padding: 20px 0; background: transparent; 
    border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); 
    overflow: hidden; margin-top: auto; max-width: 100%; margin-bottom: 40px;
}
.credibility-ticker { 
    width: 100%; overflow: hidden; display: flex; 
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.ticker-track { display: flex; animation: scrollTicker 40s linear infinite; white-space: nowrap; align-items: center; gap: 80px; padding: 0 40px; }
.ticker-track span { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-track:hover { animation-play-state: paused; }

/* Clean Section Backgrounds - NextOrbit Media Theme */

/* Podcast Shorts - slightly lighter navy */
.pattern-bg {
    position: relative;
    background-color: #080E20;
    border-top: 1px solid rgba(255, 122, 16, 0.12);
}

/* Cinematic Trailers - deep dark base */
.pattern-scanlines {
    position: relative;
    background-color: #060A18;
    border-top: 1px solid rgba(77, 140, 255, 0.12);
}

/* Thumbnails - warm dark */
.pattern-hatch {
    position: relative;
    background-color: #080E20;
    border-top: 1px solid rgba(255, 122, 16, 0.12);
}

/* Footer */
.pattern-blueprint {
    position: relative;
    background-color: #050812;
    border-top: 1px solid rgba(77, 140, 255, 0.15);
}

/* Process Section */
.pattern-jitter {
    position: relative;
    background-color: #060A18;
    border-top: 1px solid rgba(77, 140, 255, 0.12);
}

/* FAQ */
.pattern-crosshatch {
    position: relative;
    background-color: #080E20;
    border-top: 1px solid rgba(255, 122, 16, 0.12);
}

/* Process: Section Glow */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.process-steps-grid .process-content-side { grid-area: 1 / 1 / -1 / -1; }
.process-steps-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.process-step-item { background: rgba(11, 24, 48, 0.85); border: 1px solid rgba(77, 165, 255, 0.2); border-radius: 14px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.process-step-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(77, 165, 255, 0.35), rgba(11, 18, 42, 0.9));
    border: 1px solid rgba(77, 165, 255, 0.45);
    box-shadow: 0 10px 20px rgba(10, 80, 155, 0.3);
    color: var(--color-orange);
    font-size: 1.2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.process-step-item:hover .process-step-icon {
    transform: scale(1.08);
    box-shadow: 0 14px 25px rgba(255, 122, 16, 0.45);
}
.process-step-icon i { color: var(--color-orange); }

.process-step-info { display: grid; gap: 4px; }
.process-number { font-weight: 700; color: var(--color-orange-soft); }
.process-step-title { font-weight: 700; font-size: 1.05rem; color: var(--text-main); }
.process-step-desc { color: var(--text-muted); font-size: 0.95rem; margin-top: 2px; }

@media (max-width: 900px) {
    .process-steps-list { grid-template-columns: 1fr; }
}

.section-glow { position: relative; background-color: #070709; overflow: hidden; }
.section-glow::after {
    content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60%; height: 60%; background: radial-gradient(circle, rgba(0, 78, 255, 0.05) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

/* Reveal Animations (Syncwave Style) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Cinematic Grain/Noise Overlay */
body::after {
    content: ""; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; pointer-events: none; z-index: 9999; filter: contrast(120%) brightness(120%);
}

.cinematic-vibe {
    position: relative; overflow: hidden;
}
.cinematic-vibe::after {
    content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 78, 255, 0.03), transparent);
    animation: scannerMove 10s linear infinite; pointer-events: none;
}
@keyframes scannerMove {
    0% { top: -100%; }
    100% { top: 100%; }
}
.pattern-bg > .container, .pattern-scanlines > .container, .pattern-hatch > .container, .pattern-blueprint > .container, .section-glow > .container { position: relative; z-index: 1; }

/* Slider Sections */
.slider-section { position: relative; overflow: hidden; }
.slider-container-wrapper { 
    position: relative; 
    display: grid;
    grid-template-areas: "prev slider next";
    grid-template-columns: auto 1fr auto;
    align-items: center; 
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden; /* hide partial cards at edges */
}
.slider-arrow.prev { grid-area: prev; }
.slider-arrow.next { grid-area: next; }
.slider-container { grid-area: slider; }

.slider-container { 
    overflow-x: hidden; 
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth; 
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 40px 20px; /* align full three cards */
}
.slider-container::-webkit-scrollbar { display: none; }
.slider-track { display: flex; gap: 20px; }

.slider-arrow {
    width: 60px; height: 60px; border: 2px solid var(--border-color);
    border-radius: 50%; background: transparent; color: var(--text-main);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); z-index: 10;
    flex-shrink: 0;
}
.slider-arrow:hover { border-color: var(--color-orange); color: var(--color-orange); background: rgba(0, 78, 255, 0.05); transform: scale(1.1); }
.slider-arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }

.video-card-slider { 
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 32px; 
    overflow: hidden; 
    transition: var(--transition);
    transform: scale(0.95);
    opacity: 0.5;
}
.video-card-slider.cinematic { flex: 0 0 100%; aspect-ratio: 16/9; }
.video-card-slider.short { flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); width: calc((100% - 40px) / 3); aspect-ratio: 9/16; }

/* Make sure short video slider shows exactly 3 cards with consistent spacing */
.slider-container { padding: 40px 0; overflow: hidden; scroll-snap-type: x mandatory; }
.slider-track { display: flex; gap: 20px; }
.video-card-slider { scroll-snap-align: start; }
.slider-arrow { z-index: 20; }


/* Thumbnails */
.thumbnail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.thumb-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px;
    aspect-ratio: 16 / 9; transition: var(--transition);
    overflow: hidden;
}
.thumb-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: var(--transition);
}
.thumb-card:hover { border-color: var(--color-orange); transform: scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.thumb-card:hover img { transform: scale(1.1); }

/* FAQ */
.faq-accordion-box { max-width: 800px; margin: 0 auto; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%; text-align: left; padding: 22px 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(160, 175, 210, 0.25); border-radius: 12px;
    color: var(--text-main); font-size: 1.05rem; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,122,16,0.35); }
/* + / × toggle icon */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 122, 16, 0.45);
    color: var(--color-orange);
    font-size: 1.3rem; font-weight: 400; line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    background: rgba(255,122,16,0.08);
}
.faq-item.active .faq-toggle-icon {
    content: '×';
    transform: rotate(45deg);
    background: rgba(255,122,16,0.18);
    border-color: var(--color-orange);
}
.faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: rgba(255,255,255,0.02); }
.faq-answer p { color: var(--text-muted); padding-bottom: 24px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 250px; padding-top: 12px; }

/* Booking Section */
.booking-container { max-width:1050px; margin:0 auto; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.5);}
.calendly-inline-widget { display:block; min-width:320px; height:700px; }

/* Footer */
.footer { border-top: 1px solid var(--border-color); background: #050507; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-brand .footer-title { font-size: 1.75rem; margin-bottom: 24px; font-weight: 800; background: linear-gradient(135deg, var(--text-main) 0%, var(--text-muted) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand .footer-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; max-width: 400px; }
.footer-box-title { font-size: 1.1rem; margin-bottom: 24px; color: var(--text-main); font-weight: 600; letter-spacing: 1px; }
.footer-links-column ul { list-style: none; }
.footer-links-column ul li { margin-bottom: 14px; }
.footer-links-column ul li a { color: #8fa8d8; text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.footer-links-column ul li a:hover { color: var(--color-orange); padding-left: 4px; }
.footer-bottom { text-align: center; color: var(--text-muted); padding-top: 40px; border-top: 1px solid var(--border-color); font-size: 0.9rem; }

/* Atmospheric Glows */
.glow-purple { background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%); }
.glow-blue { background: radial-gradient(circle at center, rgba(0, 78, 255, 0.15) 0%, transparent 70%); }
.glow-green { background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%); }

.section-glow-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

/* Slider Process Bar */
.slider-process-bar {
    margin-top: 40px; background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color); border-radius: 12px;
    padding: 20px; display: flex; justify-content: center; gap: 40px;
}
.process-step { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.process-step span { color: var(--text-main); margin-right: 8px; }

/* Section Header */
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; text-transform: none; color: var(--color-orange); font-weight: 800; }
.handwritten-title { font-family: 'Caveat', cursive; font-size: 3.5rem; margin-bottom: 8px; font-weight: 600; }
.section-desc { color: #a0b4d6; font-size: 1.05rem; max-width: 620px; margin-bottom: 20px; line-height: 1.7; }
.center .section-desc { margin: 0 auto 20px auto; }
.section-header { margin-bottom: 48px; }

/* Featured Work */
.videos-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.video-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); }
.video-card:hover { border-color: var(--color-orange); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.video-wrapper { position: relative; width: 100%; padding-top: 56.25%; }
.video-wrapper.vertical { padding-top: 177.77%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-info { padding: 24px; }
.video-info h3 { margin-bottom: 8px; font-size: 1.25rem; }
.video-info p { color: var(--text-muted); font-size: 0.9rem; }

/* Gradient CTA */
.gradient-border-box {
    position: relative; padding: 60px; background: var(--bg-card);
    border-radius: 24px; text-align: center; border: 1px solid var(--border-color);
}
.gradient-border-box::before {
    content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    z-index: -1; background: linear-gradient(45deg, var(--color-orange), transparent, var(--color-orange));
    border-radius: 26px; opacity: 0.3;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content .section-title { font-size: 3rem; margin-bottom: 20px;}
.cta-content .section-desc { margin-bottom: 40px; }
.cta-footer-banner, .banner-outline {
    border: 1px solid var(--border-color); padding: 16px; border-radius: 12px;
    background: rgba(255,255,255,0.02); font-weight: 500; text-align: center; margin-top: 30px; display:inline-block; font-size:0.9rem; color:var(--text-muted);
}

/* Process Section Redesign - Premium Timeline */
.process-section {
    position: relative;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: flex-start;
    position: relative;
}

/* Vertical Timeline Line */
.process-content-side {
    position: relative;
    padding-left: 40px;
}

.process-content-side::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, 
        transparent, 
        var(--color-orange) 20%, 
        var(--color-orange) 80%, 
        transparent
    );
    opacity: 0.2;
}

/* Steps */
.process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step-item {
    position: relative;
    background: rgba(18, 18, 23, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.process-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 78, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.process-step-item:hover {
    transform: translateX(10px) scale(1.02);
    border-color: rgba(0, 78, 255, 0.3);
    background: rgba(18, 18, 23, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 78, 255, 0.1);
}

.process-step-item:hover::before {
    opacity: 1;
}

.process-step-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.process-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 78, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.process-step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 5px;
    opacity: 0.8;
}

/* Glowing dot on the timeline for each step (replaced by icons) */
.process-step-dot {
    display: none;
}

.process-step-item:hover .process-step-dot {
    display: none;
}

/* Image Box Refinement */
.process-image-box {
    position: sticky;
    top: 150px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    background: var(--bg-card);
}

.process-image-box img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-image-box:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .process-content-side {
        padding-left: 0;
    }
    .process-content-side::after {
        display: none;
    }
    .process-step-dot {
        display: none;
    }
    .process-step-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.01em; }
    .section-header { margin-bottom: 30px; }
    
    /* Navbar Mobile Fix */
    .navbar { padding: 10px 0; }
    .nav-links { display: none; }
    .nav-container { justify-content: space-between; padding: 0 15px; }
    .nav-logo-img { height: 45px; }
    .nav-btn { font-size: 0.8rem; padding: 8px 16px; }

    /* Hero Mobile Fix */
    .hero { min-height: auto; padding-top: 80px; }
    .hero-main { padding-top: 40px; }
    .hero-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-content { padding-right: 0; }
    .hero-title { font-size: 2rem; margin-bottom: 20px; font-weight: 700; white-space: nowrap; }
    .handwritten { font-size: 2.22rem; margin-top: 5px; }
    .hero-bullets { margin-bottom: 30px; }
    .hero-bullets li { text-align: center; padding-left: 0; font-size: 1.1rem; }
    .hero-bullets li::before { display: none; }
    .hero-cta-wrapper { justify-content: center; }
    
    /* Ticker Mobile Fix */
    .ticker-track { gap: 30px; padding: 0 10px; }
    .ticker-item { font-size: 0.8rem; }
    .credibility-ticker { 
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .credibility-ticker-wrapper { padding: 12px 0; margin-bottom: 20px; }
    
    /* Process Mobile Fix */
    .process-grid { grid-template-columns: 1fr; gap: 30px; }
    .process-image-box { max-width: 100%; border-radius: 16px; }
    .process-content-side { gap: 20px; }
    .process-step-item { padding: 15px; }

    /* Videos Grid Mobile Fix */
    .videos-grid { grid-template-columns: 1fr; gap: 20px; }
    
    /* Slider Mobile Fix */
    .slider-container-wrapper { 
        grid-template-areas: 
            "slider slider"
            "prev next";
        grid-template-columns: 1fr 1fr;
        gap: 20px; 
        padding: 0; 
    }
    .slider-container { width: 100%; padding: 20px 0; }
    .slider-track { gap: 20px; }
    
    .slider-arrow { width: 50px; height: 50px; justify-self: center; }
    .slider-arrow.prev { justify-self: flex-end; }
    .slider-arrow.next { justify-self: flex-start; }
    .video-card-slider.cinematic { flex: 0 0 100%; }
    .video-card-slider.short { flex: 0 0 calc(75% - 20px); }
    .video-card-slider { border-radius: 20px; }

    /* Thumbnails Mobile Fix */
    .thumbnail-grid { grid-template-columns: 1fr; gap: 15px; }
    
    /* FAQ Mobile Fix */
    .faq-question { padding: 20px; font-size: 1rem; }
    .faq-answer { padding: 0 20px; }

    /* Booking Mobile Fix */
    .calendly-inline-widget { height: 600px; }
    
    /* Footer Mobile Fix */
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand .footer-desc { margin: 0 auto; }
}

.video-card-slider.revealed, .revealed .video-card-slider { opacity: 1; transform: scale(1); }
.video-card-slider:hover { border-color: var(--color-orange); }

/* Atmospheric Glows */
.glow-purple { background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%); }
.glow-blue { background: radial-gradient(circle at center, rgba(0, 78, 255, 0.15) 0%, transparent 70%); }
.glow-green { background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%); }

.section-glow-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

/* Slider Process Bar */
.slider-process-bar {
    margin-top: 40px; background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color); border-radius: 12px;
    padding: 20px; display: flex; justify-content: center; gap: 40px;
}
.process-step { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.process-step span { color: var(--text-main); margin-right: 8px; }

/* Section Header */
.section-title { font-size: 2.5rem; margin-bottom: 16px; }
.handwritten-title { font-family: 'Caveat', cursive; font-size: 3.5rem; margin-bottom: 8px; font-weight: 600; }
.section-desc { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin-bottom:20px; }
.center .section-desc { margin: 0 auto 20px auto; }
.section-header { margin-bottom: 60px; }

/* Featured Work */
.videos-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.video-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); }
.video-card:hover { border-color: var(--color-orange); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.video-wrapper { position: relative; width: 100%; padding-top: 56.25%; }
.video-wrapper.vertical { padding-top: 177.77%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-info { padding: 24px; }
.video-info h3 { margin-bottom: 8px; font-size: 1.25rem; }
.video-info p { color: var(--text-muted); font-size: 0.9rem; }

/* Gradient CTA */
.gradient-border-box {
    position: relative; padding: 60px; background: var(--bg-card);
    border-radius: 24px; text-align: center; border: 1px solid var(--border-color);
}
.gradient-border-box::before {
    content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    z-index: -1; background: linear-gradient(45deg, var(--color-orange), transparent, var(--color-orange));
    border-radius: 26px; opacity: 0.3;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content .section-title { font-size: 3rem; margin-bottom: 20px;}
.cta-content .section-desc { margin-bottom: 40px; }
.cta-footer-banner, .banner-outline {
    border: 1px solid var(--border-color); padding: 16px; border-radius: 12px;
    background: rgba(255,255,255,0.02); font-weight: 500; text-align: center; margin-top: 30px; display:inline-block; font-size:0.9rem; color:var(--text-muted);
}


/* Footer Logo */
.footer-logo-img { height: 100px; display: block; object-fit: contain; margin-bottom: 24px; transition: var(--transition); filter: brightness(1.2); }
.footer-logo-img:hover { transform: scale(1.05); }

/* End of specialized mobile overrides */

/* ── Process Cards (new card-style layout) ── */
.section-pill {
    display: inline-block;
    background: rgba(255, 122, 16, 0.1);
    border: 1px solid rgba(255, 122, 16, 0.35);
    color: var(--color-orange);
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; margin-top: 48px;
}
.process-cards-grid .process-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%;
}
.process-card {
    position: relative;
    background: rgba(8, 16, 36, 0.9);
    border: 1px solid rgba(77, 140, 255, 0.18);
    border-radius: 16px; padding: 28px 28px 24px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.process-card:hover {
    border-color: rgba(255, 122, 16, 0.5);
    box-shadow: 0 12px 36px rgba(255, 122, 16, 0.12);
    transform: translateY(-4px);
}
.process-card-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.process-card-num {
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: rgba(255, 122, 16, 0.12);
    border: 1px solid rgba(255, 122, 16, 0.3);
    border-radius: 8px; font-size: 0.78rem; font-weight: 700;
    color: var(--color-orange); margin-bottom: 0;
}
.process-card-visual {
    background: rgba(4, 10, 26, 0.7);
    border: 1px solid rgba(77, 140, 255, 0.12);
    border-radius: 12px; padding: 20px 16px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
}
/* New flow layout with labels */
.pcv-flow { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; }
.pcv-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.pcv-icon { font-size: 2rem; line-height: 1; }
.pcv-label { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; }
.pcv-arrow { color: rgba(255, 122, 16, 0.7); font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.process-card-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0; }
.process-card-desc { font-size: 0.9rem; color: #8fa8d8; line-height: 1.6; margin-top: 16px; }
@media (max-width: 768px) {
    .process-cards-grid { grid-template-columns: 1fr; }
    .process-cards-grid .process-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */

/* Hero content entrance — staggered fade-up per element */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-content .hero-pill       { animation: heroFadeUp 0.6s ease forwards; animation-delay: 0.15s; opacity: 0; }
.hero-content .hero-title      { animation: heroFadeUp 0.6s ease forwards; animation-delay: 0.3s;  opacity: 0; }
.hero-content .hero-subtitle   { animation: heroFadeUp 0.6s ease forwards; animation-delay: 0.45s; opacity: 0; }
.hero-content .hero-bullets    { animation: heroFadeUp 0.6s ease forwards; animation-delay: 0.6s;  opacity: 0; }
.hero-content .hero-cta-wrapper{ animation: heroFadeUp 0.6s ease forwards; animation-delay: 0.75s; opacity: 0; }

/* Hero video — gentle float */
@keyframes floatY {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-8px); }
}
.hero-video-box { animation: floatY 5s ease-in-out infinite; }

/* CTA button — soft pulse glow */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(255,122,16,0.35); }
    50%       { box-shadow: 0 10px 42px rgba(255,122,16,0.65), 0 0 24px rgba(255,122,16,0.25); }
}
.cta-btn { animation: ctaPulse 3s ease-in-out infinite; }

/* Section pill — slide in from left */
@keyframes pillSlide {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}
.section-header.revealed .section-pill { animation: pillSlide 0.5s ease forwards; }

/* Stagger children — used by JS to set transition delays */
.stagger-child {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Process cards — initial hidden state for stagger */
.process-card {
    opacity: 0;
    transform: translateY(30px);
}
.process-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease,
                border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.process-card.visible:hover {
    transform: translateY(-4px);
}

/* Thumbnail cards — initial hidden state for stagger */
.thumb-card {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
}
.thumb-card.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Active nav link */
.nav-link.active { color: var(--color-orange) !important; }

/* FAQ answer smooth slide — handled above in main FAQ block */

/* Slider arrows — smooth scale */
.slider-arrow { transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease; }

/* Ticker fade-in */
@keyframes tickerFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.credibility-ticker-wrapper { animation: tickerFadeIn 1s ease forwards; animation-delay: 1s; opacity: 0; }

/* Section border separator glow pulse */
@keyframes borderGlow {
    0%, 100% { border-top-color: rgba(255,122,16,0.12); }
    50%       { border-top-color: rgba(255,122,16,0.28); }
}

/* Scroll reveal override — faster, crisper */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.2,0.8,0.2,1), transform 0.65s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
