/*
Theme Name: Leadliq 3.1
Theme URI: https://leadliq.com
Author: LeadLiq
Author URI: https://leadliq.com
Description: Custom 3D scroll-story theme for LeadLiq AI Marketing Agency. Features a full-screen Three.js particle animation that morphs through 9 sections as users scroll.
Version: 3.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: leadliq
*/

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

:root {
    --blue:   #00C4E8;
    --purple: #0070A0;
    --pink:   #FF2FBF;
    --orange: #FF6B35;
    --red:    #FF4444;
    --dark:   #030305;
    --glass:  linear-gradient(135deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.025) 100%);
    --border: rgba(255,255,255,0.18);
}

html { scroll-behavior: auto; }

body {
    background: var(--dark);
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 16px;
    color: #fff;
    overflow-x: hidden;
}

/* Outfit strictly for headings, UI labels & nav */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', system-ui, sans-serif;
}
.eyebrow, .plan-name, .service-tag, .stat-label,
.logo, .loader-logo, .nav-dropdown-btn,
.btn-primary, .btn-ghost, .nav-cta, .plan-btn,
.ip-stat-num, .ip-stat-label, .faq-question,
.atc-name, .atc-role, .cs-client, .cs-industry {
    font-family: 'Outfit', system-ui, sans-serif;
}

/* ══════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.loader-logo {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: 2px;
    transition: width 0.05s linear;
}

.loader-pct {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════
   CANVAS (fixed behind everything)
══════════════════════════════════════════ */
#canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

/* ══════════════════════════════════════════
   PROGRESS BAR
══════════════════════════════════════════ */
#progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 200;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: linear-gradient(to bottom, rgba(3,3,5,0.9), transparent);
    backdrop-filter: blur(8px);
}

/* Logo wrapper — fixes nested <a> bug */
.logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* WordPress native custom logo output */
.logo-wrap .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-wrap .custom-logo-link img,
.logo-wrap .custom-logo {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 180px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

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

.nav-link {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,1);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--blue); }

.nav-cta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    transition: all 0.3s;
}
.nav-cta:hover {
    border-color: var(--blue);
    background: rgba(0,212,255,0.1);
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
}

/* ══════════════════════════════════════════
   SCROLL CONTAINER & SECTIONS
══════════════════════════════════════════ */
#scroll-container { position: relative; z-index: 1; }

.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 3rem 5rem;
}

.story-section.left  { justify-content: flex-start; }
.story-section.right { justify-content: flex-end; }
.story-section.center { justify-content: center; }

.section-content {
    max-width: 580px;
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
}
.section-content.wide { max-width: 900px; }
.section-content.full { max-width: 1100px; }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.2rem;
    padding: 0.3rem 0.9rem;
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 50px;
    background: rgba(0,212,255,0.12);
}

.eyebrow.red   { color: #FF6B6B; border-color: rgba(255,107,107,0.25); background: rgba(255,107,107,0.12); }
.eyebrow.green { color: #5CFF9D; border-color: rgba(92,255,157,0.25);  background: rgba(92,255,157,0.12); }
.eyebrow.gold  { color: #FFD700; border-color: rgba(255,215,0,0.25);   background: rgba(255,215,0,0.12); }

h1 {
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.4rem;
}

h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.g-white  { background: linear-gradient(140deg, #fff 0%, #c0d8ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.g-blue   { background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.g-red    { background: linear-gradient(135deg, #FF4D4D, #FF9500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.g-green  { background: linear-gradient(135deg, #5CFF9D, #00D4FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.g-gold   { background: linear-gradient(135deg, #FFD700, #FF9500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.body-text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.85;
    color: rgba(255,255,255,0.88);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    pointer-events: all;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,212,255,0.35);
    color: #fff;
}

.btn-ghost {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    pointer-events: all;
    transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,1); }

/* ══════════════════════════════════════════
   GLASS CARDS
══════════════════════════════════════════ */
.glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.075) 0%,
        rgba(255, 255, 255, 0.025) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════════════════
   HERO BADGE
══════════════════════════════════════════ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,1);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
}

.hero-badge span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #5CFF9D;
    box-shadow: 0 0 8px #5CFF9D;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.stat-card { padding: 1.5rem 1.25rem; text-align: center; }

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.35);
    margin-top: 0.5rem;
}

/* ══════════════════════════════════════════
   BLUEPRINT STEPS
══════════════════════════════════════════ */
.step-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.step-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.step-body strong { display: block; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.step-body span   { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.5; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card { padding: 2rem 1.75rem; transition: transform 0.3s, border-color 0.3s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); }

.service-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(53,47,255,0.15));
    border: 1px solid rgba(0,212,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.service-tag {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ══════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════ */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
}
.industry-card:hover {
    border-color: rgba(0,212,255,0.25);
    background: rgba(0,212,255,0.12);
}

.industry-icon { font-size: 1.4rem; }
.industry-label { font-size: 0.88rem; font-weight: 600; }
.industry-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card { padding: 1.75rem; }

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #FF6B9D, #FF9500); }
.av-2 { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.av-3 { background: linear-gradient(135deg, #5CFF9D, #00A8FF); }

.author-name  { font-size: 0.85rem; font-weight: 700; }
.author-title { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.stars { color: #FFD700; font-size: 0.75rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pricing-card { padding: 2rem 1.75rem; position: relative; transition: transform 0.3s; }
.pricing-card:hover { transform: translateY(-6px); }

.pricing-card.popular {
    border-color: rgba(0,212,255,0.4);
    background: rgba(0,212,255,0.12);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.plan-tagline { font-size: 0.82rem; color: rgba(255,255,255,1); margin-bottom: 1.5rem; }

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.price-dollar { font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,1); margin-bottom: 0.4rem; }
.price-amount { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.price-mo { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 0.4rem; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,1);
}

.feature-item::before {
    content: '✓';
    color: #5CFF9D;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    pointer-events: all;
    transition: all 0.2s;
}

.plan-btn.outline { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,1); }
.plan-btn.outline:hover { border-color: var(--blue); color: var(--blue); }
.plan-btn.filled { background: linear-gradient(135deg, var(--blue), var(--purple)); color: white; }
.plan-btn.filled:hover { box-shadow: 0 8px 30px rgba(0,212,255,0.3); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   PAIN POINTS
══════════════════════════════════════════ */
.pain-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }

.pain-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
}

.pain-x {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255,68,68,0.12);
    border: 1px solid rgba(255,68,68,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #FF6B6B;
    flex-shrink: 0;
}

.pain-text { font-size: 0.88rem; color: rgba(255,255,255,0.88); }

/* ══════════════════════════════════════════
   SCROLL HINT & DOT NAV
══════════════════════════════════════════ */
#scroll-hint {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 50;
    transition: opacity 0.5s;
}

.scroll-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.25); }

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(0,212,255,0.6), transparent);
    animation: lineAnim 2s ease-in-out infinite;
}

@keyframes lineAnim {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50%      { opacity: 0.4; transform: scaleY(0.7); }
}

#dot-nav {
    position: fixed;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--blue); transform: scale(1.6); }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-tagline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.trust-item::before { content: '✓'; color: #5CFF9D; font-weight: 800; }

/* ══════════════════════════════════════════
   PROTO BADGE
══════════════════════════════════════════ */
#proto-badge {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

/* ══════════════════════════════════════════
   PAGE TEMPLATE (inner pages)
══════════════════════════════════════════ */
.ll-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.ll-page-wrap h1, .ll-page-wrap h2, .ll-page-wrap h3 { margin-bottom: 1rem; }
.ll-page-wrap p { color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 1.25rem; }
.ll-page-wrap a { color: var(--blue); }

.ll-site-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* ══════════════════════════════════════════
   HERO RIGHT PANEL
══════════════════════════════════════════ */
.hero-right {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 430px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    pointer-events: none;
    z-index: 2;
}

/* ── Floating icon cloud ── */
.fi-cloud {
    position: relative;
    width: 430px;
    height: 360px;
}

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

.fi-pill {
    position: absolute;
    left: var(--fi-x, 0px);
    top:  var(--fi-y, 0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    animation: floatBadge 4.5s ease-in-out infinite;
    animation-delay: var(--fi-delay, 0s);
    cursor: default;
}

.fi-ico {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: var(--c, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 14px rgba(0,0,0,0.4),
        0 1px 0 rgba(255,255,255,0.12) inset;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.2s;
}

.fi-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ── Icon image (loaded deferred) ── */
.fi-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fi-img[src] { opacity: 1; }

/* ── Social proof cards ── */
.hero-proof {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hp-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.hp-exp-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    flex-shrink: 0;
}

.hp-exp-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-exp-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hp-exp-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-row .hp-avatars-card {
    flex: 1;
}

.hp-card {
    padding: 1rem 1.25rem;
    border-radius: 16px;
}

.hp-avatars-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hp-av-row {
    display: flex;
    align-items: center;
}

.hp-face {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid rgba(0,0,0,0.4);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    letter-spacing: 0;
}

.hp-face:first-child { margin-left: 0; }

.hp-face-lg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin-left: 0;
    border: 2.5px solid rgba(0,0,0,0.4);
}

.hp-av-info { flex: 1; }

.hp-stars {
    color: #FFD700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.hp-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.hp-label strong { color: white; }

.hp-quote-card { display: flex; flex-direction: column; gap: 0.6rem; }

.hp-quote-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hp-rev-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
}

.hp-rev-role {
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
}

.hp-quote {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
    font-style: italic;
    margin: 0;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(0,196,232,0.4);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links .nav-link { display: none; }
    .story-section { padding: 7rem 1.5rem 4rem; justify-content: center !important; }
    .section-content { max-width: 100%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    #dot-nav { display: none; }
    .hero-right { display: none; }
}

/* ══════════════════════════════════════════
   NAV — FULL STRUCTURE (inner pages + dropdown)
══════════════════════════════════════════ */

/* Base nav reset — overrides the old `nav {}` selector */
#ll-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    transition: background 0.35s, box-shadow 0.35s;
}

#ll-nav.nav-fp {
    background: linear-gradient(to bottom, rgba(3,3,5,0.85), transparent);
    backdrop-filter: blur(8px);
}

#ll-nav.nav-page {
    background: rgba(3,3,5,0.82);
    backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

#ll-nav.nav-page.scrolled {
    background: rgba(3,3,5,0.95);
}

.nav-inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* ── Dropdown ── */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,1);
    letter-spacing: 0.02em;
    padding: 0;
    transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: var(--blue); }

.nav-chevron {
    transition: transform 0.25s;
}
.nav-dropdown-wrap.open .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 1.1rem);
    left: -1rem;
    width: 520px;
    background: rgba(8, 10, 18, 0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06) inset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    padding: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s, transform 0.22s;
}

.nav-dropdown-wrap.open .nav-dropdown-panel,
.nav-dropdown-wrap:hover .nav-dropdown-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-dropdown-wrap:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dd-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s;
}
.nav-dd-item:hover { background: rgba(255,255,255,0.06); }
.nav-dd-item:hover strong { color: var(--blue); }

.nav-dd-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-dd-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
    transition: color 0.18s;
}

.nav-dd-item span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    display: block;
    line-height: 1.4;
}

.nav-link.active { color: var(--blue); }

/* ── Hamburger ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.nav-hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.25s;
}

/* ══════════════════════════════════════════
   MOBILE OVERLAY
══════════════════════════════════════════ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(3,3,5,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.3s, transform 0.3s;
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.mobile-overlay-inner {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.75rem 2.5rem;
    overflow-y: auto;
    height: 100%;
}

.mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-overlay-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mo-section-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.75rem;
}

.mo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mo-link:hover { color: var(--blue); }
.mo-link span { font-size: 1.15rem; }

.mo-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1.5rem 0 1rem;
}

.mo-cta {
    margin-top: auto;
    padding-top: 2rem;
}

/* ══════════════════════════════════════════
   INNER PAGES — BASE
══════════════════════════════════════════ */
.inner-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Hero for inner pages */
.ip-hero {
    padding: 9rem 2rem 5rem;
    background: linear-gradient(180deg, rgba(0,196,232,0.04) 0%, transparent 80%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.ip-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0,196,232,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ip-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.ip-hero h1 { margin-bottom: 1.25rem; }

/* Sections */
.ip-section {
    padding: 5rem 2rem;
}

.ip-section-alt {
    background: rgba(255,255,255,0.018);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ip-cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0,196,232,0.04) 100%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.ip-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ip-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ── Stats grid ── */
.ip-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.ip-stat {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.ip-stat:hover { transform: translateY(-4px); border-color: rgba(0,196,232,0.25); }

.ip-stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ip-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.45);
}

/* ── Features grid ── */
.ip-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ip-feature-card {
    padding: 2rem 1.75rem;
    transition: transform 0.3s, border-color 0.3s;
}
.ip-feature-card:hover { transform: translateY(-4px); border-color: rgba(0,196,232,0.25); }

.ip-feat-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.ip-feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.ip-feature-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ── Process list ── */
.ip-process-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto;
}

.ip-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
}

.ip-ps-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.ip-ps-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
}
.ip-ps-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story-content .eyebrow { margin-bottom: 1rem; }
.about-story-content h2 { margin-bottom: 1.5rem; }
.about-story-content .body-text { margin-bottom: 1rem; }

/* Timeline */
.about-timeline {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.at-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.at-item:last-child { border-bottom: none; }

.at-year {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    width: 40px;
    padding-top: 0.1rem;
}

.at-event strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}
.at-event span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* Team */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-team-card {
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.about-team-card:hover { transform: translateY(-4px); border-color: rgba(0,196,232,0.25); }

.atc-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 1rem;
}

.atc-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.atc-role {
    font-size: 0.75rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}

.atc-bio {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.atc-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}
.atc-skills span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 0.25rem 0.65rem;
}

/* ── Founders grid (2-col, expanded cards) ── */
.about-founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.about-founder-card {
    padding: 2.25rem;
}

.afc-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.afc-domains {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.25rem 0 1.5rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
}

.afc-domain {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.afc-domain-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.afc-domain strong {
    display: block;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.1rem;
}

.afc-domain span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
    display: block;
}

@media (max-width: 900px) {
    .about-founders-grid { grid-template-columns: 1fr; }
    .about-founder-card { padding: 1.5rem; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-left, .contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Form */
.contact-form-wrap {
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cf-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.88rem;
    color: white;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(255,255,255,0.22);
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: rgba(0,196,232,0.4);
    background: rgba(0,196,232,0.04);
}
.cf-field select option {
    background: #0a0c14;
    color: white;
}

.contact-success {
    padding: 2rem;
    text-align: center;
    border-color: rgba(92,255,157,0.25);
    background: rgba(92,255,157,0.06);
}
.contact-error {
    padding: 1.25rem 1.5rem;
    border-color: rgba(255,68,68,0.25);
}

/* Booking */
.contact-booking {
    padding: 1.5rem;
}
.contact-booking-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-booking-icon { font-size: 1.75rem; flex-shrink: 0; }
.contact-booking-header h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-booking-header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.4;
}

/* WhatsApp */
.contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.contact-whatsapp:hover {
    border-color: rgba(37,211,102,0.3);
    background: rgba(37,211,102,0.06);
}
.contact-wa-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-whatsapp strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
}
.contact-whatsapp span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}
.contact-wa-arrow { margin-left: auto; flex-shrink: 0; }

/* Socials */
.contact-socials {
    padding: 1.5rem;
}
.contact-socials h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.72rem;
}
.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.cs-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.cs-link:hover { background: rgba(255,255,255,0.07); color: white; }

/* Info card */
.contact-info-card { padding: 1.75rem; }
.contact-info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}
.cic-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.cic-item:last-child { margin-bottom: 0; }
.cic-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
.cic-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
}
.cic-item span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
    display: block;
}

/* Trust badge */
.contact-trust {
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.contact-trust-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════
   CASE STUDIES PAGE
══════════════════════════════════════════ */
.cs-card {
    padding: 2.5rem;
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cs-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.cs-client {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
}

.cs-industry {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

.cs-result-badge {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(0,196,232,0.15), rgba(0,112,160,0.15));
    border: 1px solid rgba(0,196,232,0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.cs-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cs-challenge h4, .cs-solution h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.75rem;
}

.cs-challenge p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.cs-solution ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cs-solution li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.55;
}
.cs-solution li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-size: 0.75rem;
}

.cs-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.025);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.75rem;
}

.cs-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}
.cs-num {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.cs-metric span:last-child {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
    text-align: center;
}

.cs-quote {
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.028);
    border-left: 3px solid var(--blue);
    border-radius: 0 12px 12px 0;
    font-size: 0.88rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.cs-quote strong { color: white; font-style: normal; }

/* ══════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════ */
.faq-category {
    margin-bottom: 3rem;
}
.faq-category:last-child { margin-bottom: 0; }

.faq-cat-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blue);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,196,232,0.18);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.18); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-align: left;
}

.faq-chevron {
    flex-shrink: 0;
    color: rgba(255,255,255,0.35);
    transition: transform 0.3s;
    /* Fix: path draws a V shape, rotate for chevron down */
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding: 0 1.4rem;
}

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

.faq-answer p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
}

/* ══════════════════════════════════════════
   LEGAL PAGE
══════════════════════════════════════════ */
.legal-body {
    padding: 2.5rem 3rem;
    line-height: 1.75;
}

.legal-body h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 2rem 0 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.85rem;
}

.legal-body ul {
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
}
.legal-body ul li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.4rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   RESPONSIVE — INNER PAGES
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-inner-wrap { padding: 1.1rem 2rem; }
    .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ip-features-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-body { grid-template-columns: 1fr; }
    .cs-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-inner-wrap { padding: 1rem 1.25rem; }
    .nav-links { display: none !important; }
    .nav-hamburger { display: flex; }
    .ip-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ip-features-grid { grid-template-columns: 1fr; }
    .about-team-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .cs-results-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-body { padding: 1.5rem; }
    .ip-hero { padding: 7.5rem 1.5rem 4rem; }
    .ip-section { padding: 3.5rem 1.25rem; }
    .ip-cta-section { padding: 4rem 1.25rem; }
    .nav-dropdown-panel { display: none; }
}

@media (max-width: 640px) {
    .cs-header { flex-direction: column; align-items: flex-start; }
    .cs-result-badge { margin-left: 0; }
    .cs-results-grid { grid-template-columns: repeat(2, 1fr); }
    .ip-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-trust { grid-template-columns: 1fr; }
    .about-team-grid { grid-template-columns: 1fr; }
    .cs-card { padding: 1.5rem; }
}


/* ══════════════════════════════════════════
   GRADIENT TEXT
══════════════════════════════════════════ */
.gradient-text {
    background: linear-gradient(135deg, #00C4E8, #00a8cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══════════════════════════════════════════
   PRICING PAGE — HERO
══════════════════════════════════════════ */
.pricing-page .ip-hero {
    min-height: auto;
    padding: 9rem 1.5rem 4rem;
    text-align: center;
}
.pricing-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 680px;
    margin: 1.25rem auto 1.5rem;
    line-height: 1.7;
}
.pricing-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.ptrust-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}

/* ══════════════════════════════════════════
   PRICING PAGE — PLAN CARDS
══════════════════════════════════════════ */
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: start;
}
.plan-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.plan-card.plan-popular {
    border-color: rgba(0,196,232,0.45);
    background: linear-gradient(135deg, rgba(0,196,232,0.1) 0%, rgba(0,112,160,0.06) 100%);
    box-shadow: 0 0 40px rgba(0,196,232,0.12);
}
.plan-card.plan-dominance {
    border-color: rgba(255,215,0,0.25);
    background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, rgba(255,165,0,0.03) 100%);
}
.plan-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
.plan-card .plan-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00C4E8;
    margin-bottom: 0.75rem;
    display: block;
}
.plan-card .plan-price {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    margin-bottom: 0.6rem;
}
.plan-card .plan-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}
.plan-card .plan-period {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.35rem;
}
.plan-card .plan-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}
.plan-highlights {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0 0 1.75rem;
    flex: 1;
}
.plan-highlights li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00C4E8, #0070A0);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}
.pricing-section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   PRICING — COMPARISON TABLE
══════════════════════════════════════════ */
.comparison-wrap {
    margin-top: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}
.comparison-table {
    width: 100%;
    font-size: 0.875rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.comparison-table .ct-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.comparison-table .ct-row:last-child { border-bottom: none; }
.comparison-table .ct-row.ct-header {
    border-bottom: 2px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 70px;
    z-index: 10;
}
.ct-plan-col, .ct-feature-col {
    padding: 0.75rem 1rem;
    text-align: center;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.ct-plan-col:last-child { border-right: none; }
.ct-feature-col {
    text-align: left;
    justify-content: flex-start;
    color: rgba(255,255,255,0.8);
}
.ct-plan-col.ct-popular-col {
    color: #00C4E8;
    font-weight: 700;
    background: rgba(0,196,232,0.04);
}
.ct-row.ct-header .ct-plan-col {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-direction: column;
    gap: 0.1rem;
    padding: 1rem 0.75rem;
}
.ct-row.ct-header .ct-plan-col br { display: none; }
.ct-row.ct-header .ct-feature-col {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.comparison-table .ct-header .ct-popular-col {
    color: #00C4E8 !important;
    background: rgba(0,196,232,0.07);
    border-radius: 8px 8px 0 0;
}
.ct-row.ct-subheader {
    background: rgba(0,196,232,0.05);
    border-top: 1px solid rgba(0,196,232,0.2);
    border-bottom: 1px solid rgba(0,196,232,0.12);
}
.ct-subheader-label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00C4E8;
    grid-column: 1 / -1;
}
.ct-subheader-label svg { flex-shrink: 0; stroke: #00C4E8; opacity: 0.85; }
.ct-check { color: #5CFF9D; font-size: 1rem; font-weight: 700; }
.ct-dash  { color: rgba(255,255,255,0.18); }
.ct-val   { color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; }
.ct-text  { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
/* ══════════════════════════════════════════
   PRICING — CONTENT PACKAGES
══════════════════════════════════════════ */
.cc-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.cc-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.cc-card.cc-card-popular {
    border-color: rgba(0,196,232,0.4);
    background: linear-gradient(135deg, rgba(0,196,232,0.08) 0%, rgba(0,112,160,0.04) 100%);
    box-shadow: 0 0 30px rgba(0,196,232,0.1);
}
.cc-card.cc-card-full {
    border-color: rgba(255,215,0,0.2);
    background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(255,165,0,0.02) 100%);
}
.cc-header { display: flex; flex-direction: column; gap: 0.35rem; }
.cc-ico { font-size: 1.5rem; margin-bottom: 0.25rem; }
.cc-header h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0; }
.cc-header p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0; }
.cc-sections { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.cc-features { display: flex; flex-direction: column; gap: 0.4rem; }
.cc-features li { font-size: 0.83rem; color: rgba(255,255,255,0.75); line-height: 1.45; }

@media (max-width: 1024px) {
    .pricing-plans-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cc-plans-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .comparison-table .ct-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (max-width: 600px) {
    .comparison-table .ct-row { grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr; font-size: 0.78rem; }
    .ct-plan-col, .ct-feature-col { padding: 0.6rem 0.5rem; }
}

/* ===== COMPARISON TABLE HEADER FIX v3.3 ===== */
/* Fix br tag line break inside flex container */
.comparison-table .ct-header .ct-plan-col {
    flex-direction: column;
    gap: 0.1rem;
    padding: 1rem 0.75rem;
}
.comparison-table .ct-header .ct-plan-col br {
    display: none;
}
.comparison-table .ct-header .ct-plan-col span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: none;
    letter-spacing: 0;
    margin-top: 0.1rem;
}
.comparison-table .ct-header .ct-feature-col {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
}
/* Popular column highlight in table */
.comparison-table .ct-header .ct-popular-col {
    color: #00C4E8 !important;
    background: rgba(0,196,232,0.07);
    border-radius: 8px 8px 0 0;
}
.comparison-table .ct-header .ct-popular-col span {
    color: rgba(0,196,232,0.75) !important;
}
.comparison-table .ct-row .ct-popular-col {
    background: rgba(0,196,232,0.03);
    border-left: 1px solid rgba(0,196,232,0.1);
    border-right: 1px solid rgba(0,196,232,0.1);
}
/* Slightly more visible card borders */
.plan-card {
    border-color: rgba(255,255,255,0.12) !important;
}
.plan-card.plan-popular {
    border-color: rgba(0,196,232,0.5) !important;
    box-shadow: 0 0 50px rgba(0,196,232,0.15), 0 8px 32px rgba(0,0,0,0.4) !important;
}
.plan-card.plan-dominance {
    border-color: rgba(255,215,0,0.2) !important;
}
