/* ================================================================
   9AM for B2B — Master Stylesheet
   No frameworks. Pure CSS. Optimized for performance & accessibility.
   ================================================================ */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
    --accent: #F5A623;
    --accent-light: #FFD180;
    --accent-rgb: 245, 166, 35;
    --bg: #0d0d0d;
    --bg-rgb: 13, 13, 13;
    --surface: rgba(255,255,255,0.03);
    --surface-strong: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(245,166,35,0.3);
    --text: #ffffff;
    --text-secondary: rgba(255,255,255,0.55);
    --text-muted: rgba(255,255,255,0.4);
    --text-faint: rgba(255,255,255,0.2);
    --red: #f87171;
    --red-bg: rgba(239,68,68,0.1);
    --green: #4ade80;
    --green-bg: rgba(34,197,94,0.1);
    --green-solid: #22c55e;
    --font-heading: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-hand: 'Caveat', cursive;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --max-w: 1400px;
    --px: clamp(1.25rem, 3vw, 2.5rem);
}

/* ── 2. RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
}

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

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

button { cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

::selection {
    background: rgba(var(--accent-rgb), 0.3);
    color: var(--text);
}

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────────── */
.text-xs    { font-size: 0.75rem; }
.text-sm    { font-size: 0.875rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }

.font-light    { font-weight: 300; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

.uppercase     { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.08em; }
.leading-tight   { line-height: 1.15; }
.leading-relaxed { line-height: 1.7; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
/* Warm gradient — readable on dark and accent backgrounds */
.text-gradient-warm {
    background: linear-gradient(135deg, #FFD180 0%, #F5A623 40%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── 4. LAYOUT ─────────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--px);
    padding-right: var(--px);
}

.section { padding: clamp(4rem, 8vw, 8rem) 0; }

.grid       { display: grid; }
.flex       { display: flex; }
.flex-wrap  { flex-wrap: wrap; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.shrink-0 { flex-shrink: 0; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-20 { gap: 5rem; }

.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 5. COMPONENTS ─────────────────────────────────────────────── */

/* 5.1 Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: top 0.3s;
}
.skip-link:focus {
    top: 16px;
    outline: 3px solid var(--text);
    outline-offset: 2px;
}

/* 5.2 Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    will-change: width;
}

/* 5.3 Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-logo {
    width: 60px;
    height: 60px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.1); opacity: 1; }
}

/* 5.4 Custom Cursor */
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid rgba(var(--accent-rgb), 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
}

/* 5.4b Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: rgba(245, 245, 245, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s var(--ease);
}
.top-bar.top-bar-hidden {
    transform: translateY(-100%);
}
.top-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.4rem var(--px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: rgba(0,0,0,0.5);
}
.top-bar-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(0,0,0,0.55);
    transition: color 0.3s;
    font-weight: 500;
}
.top-bar-location:hover {
    color: #c77d00;
}
.top-bar-location svg {
    flex-shrink: 0;
    color: #c77d00;
    opacity: 0.8;
}
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(0,0,0,0.5);
    transition: color 0.3s;
}
.top-bar-contact a:hover {
    color: #c77d00;
}
.top-bar-contact svg {
    flex-shrink: 0;
    opacity: 0.5;
}
.top-bar-sep {
    color: rgba(0,0,0,0.15);
    font-size: 0.65rem;
}
/* Mobile: hide top bar entirely */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .top-bar-inner {
        font-size: 0.65rem;
        padding: 0.35rem var(--px);
    }
    .top-bar-contact {
        display: none;
    }
    .top-bar-location {
        margin: 0 auto;
    }
}

/* 5.5 Navbar */
.navbar {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.4s, backdrop-filter 0.4s, top 0.35s var(--ease);
}
.navbar.scrolled {
    background: rgba(var(--bg-rgb), 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.navbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.navbar-industry {
    display: flex;
    align-items: center;
    gap: 0;
    height: 2.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.navbar-industry::-webkit-scrollbar { display: none; }
/* Hide industry bar on scroll */
.navbar-industry.ind-bar-hidden {
    max-height: 0;
    padding: 0;
    border-bottom: none;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.navbar-industry {
    max-height: 4rem;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.navbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.navbar-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.navbar-logo-text-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}
.navbar-logo-icon {
    width: 36px;
    height: 36px;
}
.navbar-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.navbar-logo-sub,
.navbar-logo-badge + .navbar-logo-sub { display: none; }
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.navbar-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.3s;
}
.navbar-phone:hover, .navbar-phone:focus-visible { color: var(--text); }

/* 5.6 Industry Bar Links */
/* Industry links hidden — only mega menu button visible */
.ind-link {
    display: none;
}
.ind-link:hover, .ind-link:focus-visible {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.05);
}
.ind-link.active {
    color: var(--bg);
    background: var(--accent);
    font-weight: 600;
}
.ind-link.active:hover {
    background: var(--accent-light);
}
/* "σύντομα" badge on hover */
.ind-soon {
    font-size: 0.55rem;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    padding: 1px 6px;
    border-radius: var(--radius-full);
    margin-left: 0.35rem;
    opacity: 0;
    transform: translateY(-2px);
    transition: all 0.3s var(--ease);
    letter-spacing: 0.02em;
    text-transform: lowercase;
}
.ind-link:hover .ind-soon {
    opacity: 1;
    transform: translateY(0);
}

/* 5.7 Tags & Pills */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tag-accent {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}
.tag-red {
    background: var(--red-bg);
    color: var(--red);
    border: 1px solid rgba(239,68,68,0.2);
}
.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

/* 5.8 Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.btn:hover::before { opacity: 1; }
.btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 0.75rem 2rem;
    font-size: 1rem;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px -8px rgba(var(--accent-rgb), 0.4);
}
.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--text); }
.btn-ghost:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}
.btn-ghost:hover .btn-icon { border-color: rgba(var(--accent-rgb), 0.4); }

.btn-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--green-solid);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(34,197,94,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(34,197,94,0.4);
}
.btn-whatsapp:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
}

/* 5.9 Glass Cards */
.glass {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.glass-strong {
    background: var(--surface-strong);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
}

/* 5.10 Bento Grid */
.bento-grid {
    display: grid;
    gap: 1rem;
}
.bento-card {
    padding: 1.75rem;
    transition: all 0.5s var(--ease);
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 24px 80px -12px rgba(var(--accent-rgb), 0.12);
}
.bento-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    background: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.5s var(--ease);
}
.bento-card:hover .bento-icon { transform: scale(1.1) rotate(-5deg); }
.bento-icon svg { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.bento-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.bento-card-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}
.bento-card--large .bento-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}
.bento-card--large .bento-icon svg { width: 1.75rem; height: 1.75rem; }
.bento-card--large .bento-card-title { font-size: 1.5rem; }
.bento-card--large .bento-card-text { max-width: 32rem; margin-bottom: 2rem; }
.bento-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
}
.bento-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(50%, -50%);
    transition: background 0.7s;
    pointer-events: none;
}
.bento-card:hover .bento-glow { background: rgba(var(--accent-rgb), 0.1); }

/* 5.11 Process Cards */
.process-grid { display: grid; gap: 1rem; }
.process-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s;
}
.process-card:hover { border-color: rgba(var(--accent-rgb), 0.2); }
.process-num {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(var(--accent-rgb), 0.06);
    font-family: var(--font-heading);
    position: absolute;
    top: -8px;
    right: 16px;
    pointer-events: none;
}
.process-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.process-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}
.process-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* 5.12 Feature Cards */
.feature-card {
    padding: 1.5rem;
    transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(var(--accent-rgb), 0.2); }
.feature-card-inner { display: flex; gap: 1rem; align-items: flex-start; }
.feature-check {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.feature-check svg { width: 1rem; height: 1rem; color: var(--accent); }
.feature-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.feature-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* 5.13 Testimonials */
.testimonial-grid { display: grid; gap: 1.5rem; }
.testimonial-card {
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(var(--accent-rgb), 0.08);
    line-height: 1;
    pointer-events: none;
}
.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}
.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent);
}
.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 5.14 FAQ */
.faq-category { margin-bottom: 1.5rem; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}
.faq-category-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
}
.faq-category-count {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item { overflow: hidden; }
.faq-item + .faq-item { margin-top: 0.4rem; }
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}
.faq-trigger:hover, .faq-trigger:focus-visible { color: var(--accent); }
.faq-trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: var(--radius-sm); }
.faq-chevron {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: var(--text-faint);
    transition: transform 0.3s var(--ease);
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq-answer[aria-hidden="false"] { max-height: 600px; }
.faq-answer-inner {
    padding: 0 1.2rem 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* 5.15 Contact Form */
.form-field {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1.125rem;
    color: var(--text);
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}
.form-field:focus {
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(var(--accent-rgb), 0.03);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.06);
}
.form-field::placeholder { color: var(--text-faint); }
.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
select.form-field {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
select.form-field option { background: var(--bg); color: var(--text); }
textarea.form-field { resize: none; }
.form-submit {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
}
.form-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
    margin-top: 0.75rem;
}
.form-success {
    text-align: center;
    padding: 4rem 0;
}
.form-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.form-success-icon svg { width: 1.75rem; height: 1.75rem; color: var(--green); }

/* 5.16 Contact Info */
.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-link-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}
.contact-link-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-link-label {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-bottom: 0.125rem;
}
.contact-link-value {
    font-family: var(--font-heading);
    font-weight: 600;
    transition: color 0.3s;
}
.contact-link:hover .contact-link-value,
.contact-link:focus-visible .contact-link-value { color: var(--accent); }
.contact-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}
.contact-link--whatsapp:hover .contact-link-value,
.contact-link--whatsapp:focus-visible .contact-link-value { color: var(--green); }
.contact-link--whatsapp:hover .contact-link-icon { border-color: rgba(34,197,94,0.3); }

/* 5.17 Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-brand-icon { width: 28px; height: 28px; }
.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}
.footer-brand-sub {
    color: var(--text-faint);
    font-size: 0.75rem;
}
.footer-msg-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--ease);
}
.footer-msg-icon:hover {
    transform: scale(1.15);
}
.footer-msg-icon svg {
    display: block;
}
/* Viber contact link */
.contact-link--viber:hover .contact-link-value,
.contact-link--viber:focus-visible .contact-link-value { color: #7360F2; }
.contact-link--viber:hover .contact-link-icon { border-color: rgba(115, 96, 242, 0.3); }

/* Colored WhatsApp & Viber contact buttons */
.contact-link-icon--whatsapp {
    background: var(--green-solid) !important;
    border: none !important;
    color: #fff;
}
.contact-link-icon--whatsapp svg { color: #fff; fill: #fff; }
.contact-link-icon--viber {
    background: #7360F2 !important;
    border: none !important;
    color: #fff;
}
.contact-link-icon--viber svg { color: #fff; fill: #fff; }

.contact-link--colored:hover .contact-link-icon--whatsapp {
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}
.contact-link--colored:hover .contact-link-icon--viber {
    box-shadow: 0 8px 24px rgba(115, 96, 242, 0.3);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.footer-social a {
    color: var(--text-faint);
    transition: color 0.3s;
    display: flex;
}
.footer-social a:hover, .footer-social a:focus-visible { color: var(--accent); }
.footer-social a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.footer-social svg { width: 1rem; height: 1rem; }
.footer-copy { font-size: 0.75rem; color: var(--text-faint); }

/* 5.18 Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    padding: 1.25rem var(--px);
    background: rgba(var(--bg-rgb), 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 280px;
}
.cookie-actions { display: flex; gap: 0.75rem; }
.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-btn-accept {
    background: var(--accent);
    color: var(--bg);
    border: none;
}
.cookie-btn-accept:hover { box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3); }
.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.cookie-btn-reject:hover { border-color: var(--text-muted); }

/* ── DRAMATIC EFFECTS ──────────────────────────────────────────── */

/* Aurora animated blobs */
.aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: auroraFloat 12s ease-in-out infinite;
}
.aurora-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15), transparent 70%);
    top: -10%; left: -5%;
    animation-delay: 0s;
}
.aurora-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1), transparent 70%);
    top: 20%; right: -10%;
    animation-delay: -4s;
    animation-duration: 15s;
}
.aurora-blob-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(245,130,80,0.08), transparent 70%);
    bottom: 10%; left: 30%;
    animation-delay: -8s;
    animation-duration: 18s;
}
@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(30px, -40px) scale(1.1); }
    50%      { transform: translate(-20px, 20px) scale(0.95); }
    75%      { transform: translate(40px, 30px) scale(1.05); }
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(var(--accent-rgb), 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}
.particle:nth-child(1)  { left: 10%; top: 20%; animation-duration: 8s; animation-delay: 0s; width: 2px; height: 2px; }
.particle:nth-child(2)  { left: 25%; top: 60%; animation-duration: 12s; animation-delay: -3s; }
.particle:nth-child(3)  { left: 45%; top: 30%; animation-duration: 10s; animation-delay: -5s; width: 4px; height: 4px; opacity: 0.5; }
.particle:nth-child(4)  { left: 65%; top: 70%; animation-duration: 14s; animation-delay: -2s; width: 2px; height: 2px; }
.particle:nth-child(5)  { left: 80%; top: 15%; animation-duration: 9s; animation-delay: -7s; }
.particle:nth-child(6)  { left: 90%; top: 50%; animation-duration: 11s; animation-delay: -1s; width: 2px; height: 2px; }
.particle:nth-child(7)  { left: 35%; top: 80%; animation-duration: 13s; animation-delay: -6s; }
.particle:nth-child(8)  { left: 55%; top: 10%; animation-duration: 7s; animation-delay: -4s; width: 4px; height: 4px; opacity: 0.4; }
@keyframes particleFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

/* Animated gradient border card */
.gradient-border {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.5), transparent 40%, transparent 60%, rgba(var(--accent-rgb), 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.5s;
}
.gradient-border:hover::before {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.8), rgba(var(--accent-rgb), 0.2) 40%, transparent 60%, rgba(var(--accent-rgb), 0.5));
}

/* Rotating gradient border (animated) */
.rotating-border {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 1px;
}
.rotating-border::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent, var(--accent), transparent, transparent);
    animation: rotateBorder 4s linear infinite;
}
.rotating-border-inner {
    position: relative;
    background: var(--bg);
    border-radius: calc(var(--radius-xl) - 1px);
    padding: 2.5rem;
    z-index: 1;
}
@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

/* Glow pulse button */
.btn-glow {
    animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2), 0 0 60px rgba(var(--accent-rgb), 0.1); }
    50%      { box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.4), 0 0 80px rgba(var(--accent-rgb), 0.2); }
}

/* Animated glow line */
.glow-line-animated {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.4), transparent);
    position: relative;
    overflow: hidden;
}
.glow-line-animated::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: glowLineSlide 3s ease-in-out infinite;
}
@keyframes glowLineSlide {
    0%   { left: -50%; }
    100% { left: 150%; }
}

/* Big number / metric display */
.metric {
    text-align: center;
    padding: 2.5rem 1rem;
}
.metric-value {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.metric-value .metric-accent {
    color: var(--accent);
}
.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Trust / "Why us" section */
.why-grid {
    display: grid;
    gap: 1.5rem;
}
.why-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.5s var(--ease);
    transform: translateX(-50%);
}
.why-card:hover::after { width: 60%; }
.why-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.why-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    background: rgba(var(--accent-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s var(--ease);
}
.why-card:hover .why-card-icon {
    background: rgba(var(--accent-rgb), 0.15);
    transform: scale(1.1);
}
.why-card-icon svg { width: 1.75rem; height: 1.75rem; color: var(--accent); }
.why-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.why-card-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Showcase / Portfolio preview */
.showcase {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), rgba(var(--accent-rgb), 0.02));
}
.showcase-mockup {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    overflow: hidden;
}
.showcase-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}
.showcase-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
}
.showcase-dot-red    { background: #ff5f57; }
.showcase-dot-yellow { background: #ffbd2e; }
.showcase-dot-green  { background: #28c840; }
.showcase-url {
    flex: 1;
    margin-left: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
}
.showcase-content {
    padding: 2rem;
    min-height: 250px;
}
.showcase-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 12px;
}
.showcase-line:nth-child(1) { width: 60%; height: 16px; background: rgba(var(--accent-rgb), 0.1); margin-bottom: 20px; }
.showcase-line:nth-child(2) { width: 90%; }
.showcase-line:nth-child(3) { width: 75%; }
.showcase-line:nth-child(4) { width: 85%; }
.showcase-line:nth-child(5) { width: 40%; margin-top: 20px; height: 32px; border-radius: 8px; background: rgba(var(--accent-rgb), 0.08); }

/* Comparison before/after */
.comparison-row {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}
.comparison-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    position: relative;
}
.comparison-bad {
    background: rgba(239,68,68,0.03);
    border: 1px solid rgba(239,68,68,0.1);
}
.comparison-good {
    background: rgba(var(--accent-rgb), 0.03);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
}
.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.comparison-badge-bad {
    background: rgba(239,68,68,0.1);
    color: var(--red);
}
.comparison-badge-good {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}
.comparison-list {
    list-style: none;
    padding: 0;
}
.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-list li:last-child { border-bottom: none; }
.comparison-x {
    width: 1.25rem; height: 1.25rem;
    color: var(--red);
    flex-shrink: 0;
}
.comparison-check {
    width: 1.25rem; height: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* ── 6. SECTION-SPECIFIC ───────────────────────────────────────── */

/* 6.1 Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 5rem;
    position: relative;
}
.hero-content { max-width: 48rem; position: relative; z-index: 2; }
.hero-title {
    font-size: clamp(2.2rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 36rem;
    margin-bottom: 3rem;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
.stat-value {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-family: var(--font-heading);
    font-weight: 700;
}
.stat-suffix { color: var(--accent); }
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.stat-label svg { width: 0.75rem; height: 0.75rem; color: var(--accent); }
.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255,255,255,0.05);
}
.hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
}
.hero-visual-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
    filter: blur(60px);
}
.hero-visual-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(6deg);
    width: 12rem;
    height: 12rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-shape svg { width: 4rem; height: 4rem; color: rgba(var(--accent-rgb), 0.3); }

/* Orbiting dots */
.orb {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}
.orb-1 { width: 12px; height: 12px; background: rgba(var(--accent-rgb), 0.6); }
.orb-2 { width: 8px; height: 8px; background: rgba(var(--accent-rgb), 0.3); animation-delay: -7s; animation-duration: 15s; }
@keyframes orbit {
    0%   { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* 6.2 Mesh Gradient Background */
.mesh-gradient {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(var(--accent-rgb), 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(var(--accent-rgb), 0.04) 0%, transparent 40%);
}

/* 6.3 Noise Texture */
.noise::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* 6.4 Grid Pattern */
.grid-pattern {
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* 6.4a Section Bridge — logo circle between sections */
.section-bridge {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    height: 0;
}
.section-bridge-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    box-shadow: none;
    transform: translateY(-50%);
    position: relative;
    z-index: 5;
}
.section-bridge-circle img {
    width: 34px;
    height: 34px;
}

/* 6.4b Section accent backgrounds — break the monotony */
.section-accent {
    background: linear-gradient(135deg, #F5A623 0%, #e8951a 50%, #d4840f 100%) !important;
    position: relative;
}
.section-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.section-accent .section-title,
.section-accent .text-gradient,
.section-accent > .container > .reveal > p,
.section-accent > .container > .reveal > strong {
    color: #0d0d0d;
}
.section-accent .text-gradient {
    background: none;
    -webkit-text-fill-color: #0d0d0d;
}
.section-accent .text-gradient-warm {
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
.section-accent .section-title-muted { color: rgba(13,13,13,0.5); }
.section-accent .tag-pill { background: rgba(13,13,13,0.12); color: #0d0d0d; border-color: rgba(13,13,13,0.2); }
.section-accent .tag-dot { background: #0d0d0d; }
.section-accent .glass {
    background: rgba(13,13,13,0.85);
    border-color: rgba(13,13,13,0.3);
    backdrop-filter: blur(12px);
}
.section-accent .bento-card-title,
.section-accent .bento-card-text,
.section-accent .bento-tag {
    color: var(--text);
}
.section-accent .bento-icon {
    color: var(--accent);
}
.section-accent .bento-glow {
    opacity: 0.3;
}
.section-accent .bento-card--highlight {
    background: rgba(13,13,13,0.9);
    border-color: rgba(255,255,255,0.1);
}
.section-accent .bento-card--highlight .bento-card-title {
    color: var(--text);
}
.section-accent .process-step-num {
    background: #0d0d0d;
    color: var(--accent);
}
.section-accent .process-step-title { color: #0d0d0d; }
.section-accent .process-step-text { color: rgba(13,13,13,0.7); }
.section-accent .process-section-title {
    color: #0d0d0d;
}
.section-accent .why-card-icon {
    color: #0d0d0d;
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}
.section-accent .why-card-icon--highlight {
    background: rgba(13,13,13,0.15);
    color: #fff;
}
.section-accent .particle { background: rgba(255,255,255,0.2); }
.section-accent .handwriting { color: rgba(13,13,13,0.6); }

.section-warm {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%),
        #141210;
}
.section-elevated {
    background: #111111;
}

/* 6.5 Glow Line Divider */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.4), transparent);
}

/* 6.6 Marquee */
.marquee { padding: 1.25rem 0; overflow: hidden; }
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: running; }
.marquee-items {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.marquee-sep { color: rgba(var(--accent-rgb), 0.3); }
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 6.7 Section Headers */
.section-tag { margin-bottom: 1.5rem; }
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
}
.section-title-muted { color: var(--text-faint); }

.handwriting {
    font-family: var(--font-hand);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--accent);
    opacity: 0.75;
    transform: rotate(-2deg);
    display: inline-block;
    margin-top: 0.75rem;
}

/* 6.8 Problem Section */
.problem-cards { display: grid; gap: 1rem; }
.problem-card {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.problem-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: var(--red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.problem-icon svg { width: 1.25rem; height: 1.25rem; color: var(--red); }
.problem-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.problem-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* 6.9 CTA Section */
.cta-section {
    text-align: center;
    padding: clamp(4rem, 8vw, 8rem) 0;
}
.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-sub {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ── 7. ANIMATIONS ─────────────────────────────────────────────── */

/* Hero entrance */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

.hero-badge-row { animation: fadeInUp 0.8s var(--ease) 0.15s both; }
.hero-tag   { animation: fadeInUp 0.8s var(--ease) 0.2s both; }
.hero-title { animation: fadeInUp 1s var(--ease) 0.4s both; }
.hero-sub   { animation: fadeInUp 0.8s var(--ease) 0.7s both; }
.hero-ai-badge { animation: fadeInUp 0.8s var(--ease) 0.8s both; }
.hero-ctas  { animation: fadeInUp 0.8s var(--ease) 0.9s both; }
.hero-stats { animation: fadeInUp 0.8s var(--ease) 1.1s both; }
.hero-visual { animation: scaleIn 1.2s var(--ease) 0.6s both; }

/* ── SPLIT-SCREEN HERO ──────────────────────────────────────── */
.hero-split {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 3rem;
}
.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .hero-split { padding-top: 8rem; }
}

/* Hero Image Column */
.hero-image-col {
    position: relative;
    animation: fadeInUp 1s var(--ease) 0.5s both;
}
.hero-image-wrapper {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}
.hero-image-glow {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}
.hero-image-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    box-shadow:
        0 32px 80px -20px rgba(0, 0, 0, 0.5),
        0 0 60px -10px rgba(var(--accent-rgb), 0.1);
}
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Floating stat elements around the image */
.hero-float-el {
    position: absolute;
    z-index: 2;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    background: rgba(var(--bg-rgb), 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.hero-float-el-1 {
    top: 8%;
    right: -10%;
    animation: floatSlow 6s ease-in-out infinite;
}
.hero-float-el-2 {
    bottom: 12%;
    left: -8%;
    animation: floatSlow 6s ease-in-out 3s infinite;
}
.hero-float-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
    line-height: 1;
}
.hero-float-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Hero floating quote bubbles */
.hero-bubble {
    position: absolute;
    z-index: 3;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: rgba(var(--bg-rgb), 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.hero-bubble::before {
    content: '\201C';
    color: var(--accent);
    font-weight: 700;
    margin-right: 4px;
    font-size: 1em;
}
.bubble-accent {
    color: var(--accent);
    font-weight: 700;
}

/* Group A: visible first, then fades */
.hero-bubble--a {
    animation: bubbleCycleA 8s ease-in-out 1s infinite, floatBubble1 7s ease-in-out infinite;
}
/* Group B: hidden first, then fades in */
.hero-bubble--b {
    animation: bubbleCycleB 8s ease-in-out 1s infinite, floatBubble2 7s ease-in-out infinite;
}

/* Positions */
.hero-bubble-1 { top: 2%;    right: 5%;   }
.hero-bubble-2 { top: 35%;   left: -14%;  }
.hero-bubble-3 { bottom: 8%; right: 0;    }
.hero-bubble-4 { top: 2%;    right: 5%;   }
.hero-bubble-5 { top: 35%;   left: -14%;  }
.hero-bubble-6 { bottom: 8%; right: 0;    }

/* Cycle: A shows 0-45%, fades 45-50%, hidden 50-95%, fades in 95-100% */
@keyframes bubbleCycleA {
    0%   { opacity: 0; transform: translateY(6px); }
    5%   { opacity: 1; transform: translateY(0); }
    42%  { opacity: 1; transform: translateY(0); }
    48%  { opacity: 0; transform: translateY(-6px); }
    95%  { opacity: 0; transform: translateY(6px); }
    100% { opacity: 0; transform: translateY(6px); }
}
/* Cycle: B hidden 0-45%, fades in 45-50%, shows 50-95%, fades 95-100% */
@keyframes bubbleCycleB {
    0%   { opacity: 0; transform: translateY(6px); }
    45%  { opacity: 0; transform: translateY(6px); }
    52%  { opacity: 1; transform: translateY(0); }
    92%  { opacity: 1; transform: translateY(0); }
    98%  { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes floatBubble1 {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@keyframes floatBubble2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-5px) translateX(3px); }
}

@media (max-width: 1023px) {
    .hero-bubble { font-size: 0.75rem; padding: 8px 16px; }
    .hero-bubble-2, .hero-bubble-5 { left: -6%; }
}
@media (max-width: 639px) {
    .hero-bubble {
        font-size: 0.65rem;
        padding: 5px 10px;
        max-width: 140px;
        white-space: normal;
        line-height: 1.3;
    }
    .hero-bubble-1 { top: 0;     right: 0;   }
    .hero-bubble-2 { top: 30%;   left: -5%;  }
    .hero-bubble-3 { bottom: 5%; right: -2%; }
    .hero-bubble-4 { top: 0;     right: 0;   }
    .hero-bubble-5 { top: 30%;   left: -5%;  }
    .hero-bubble-6 { bottom: 5%; right: -2%; }
}

/* Accent corner decorations */
.hero-accent-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
}
.hero-accent-corner--tl {
    top: -8px;
    left: -8px;
    border-top: 2px solid rgba(var(--accent-rgb), 0.4);
    border-left: 2px solid rgba(var(--accent-rgb), 0.4);
    border-top-left-radius: 12px;
}
.hero-accent-corner--br {
    bottom: -8px;
    right: -8px;
    border-bottom: 2px solid rgba(var(--accent-rgb), 0.4);
    border-right: 2px solid rgba(var(--accent-rgb), 0.4);
    border-bottom-right-radius: 12px;
}

/* Mobile adjustments for split hero */
@media (max-width: 1023px) {
    .hero-split { min-height: auto; padding-top: 8rem; padding-bottom: 3rem; }
    .hero-image-wrapper { max-width: 400px; }
    .hero-float-el-1 { right: 0; }
    .hero-float-el-2 { left: 0; }
    .hero-image { aspect-ratio: 4 / 3; }
}
@media (max-width: 639px) {
    .hero-float-el { display: none; }
    .hero-accent-corner { display: none; }
    .hero-image-wrapper { max-width: 100%; }
}

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

/* Counter animation */
.counter[data-animated] .stat-value {
    animation: fadeIn 0.5s var(--ease) both;
}

/* ── 8. ACCESSIBILITY ──────────────────────────────────────────── */

/* Focus visible */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
*:focus:not(:focus-visible) { outline: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track { animation: none; }
    .reveal { opacity: 1; transform: none; }
    .hero-badge-row, .hero-tag, .hero-title, .hero-sub, .hero-ai-badge, .hero-ctas, .hero-stats, .hero-visual, .hero-image-col {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .preloader { display: none; }
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: rgba(255,255,255,0.8);
        --text-muted: rgba(255,255,255,0.7);
        --text-faint: rgba(255,255,255,0.6);
        --border: rgba(255,255,255,0.3);
    }
}

/* ── 9. RESPONSIVE ─────────────────────────────────────────────── */

/* Small screens */
@media (max-width: 639px) {
    .hero { min-height: auto; padding-bottom: 4rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-stats { gap: 1.5rem; }
    .stat-divider { display: none; }
    .navbar { top: 0; background: rgba(var(--bg-rgb), 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
    .navbar-main { height: 3.5rem; }
    .navbar-logo-icon { width: 28px; height: 28px; }
    .navbar-logo { gap: 0.4rem; }
    .navbar-logo-text { font-size: 0.55rem; font-weight: 400; max-width: 120px; white-space: normal; line-height: 1.25; }
    .navbar-logo-badge { display: none; }
    .navbar-actions .btn-sm { display: none; }
    .mega-menu-toggle { font-size: 0; gap: 0; padding: 0.6rem; border-radius: 50%; min-width: 36px; min-height: 36px; justify-content: center; }
    .mega-menu-toggle svg { width: 1rem; height: 1rem; }
    .hero-split { padding-top: 5.5rem; padding-bottom: 2rem; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .rotating-border-inner { padding: 1.25rem; }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .mega-card { padding: 1rem; }
    .mega-menu-panel.mega-open { max-height: 60vh; overflow-y: auto; }
    .contact-grid { gap: 3rem; }
    .aurora-blob { animation-duration: 30s; }
    .aurora-blob-1 { width: 250px; height: 250px; }
    .aurora-blob-2 { width: 200px; height: 200px; }
    .aurora-blob-3 { width: 175px; height: 175px; }
    .particle { display: none; }
    .hero-experience-text { font-size: 0.75rem; }
    .linkedin-handles { min-width: 0; width: calc(100vw - 3rem); left: 0; transform: none; }
}

/* Medium screens */
@media (min-width: 640px) {
    .navbar-logo-badge { display: inline-flex; }
    .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
    .navbar-phone { display: flex; }
    .cursor-dot, .cursor-ring { display: block; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
    .bento-card--large { grid-column: span 2; grid-row: span 2; }
    .bento-card--large .bento-card-title { font-size: 1.75rem; }
    .process-grid { grid-template-columns: repeat(4, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { flex-direction: row; justify-content: space-between; }
    .problem-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; align-items: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; align-items: flex-start; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
    .features-sticky { position: sticky; top: 10rem; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .metrics-grid { grid-template-columns: repeat(4, 1fr); }
    .comparison-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .hero-visual { display: block; }
}

/* Hide hero visual on smaller screens */
.hero-visual { display: none; }

/* Mobile cursor is hidden */
.cursor-dot, .cursor-ring { display: none; }

/* ── 10. NEW COMPONENTS ────────────────────────────────────────── */

/* 10.1 Industry Bar — Icons + Greek Labels */
/* .ind-link hidden — see rule above */
.ind-link-icon {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
}
.ind-link-icon svg {
    width: 1rem;
    height: 1rem;
}
.ind-link.active .ind-link-icon { color: var(--bg); }

/* 10.2 Hero Badge Row — 20 Years + Tag */
.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.hero-experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.05));
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    animation: fadeInUp 0.8s var(--ease) 0.1s both;
}
.hero-experience-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
    line-height: 1;
}
.hero-experience-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    line-height: 1.3;
}
/* 10.3 Hero Title — Smaller variant (30% smaller) */
.hero-title--smaller {
    font-size: clamp(1.6rem, 4.5vw, 3.5rem);
}

/* 10.3b Navbar Logo Badge — "by 9AM" */
.navbar-logo-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(var(--accent-rgb), 0.25);
}
.navbar-logo-text {
    font-size: 1rem;
}

/* 10.3c Enhanced Hero Visual (right side) */
.hero-visual-enhanced {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    display: none;
    animation: scaleIn 1.2s var(--ease) 0.6s both;
}
@media (min-width: 1024px) {
    .hero-visual-enhanced { display: block; }
}
.hero-visual-enhanced .hero-visual-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), transparent);
    filter: blur(60px);
}
.hero-visual-enhanced .hero-visual-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(6deg);
    width: 10rem;
    height: 10rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-enhanced .hero-visual-shape svg {
    width: 3.5rem;
    height: 3.5rem;
    color: rgba(var(--accent-rgb), 0.3);
}
.hero-visual-enhanced .orb {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}
.hero-visual-enhanced .orb-1 { width: 12px; height: 12px; background: rgba(var(--accent-rgb), 0.6); }
.hero-visual-enhanced .orb-2 { width: 8px; height: 8px; background: rgba(var(--accent-rgb), 0.3); animation-delay: -7s; animation-duration: 15s; }
.hero-visual-enhanced .orb-3 { width: 6px; height: 6px; background: rgba(139, 92, 246, 0.4); animation-delay: -3s; animation-duration: 12s; }

/* Floating stat cards on hero visual */
.hero-float-card {
    position: absolute;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
}
.hero-float-card-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}
.hero-float-card-2 {
    bottom: 25%;
    left: 0;
    animation-delay: -2s;
}
.hero-float-card-3 {
    bottom: 8%;
    right: 15%;
    animation-delay: -4s;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-float-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
}
.hero-float-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-float-stars {
    display: flex;
    gap: 2px;
}
.hero-float-stars svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--accent);
}

/* 10.3d Client Logos — Clean, no boxes */
.client-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    transition: all 0.4s var(--ease);
}
.client-logo-wrap:hover {
    transform: none;
}
.client-logo-color {
    height: 26px;
    max-height: 26px;
    width: auto;
    display: block;
}

/* 10.3e Compact Process Steps */
.process-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.process-grid-compact {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .process-grid-compact { grid-template-columns: repeat(4, 1fr); }
}
.process-step-compact {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.process-step-num {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
}
.process-step-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.process-step-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* 10.3f Deliverables Section */
.deliverables-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .deliverables-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.deliverables-col {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2rem;
}
.deliverables-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.deliverables-col-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}
.deliverables-col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}
.deliverable-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.deliverable-item:last-child { border-bottom: none; }
.deliverable-check {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.deliverable-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.deliverable-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 10.3g LinkedIn Tag — Solid Blue */
.tag-linkedin {
    background: #0A66C2;
    color: #ffffff;
    border: 1px solid #0A66C2;
    position: relative;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.tag-linkedin:hover {
    background: #004182;
    border-color: #004182;
}
.tag-linkedin svg {
    fill: #ffffff !important;
}
/* LinkedIn hover dropdown */
.linkedin-pill-wrap {
    position: relative;
    display: inline-block;
}
.linkedin-handles {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 5;
}
.linkedin-pill-wrap:hover .linkedin-handles {
    opacity: 1;
    visibility: visible;
}
.linkedin-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: #0A66C2;
    border: 1px solid #0A66C2;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}
.linkedin-handle svg {
    fill: #ffffff;
}
.linkedin-handle:hover {
    background: #004182;
    color: #fff;
    border-color: #004182;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* 10.3g AI Badge */
.hero-ai-badge {
    margin-bottom: 2rem;
}
.ai-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(var(--accent-rgb), 0.08));
    border: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}
.ai-badge-icon {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    color: #a78bfa;
    animation: sparkle 2s ease-in-out infinite;
}
.ai-badge-icon svg {
    width: 100%;
    height: 100%;
}
@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2) rotate(15deg); }
}
.ai-badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.ai-badge-text strong {
    color: var(--text);
}
.ai-badge-divider {
    color: var(--text-faint);
}
.ai-badge-highlight {
    background: linear-gradient(135deg, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* 10.5 Client Logos — Subtle elevated section */
.clients-section {
    padding: 3rem 0;
}
.clients-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 var(--px);
}
.clients-trust-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    white-space: nowrap;
}
.clients-trust-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.3), transparent);
}
.client-logo-color {
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: all 0.4s var(--ease);
}
.client-logo-color:hover {
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* 10.6 Comparison — 9AM Branding */
.comparison-9am-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(var(--accent-rgb), 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.comparison-9am-brand strong {
    color: var(--accent);
}
.comparison-badge-good {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.comparison-badge-good img {
    display: inline-block;
}

/* 10.7 Partnership Banner */
.partnership-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 3rem;
    text-align: center;
    flex-wrap: wrap;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04), rgba(var(--accent-rgb), 0.01));
}
.partnership-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.partnership-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    line-height: 1;
}
.partnership-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.partnership-divider {
    width: 1px;
    height: 3.5rem;
    background: rgba(var(--accent-rgb), 0.15);
}

/* 10.8 Support Highlight */
.support-highlight {
    padding: 2rem;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04), transparent);
}
.support-highlight-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.support-icon {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    border-radius: var(--radius-md);
    background: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--accent);
}
.support-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.support-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* 10.9 Testimonial Slider */
.testimonial-slider {
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}
.testimonial-slide {
    min-width: 100%;
    padding: 0 0.5rem;
    display: flex;
}
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-muted);
}
.testimonial-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
}
.testimonial-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}
.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-faint);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 18px;
    background-clip: content-box;
    box-sizing: content-box;
}
.testimonial-dot.active {
    background: var(--accent);
    background-clip: content-box;
    width: 24px;
    border-radius: 4px;
}

/* 10.10 Dot Navigation (Right side) */
.dot-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}
.dot-nav.visible {
    opacity: 1;
}
.dot-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    flex-direction: row-reverse;
}
.dot-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.dot-nav-item:hover .dot-nav-dot {
    background: rgba(var(--accent-rgb), 0.3);
    border-color: rgba(var(--accent-rgb), 0.5);
    transform: scale(1.2);
}
.dot-nav-item.active .dot-nav-dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
}
.dot-nav-label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s var(--ease);
    pointer-events: none;
}
.dot-nav-item:hover .dot-nav-label {
    opacity: 1;
    transform: translateX(0);
    color: var(--text-muted);
}
.dot-nav-item.active .dot-nav-label {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent);
}

/* 10.11 Support/Highlight bento card — right of large card, double height */
.bento-card--highlight {
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06), rgba(var(--accent-rgb), 0.02));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .bento-card--highlight {
        grid-row: span 2;
    }
}
.bento-card--highlight .bento-icon {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.08));
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}
.bento-card--highlight .bento-card-title {
    color: var(--accent);
}

/* 10.11b "Why" card highlight variant */
.why-card-icon--highlight {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.05));
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

/* 10.12 Color accents — subtle colored sections */
.section:nth-of-type(even) {
    background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.02) 50%, transparent);
}

/* Desktop slider: show 3 testimonials */
@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 33.333%;
    }
    .partnership-banner {
        flex-wrap: nowrap;
    }
}

/* Hide dot nav on mobile */
@media (max-width: 1023px) {
    .dot-nav { display: none; }
}

/* Mobile adjustments for new components */
@media (max-width: 639px) {
    .hero-badge-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .ai-badge-inner { flex-direction: row; flex-wrap: wrap; padding: 8px 14px; font-size: 0.7rem; }
    .partnership-banner { gap: 1.5rem; padding: 2rem 1.5rem; }
    .partnership-divider { width: 3rem; height: 1px; }
    .support-highlight-inner { flex-direction: column; }
    .testimonial-slide { min-width: 100%; }
}

@media (min-width: 640px) and (max-width: 767px) {
    .testimonial-slide { min-width: 50%; }
}

/* 10.12b Mega Menu */
.mega-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.mega-menu-toggle:hover {
    background: rgba(var(--accent-rgb), 0.15);
    border-color: rgba(var(--accent-rgb), 0.3);
}
.mega-menu-toggle svg {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 0.3s var(--ease);
}
.mega-menu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(var(--bg-rgb), 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    z-index: 99;
}
.mega-menu-panel.mega-open {
    max-height: 45vh;
    padding: 2rem 0 2.5rem;
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}
.mega-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.mega-card:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -10px rgba(var(--accent-rgb), 0.15);
}
.mega-card.mega-card--active {
    border-color: rgba(var(--accent-rgb), 0.4);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06), rgba(var(--accent-rgb), 0.02));
}
.mega-card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-card-icon svg {
    width: 2rem;
    height: 2rem;
}
.mega-card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.mega-card-status {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
}
.mega-card--active .mega-card-status {
    color: var(--accent);
}
.mega-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    pointer-events: none;
}
.mega-menu-overlay.mega-overlay-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 10.13 Hero Variants */

/* Variant 2: Abstract Glow Orb */
.hero-visual-v2 {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    display: none;
    animation: scaleIn 1.2s var(--ease) 0.6s both;
}
@media (min-width: 1024px) {
    .hero-visual-v2 { display: block; }
}
.hero-v2-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.25), rgba(var(--accent-rgb), 0.05) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(30px);
    animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.hero-v2-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    transform: translate(-50%, -50%);
    animation: ringExpand 6s ease-out infinite;
}
.hero-v2-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.hero-v2-ring-2 { width: 300px; height: 300px; animation-delay: -2s; border-color: rgba(var(--accent-rgb), 0.06); }
.hero-v2-ring-3 { width: 400px; height: 400px; animation-delay: -4s; border-color: rgba(var(--accent-rgb), 0.03); }
@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Variant 3: Geometric Scale */
.hero-visual-v3 {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    display: none;
    animation: scaleIn 1.2s var(--ease) 0.6s both;
}
@media (min-width: 1024px) {
    .hero-visual-v3 { display: block; }
}
.hero-v3-scale {
    width: 100%;
    height: 100%;
    animation: floatCard 8s ease-in-out infinite;
}

/* Variant 4: Browser Mockup */
.hero-visual-v4 {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%) perspective(1000px) rotateY(-8deg) rotateX(2deg);
    width: 480px;
    display: none;
    animation: fadeInUp 1s var(--ease) 0.6s both;
}
@media (min-width: 1024px) {
    .hero-visual-v4 { display: block; }
}
.hero-v4-mockup {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 60px rgba(var(--accent-rgb), 0.08);
}
.hero-v4-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--border);
}
.hero-v4-dots {
    display: flex;
    gap: 6px;
}
.hero-v4-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}
.hero-v4-url {
    flex: 1;
    margin-left: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.hero-v4-content {
    padding: 1.5rem;
    min-height: 200px;
}
.hero-v4-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 8px;
}
.hero-v4-line--heading {
    width: 60%;
    height: 14px;
    background: rgba(var(--accent-rgb), 0.12);
    margin-bottom: 16px;
}
.hero-v4-line--sub {
    background: rgba(255,255,255,0.05);
}
.hero-v4-line--btn {
    height: 28px;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), 0.15);
}
.hero-v4-card {
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}

/* 10.14 CTA + Contact merged section */
.cta-contact-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
}

/* 10.15 Bento cards — subtle continuous shimmer on border */
@keyframes bentoShimmer {
    0%, 100% { border-color: rgba(255,255,255,0.06); }
    50% { border-color: rgba(var(--accent-rgb), 0.18); }
}
.bento-card {
    animation: bentoShimmer 4s ease-in-out infinite;
}
.bento-card:nth-child(2) { animation-delay: 0.8s; }
.bento-card:nth-child(3) { animation-delay: 1.6s; }
.bento-card:nth-child(4) { animation-delay: 2.4s; }
.bento-card:nth-child(5) { animation-delay: 3.2s; }
.section-accent .bento-card {
    animation-name: bentoShimmerAccent;
}
@keyframes bentoShimmerAccent {
    0%, 100% { border-color: rgba(13,13,13,0.2); }
    50% { border-color: rgba(13,13,13,0.45); }
}
.bento-card:hover {
    animation: none;
    border-color: var(--accent) !important;
    box-shadow: 0 24px 80px -12px rgba(var(--accent-rgb), 0.15),
                inset 0 1px 0 rgba(var(--accent-rgb), 0.1);
}
.section-accent .bento-card:hover {
    border-color: #0d0d0d !important;
    box-shadow: 0 24px 80px -12px rgba(0,0,0,0.2);
}

/* 10.16 Support card — same glass style, accent emphasis */
.bento-card--support {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .bento-card--support { grid-row: span 2; }
}
.bento-glow--support {
    background: rgba(var(--accent-rgb), 0.08);
}
.bento-card--support:hover .bento-glow--support {
    background: rgba(var(--accent-rgb), 0.15);
}
.support-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.25rem;
    opacity: 0.8;
}
.bento-card--support .bento-card-title {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.bento-card--support .bento-card-title em {
    font-style: normal;
    color: var(--accent);
}
.bento-card--support .bento-card-text strong {
    color: var(--accent);
}
/* In accent section: dark card stands out on golden bg */
.section-accent .bento-card--support {
    background: rgba(13, 13, 13, 0.93);
    border-color: rgba(255,255,255,0.08);
}
.section-accent .bento-card--support .bento-card-title,
.section-accent .bento-card--support .bento-card-text {
    color: var(--text);
}
.section-accent .bento-card--support .bento-card-title em {
    color: var(--accent);
}
/* Support card — calm breathing glow */
.bento-card--support {
    animation: supportBreathe 4s ease-in-out infinite;
}
@keyframes supportBreathe {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0), 0 0 20px -5px rgba(var(--accent-rgb), 0);
        border-color: rgba(255,255,255,0.06);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.15), 0 0 25px -5px rgba(var(--accent-rgb), 0.1);
        border-color: rgba(var(--accent-rgb), 0.25);
    }
}

/* 10.17 Testimonial cards — solid uniform background */
.testimonial-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

/* 10.18 CTA contact subtitle with gradient */
.cta-contact-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(var(--accent-rgb), 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 10.19 Deliverables — card-based layout alternative */
.deliverables-masonry {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .deliverables-masonry { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .deliverables-masonry { grid-template-columns: repeat(3, 1fr); }
}
.deliverable-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.deliverable-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--accent-rgb), 0.2);
}
.deliverable-card:hover::before { opacity: 1; }
.deliverable-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.deliverable-card-icon--page {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}
.deliverable-card-icon--section {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
}
.deliverable-card .deliverable-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.35rem;
    border-bottom: none;
    padding: 0;
}
.deliverable-card .deliverable-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.deliverable-card-type {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}
.deliverable-card-type--page {
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
}
.deliverable-card-type--section {
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
}

/* ── 11. PRINT ─────────────────────────────────────────────────── */
@media print {
    body { background: #fff; color: #000; }
    .navbar, .preloader, .scroll-progress, .cursor-dot, .cursor-ring,
    .btn-whatsapp, .cookie-banner, .marquee, .hero-visual, .dot-nav { display: none; }
    .glass, .glass-strong { background: #f5f5f5; border: 1px solid #ddd; backdrop-filter: none; }
    .text-gradient { -webkit-text-fill-color: initial; background: none; color: var(--accent); }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.75em; color: #666; }
}
