/* ═══ SELF-HOSTED FONTS (no external CDN dependency) ═══ */
@import url('/css/fonts/fonts.css');

:root {
    --bg-light: #f5f5f7;
    --text-dark: #1a1a1a;
    --text-white: #ffffff;
    --brand-magenta: #ff007f;
    --brand-cyan: #00e5ff;
    --brand-orange: #ff5e00;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--text-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, .heading-font {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
}

/* ──────────────────────────────────────────
   NAVBAR — Clean Corporate
   ────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 999;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-img {
    height: 45px;
}

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

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-item:hover { color: var(--brand-orange); }

.btn {
    font-family: var(--font-heading);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-dark {
    background: #25282a;
    color: #fff;
}
.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-black {
    background: #000;
    color: #fff;
}
.btn-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ──────────────────────────────────────────
   LANG SWITCHER — Minimal
   ────────────────────────────────────────── */
.lang-switcher {
    position: relative;
}
.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.lang-dropdown {
    position: absolute;
    top: 34px;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 10;
    overflow: hidden;
}
.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--brand-orange); color: #fff; }

/* ──────────────────────────────────────────
   SCROLL CONTAINER
   ────────────────────────────────────────── */
.scroll-container {
    position: relative;
    z-index: 1;
}

.snap-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
}

/* ──────────────────────────────────────────
   FEATURE SECTIONS
   ────────────────────────────────────────── */
.feature-block {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 4rem 2rem;
    position: sticky;
    top: 0;
    overflow: hidden;
    background: #fff;
    z-index: 2;
    box-shadow: 0px -10px 30px rgba(0,0,0,0.1);
}

.feature-block.reverse {
    flex-direction: row-reverse;
    background: #fdfdfd;
}

.feature-content {
    flex: 1;
    padding: 4rem;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
}

.feature-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-desc {
    font-size: 1.25rem;
    font-weight: 500;
    color: #444;
    line-height: 1.7;
    max-width: 560px;
}

/* ──────────────────────────────────────────
   HERO SPLIT LAYOUT
   ────────────────────────────────────────── */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    align-items: center;
    position: relative;
}

.hero-left {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-img {
    width: 100%;
    max-width: 900px;
    z-index: 2;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.hero-right {
    flex: 1;
    padding: 4rem;
    z-index: 3;
}

.huge-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* ──────────────────────────────────────────
   ADVANTAGES GRID — Corporate Cards
   ────────────────────────────────────────── */
.advantages-section {
    padding: 6rem 2rem;
    background: #fdfdfd;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.adv-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.adv-card img, .card-media {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #f2f2f2;
}

.card-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media-title {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.adv-content {
    padding: 2rem;
    flex: 1;
    background: #fff;
}

.adv-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 800;
}

.adv-content p {
    font-size: 1.05rem;
    color: #555;
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.6;
}

/* ──────────────────────────────────────────
   DSP LOGO MARQUEE STRIP
   ────────────────────────────────────────── */
.dsp-strip {
    background: #000;
    padding: 2.5rem 0;
    position: relative;
    z-index: 8;
    overflow: hidden;
}

.dsp-strip-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1.8rem;
    opacity: 0.7;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.dsp-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    flex-shrink: 0;
}

.dsp-logo:hover {
    color: var(--brand-cyan);
}

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

/* ──────────────────────────────────────────
   CAPABILITIES GRID — What We Do
   ────────────────────────────────────────── */
.capabilities-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cap-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.cap-icon {
    font-size: 2.8rem;
    color: var(--brand-orange);
    margin-bottom: 1.2rem;
}

.cap-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.cap-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ──────────────────────────────────────────
   FEATURE LIST (for labels, movcut, tools)
   ────────────────────────────────────────── */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ccc;
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-cyan);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ──────────────────────────────────────────
   FAQ SECTION — Premium Design
   ────────────────────────────────────────── */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: var(--brand-cyan);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 3.5rem 1.4rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    color: #222;
    position: relative;
    transition: color 0.2s;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--brand-cyan);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.4rem;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* FAQ Link Directory */
.faq-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.faq-link-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.faq-link-card:hover {
    border-color: var(--brand-cyan);
    background: #f0feff;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.1);
}

.faq-link-card .faq-arrow {
    color: var(--brand-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-link-card:hover .faq-arrow {
    transform: translateX(4px);
}

.faq-btn-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

/* ──────────────────────────────────────────
   TEAM SECTION — Clean Corporate
   ────────────────────────────────────────── */
.team-section {
    padding: 8rem 2rem;
    background: #fff;
}

.section-head {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section-sub {
    font-size: 1.4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-box {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    background: #000;
    position: relative;
}

.team-box.large {
    grid-column: span 2;
}

.team-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.team-box:hover img {
    transform: scale(1.03);
    opacity: 0.92;
}

/* ──────────────────────────────────────────
   FAQ – Accordion & Link Cards
   ────────────────────────────────────────── */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.faq-accordion .faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border: none;
    padding: 0;
}

.faq-accordion .faq-question {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    display: block;
    font-family: var(--font-body);
}

.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    padding: 0 1.4rem;
}

.faq-accordion .faq-answer p {
    margin: 0 0 1.2rem;
    color: #333;
    line-height: 1.6;
    font-size: 1.05rem;
}

.qa-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.qa-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.qa-link {
    color: #0000ee;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: underline;
    display: block;
}

.qa-link:hover {
    color: #000088;
}

/* ──────────────────────────────────────────
   FOOTER  — Premium Dark
   ────────────────────────────────────────── */
.footer-bold {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bold-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 36px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.8rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
    font-family: var(--font-body);
    max-width: 360px;
}

.footer-bold h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #666;
    font-family: var(--font-heading);
}

.footer-bold ul { list-style: none; }
.footer-bold li { font-size: 0.88rem; margin-bottom: 0.5rem; font-family: var(--font-body); color: #aaa; }
.footer-bold a { color: #ccc; text-decoration: none; transition: color 0.2s; }
.footer-bold a:hover { color: var(--brand-cyan); }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #555;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--brand-cyan);
}

/* ──────────────────────────────────────────
   BASE MOBILE TOGGLE
   ────────────────────────────────────────── */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #000;
}

/* ──────────────────────────────────────────
   RESPONSIVE — Tablet & Mobile
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 75px;
        left: 0;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 1.5rem;
        text-align: center;
    }

    .huge-title { font-size: 2.8rem !important; line-height: 1.1; }
    .feature-title { font-size: 2.2rem !important; }
    .section-head { font-size: 2.4rem !important; }
    .hero-desc, .feature-desc { font-size: 1rem !important; }
    h3 { font-size: 1.5rem !important; }
    p { font-size: 1rem !important; }

    .qa-link { font-size: 1.2rem !important; }
    .qa-item { padding: 1.5rem; }

    .feature-block,
    .feature-block.reverse {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 60px 1rem 40px !important;
        /* === CRITICAL: Disable sticky on mobile === */
        position: relative !important;
        min-height: auto !important;
        z-index: auto !important;
    }
    .snap-section {
        position: relative !important;
        min-height: auto !important;
    }
    .feature-content { padding: 1rem !important; }
    .feature-image img { width: 100% !important; max-width: 400px !important; margin: 0 auto; display: block; }
    .feature-image { margin-top: 2rem; }

    .hero-slide {
        flex-direction: column-reverse !important;
        justify-content: flex-end !important;
        padding-top: 80px !important;
    }
    .hero-left, .hero-right { width: 100% !important; flex: none !important; }
    .hero-right { padding: 1rem 2rem 2rem !important; text-align: center !important; }
    .hero-left {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        height: 45vh !important;
    }
    .hero-left img { width: 90% !important; max-width: 400px !important; }

    /* Disable parallax blobs on mobile for performance */
    .bg-bubble {
        display: none !important;
    }

    .feature-content h2[style], section h2[style] { font-size: 2.4rem !important; line-height: 1.1 !important; }
    .feature-content h3[style], section h3[style] { font-size: 1.6rem !important; }
    .feature-content p[style] { font-size: 1rem !important; }

    .hero-split { flex-direction: column-reverse; padding-top: 100px; }
    .hero-left, .hero-right { width: 100%; }
    .hero-right { padding: 2rem; text-align: center; }

    .team-grid { grid-template-columns: 1fr; }
    .team-box.large { grid-column: span 1; }

    .adv-grid { grid-template-columns: 1fr !important; }

    .cap-grid { grid-template-columns: 1fr !important; }

    .dsp-strip-title { font-size: 1.1rem !important; letter-spacing: 1px; }
    .dsp-logo { font-size: 1.1rem !important; }

    .feature-list li { font-size: 0.95rem !important; }

    .faq-links-grid { grid-template-columns: 1fr !important; }
    .faq-question { font-size: 0.95rem !important; padding: 1.2rem 3rem 1.2rem 1.2rem !important; }

    .footer-bold-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .huge-title { font-size: 2.2rem !important; }
    .nav-container { padding: 1rem; }
}
