/* ============================================
   VARIABLE FONT
   ============================================ */
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Variable.woff2') format('woff2-variations'),
         url('/assets/fonts/Manrope-Variable.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --black: #171617;
    --black-light: #1e1d1e;
    --black-lighter: #252425;
    --cream: #f1ede4;
    --cream-dim: rgba(241, 237, 228, 0.7);
    --cream-muted: rgba(241, 237, 228, 0.5);
    --cream-subtle: rgba(241, 237, 228, 0.1);
    --accent: #009C6F;
    --accent-bright: #00b37f;
    --accent-dark: #007a57;
    --accent-glow: rgba(0, 156, 111, 0.4);
    --accent-dim: rgba(0, 156, 111, 0.15);
    --gray: #666666;
    --gray-light: #999999;
    --white: #ffffff;
    --border-dark: rgba(241, 237, 228, 0.1);
    --border-light: rgba(23, 22, 23, 0.1);
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-padding: clamp(80px, 12vw, 140px);
    --container-width: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream);
    background: var(--black);
}

body.menu-open {
    overflow: hidden;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   SECTION PILLBOX LABELS
   ============================================ */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.12) 0%, rgba(0, 156, 111, 0.04) 100%);
    border: 1px solid rgba(0, 156, 111, 0.25);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-pill-light {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.08) 0%, rgba(0, 156, 111, 0.02) 100%);
    border-color: rgba(0, 156, 111, 0.2);
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(23, 22, 23, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition-base);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

header.scrolled {
    background: rgba(23, 22, 23, 0.95);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo { height: 38px; width: auto; }

.logo-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 156, 111, 0.25);
}

.logo-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-dim);
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover { 
    color: var(--cream);
    background: var(--cream-subtle);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-left: 8px;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }

/* Desktop Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-link.has-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

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

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 12px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 10px;
    flex-shrink: 0;
}

.dropdown-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
}

.dropdown-item-desc {
    font-size: 12px;
    color: var(--cream-muted);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-dark);
    margin: 8px 0;
}

/* Highlighted dropdown item (Client Portal) */
.dropdown-item-highlight {
    background: var(--accent-dim);
    border: 1px solid var(--accent);
}

.dropdown-item-highlight:hover {
    background: var(--accent);
}

.dropdown-item-highlight:hover .dropdown-item-title,
.dropdown-item-highlight:hover .dropdown-item-desc {
    color: white;
}

.dropdown-item-highlight:hover .dropdown-item-icon {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-item-highlight:hover .dropdown-item-icon svg {
    stroke: white;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.mobile-menu-btn svg { width: 18px; height: 18px; display: block; }

/* Force mobile menu on touch devices (tablets, phones) */
@media (hover: none) {
    .nav-links { display: none !important; }
    .mobile-menu-btn { display: flex !important; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--black-light);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-dark);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover { 
    color: var(--cream); 
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}
.mobile-menu-close svg { width: 18px; height: 18px; display: block; }

.mobile-menu-nav {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.mobile-menu-section {
    margin-bottom: 24px;
}

.mobile-menu-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cream-dim);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--cream);
    border-color: var(--accent-dim);
}

.mobile-menu-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* Client Portal Section */
.mobile-menu-section-portal {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.mobile-menu-cta {
    padding: 24px;
    border-top: 1px solid var(--border-dark);
}

.mobile-menu-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-menu-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-menu-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.mobile-menu-contact-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.mobile-menu-contact-btn.email:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-menu-contact-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-cta-main {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn svg { 
    width: 18px; 
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 156, 111, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary span { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 156, 111, 0.4);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(241, 237, 228, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-secondary span { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }
.btn-secondary svg { position: relative; z-index: 1; transition: color 0.3s ease; }

.btn-secondary:hover {
    color: var(--black);
    border-color: var(--cream);
}

.btn-secondary:hover svg {
    color: var(--black);
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 80px;
}

/* Noise texture - ONLY on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 4;
    mask-image: radial-gradient(ellipse at center, transparent 20%, black 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black 60%);
}

.hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#heroCanvas {
    width: 100%;
    height: 100%;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1000px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 156, 111, 0.15) 0%, 
        rgba(0, 156, 111, 0.08) 20%, 
        rgba(0, 156, 111, 0.03) 40%,
        transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1600px;
    height: 1100px;
    background: radial-gradient(ellipse at center, 
        rgba(23, 22, 23, 0.9) 0%, 
        rgba(23, 22, 23, 0.7) 30%, 
        rgba(23, 22, 23, 0.3) 55%,
        transparent 75%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 860px;
    padding: 48px 56px;
    background: rgba(23, 22, 23, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(241, 237, 228, 0.08);
    border-radius: 28px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 156, 111, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

/* H1: Static gradient border - brighter at center of each side, fading to corners */
.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse 60% 1px at 50% 0%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 60% 1px at 50% 100%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 1px 60% at 0% 50%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 1px 60% at 100% 50%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        rgba(241, 237, 228, 0.06);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* Hero label with shine animation */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.18) 0%, rgba(0, 156, 111, 0.06) 100%);
    border: 1px solid rgba(0, 156, 111, 0.35);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    box-shadow: 0 0 40px rgba(0, 156, 111, 0.12);
    position: relative;
    overflow: hidden;
}

.hero-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50%, 60% { left: 100%; }
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

.hero h1 .highlight {
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient text highlight - reusable anywhere */
.highlight-gradient {
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 50%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheader {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    color: var(--cream-dim);
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

/* Hero Marquee */
.hero-marquee-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 24px;
    padding: 16px 0;
    background: rgba(241, 237, 228, 0.02);
    border: 1px solid rgba(241, 237, 228, 0.06);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-marquee-container::before,
.hero-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.hero-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.hero-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.hero-marquee-row {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-marquee-row + .hero-marquee-row {
    margin-top: 10px;
}

.hero-marquee-track {
    display: flex;
    gap: 10px;
    animation: marqueeScroll 35s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-marquee-row-2 .hero-marquee-track {
    animation: marqueeScrollReverse 45s linear infinite;
    animation-fill-mode: both;
    animation-play-state: running;
    animation-delay: 0s;
}

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

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

.hero-marquee-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(241, 237, 228, 0.04);
    border: 1px solid rgba(241, 237, 228, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-dim);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-marquee-pill svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent);
}

.hero-marquee-pill.secondary {
    background: rgba(0, 156, 111, 0.08);
    border-color: rgba(0, 156, 111, 0.15);
    color: var(--accent);
    font-weight: 400;
    font-size: 12px;
}

.hero-marquee-pill.secondary svg {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--cream-muted);
}

.hero-meta span { display: inline-flex; align-items: center; }
.hero-meta .sep { 
    margin: 0 10px;
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-indicator-icon {
    width: 22px;
    height: 34px;
    border: 2px solid var(--white);
    border-radius: 11px;
    position: relative;
    transition: var(--transition-fast);
}

.scroll-indicator:hover .scroll-indicator-icon { border-color: var(--accent); }

.scroll-indicator-dot {
    width: 3px;
    height: 6px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-indicator-dot { background: var(--accent); }

@keyframes scrollBounce {
    0%, 100% { top: 5px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.logos-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: var(--black-light);
    overflow: hidden;
}

.logos-section .section-pill {
    display: flex;
    justify-content: center;
    margin: 0 auto 28px;
    width: fit-content;
}

/* Desktop Carousel - Single row */
.logos-carousel {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-carousel-track {
    display: flex;
    animation: logos-scroll 40s linear infinite;
    width: fit-content;
}

.logos-carousel-item {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-carousel-item img {
    height: 44px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.logos-carousel-item:hover img {
    opacity: 1;
}

@keyframes logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* Mobile Carousel - Hidden on desktop */
.logos-carousel-mobile {
    display: none;
}

/* Tablet and Mobile: Show 2-row layout */
@media (max-width: 900px) {
    .logos-carousel {
        display: none;
    }
    
    .logos-carousel-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .logos-carousel-row {
        overflow: hidden;
        position: relative;
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
    
    .logos-carousel-mobile .logos-carousel-track {
        animation: logos-scroll-mobile 25s linear infinite;
    }
    
    .logos-carousel-mobile .logos-carousel-track[data-direction="reverse"] {
        animation: logos-scroll-mobile-reverse 25s linear infinite;
    }
    
    .logos-carousel-mobile .logos-carousel-item {
        padding: 0 24px;
    }
    
    .logos-carousel-mobile .logos-carousel-item img {
        height: 36px;
    }
}

@keyframes logos-scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

@keyframes logos-scroll-mobile-reverse {
    0% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@media (max-width: 640px) {
    .logos-carousel-mobile .logos-carousel-item {
        padding: 0 18px;
    }
    
    .logos-carousel-mobile .logos-carousel-item img {
        height: 30px;
    }
    
    .logos-carousel-mobile .logos-carousel-track {
        animation-duration: 20s;
    }
    
    .logos-carousel-mobile .logos-carousel-track[data-direction="reverse"] {
        animation-duration: 20s;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header .section-pill {
    display: inline-flex;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-desc {
    font-size: 17px;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* For light theme sections */
.section-desc.dark {
    color: var(--black);
    opacity: 0.7;
}

.services-grid {
    display: grid;
    gap: 16px;
}

.services-grid-main {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
    .services-grid-main {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

/* Subtle faded top border on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: rgba(0, 156, 111, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { opacity: 1; }

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.service-icon svg { width: 28px; height: 28px; }

.service-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-card-subtitle {
    font-size: 14px;
    color: var(--cream-muted);
}

.service-card-desc {
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-feature {
    font-size: 12px;
    padding: 6px 14px;
    background: var(--cream-subtle);
    border-radius: 100px;
    color: var(--cream-dim);
    border: 1px solid var(--border-dark);
}

/* Text-based green button */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    padding: 12px 24px;
    background: var(--accent-dim);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.service-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.service-card:hover .service-card-link {
    background: var(--accent);
    color: var(--white);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

.services-grid-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.services-grid-secondary .service-card {
    padding: 28px;
}

.services-grid-secondary .service-icon {
    width: 48px;
    height: 48px;
}

.services-grid-secondary .service-icon svg {
    width: 24px;
    height: 24px;
}

.services-grid-secondary .service-card-title {
    font-size: 20px;
}

.services-grid-secondary .service-card-link {
    padding: 10px 20px;
    font-size: 13px;
}

/* ============================================
   H3: ENTERPRISE INITIATIVES SECTION
   ============================================ */
.initiatives-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.initiatives-section .section-header {
    margin-bottom: 48px;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.initiative-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 156, 111, 0), transparent);
    transition: var(--transition-base);
}

.initiative-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 156, 111, 0.3);
    background: rgba(0, 156, 111, 0.03);
}

.initiative-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(0, 156, 111, 0.6), transparent);
}

.initiative-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.initiative-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.initiative-card:hover .initiative-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.initiative-card:hover .initiative-icon svg {
    color: var(--white);
}

.initiative-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}

.initiative-desc {
    font-size: 14px;
    color: var(--cream-muted);
    line-height: 1.6;
}

/* Initiatives Responsive */
@media (max-width: 900px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .initiative-card {
        padding: 24px;
    }
    
    .initiative-icon {
        width: 48px;
        height: 48px;
    }
    
    .initiative-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .initiative-title {
        font-size: 16px;
    }
}

/* ============================================
   PROJECT SHOWCASE - Light Theme
   ============================================ */
.projects-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
    color: var(--black);
}

.projects-section .section-pill {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.1) 0%, rgba(0, 156, 111, 0.03) 100%);
    border-color: rgba(0, 156, 111, 0.2);
}

.projects-section .section-desc {
    color: var(--gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 156, 111, 0.2);
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.project-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 156, 111, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.project-icon svg {
    width: 24px;
    height: 24px;
}

.project-header-text {
    flex: 1;
    min-width: 0;
}

.project-client {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.project-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.project-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(0, 156, 111, 0.08);
    border-radius: 100px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Tools & Connectors - Two Row Staggered Marquee */
.tools-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.tools-header {
    text-align: center;
    margin-bottom: 30px;
}

.tools-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.tools-header p {
    font-size: 14px;
    color: var(--gray);
}

.tools-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tools-marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.tools-marquee-wrapper::before,
.tools-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.tools-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
}

.tools-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
}

/* Reduce gradient fade on mobile */
@media (max-width: 768px) {
    .tools-marquee-wrapper::before,
    .tools-marquee-wrapper::after {
        width: 20px;
    }
}

.tools-marquee-track {
    display: flex;
    width: fit-content;
}

.tools-marquee-track.row-1 {
    animation: toolsMarqueeLeft 45s linear infinite;
}

.tools-marquee-track.row-2 {
    animation: toolsMarqueeRight 50s linear infinite;
}

.tools-marquee-wrapper:hover .tools-marquee-track {
    animation-play-state: paused;
}

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

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

.tool-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-right: 12px;
    background: var(--black);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-dim);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.tool-item:hover {
    background: var(--black-light);
    color: var(--cream);
}

.tool-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   THE BY BANKS EDGE - Redesigned Single Column
   ============================================ */
.edge-section {
    padding: var(--section-padding) 0;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.edge-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: var(--transition-base);
}

.edge-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-4px);
}

.edge-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 16px;
}

.edge-icon svg { width: 28px; height: 28px; }

.edge-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.edge-card p {
    font-size: 14px;
    color: var(--cream-muted);
    line-height: 1.5;
}

/* ============================================
   MISSION SECTION (LIGHT)
   ============================================ */
.mission-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
    color: var(--black);
}

.mission-section .section-pill {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.1) 0%, rgba(0, 156, 111, 0.03) 100%);
    border-color: rgba(0, 156, 111, 0.2);
}

.mission-section .section-desc { color: var(--gray); }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mission-card .service-icon { 
    background: rgba(0, 156, 111, 0.1);
    margin-bottom: 20px;
}

.mission-card .service-card-title {
    margin-bottom: 12px;
}

.mission-card .service-card-desc { 
    color: var(--gray);
    margin-bottom: 0;
}

/* ============================================
   PERSPECTIVES SECTION
   ============================================ */
.perspectives-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    border-top: 1px solid var(--border-dark);
}

.perspectives-section .section-pill {
    background: var(--accent-dim);
    color: var(--accent);
}

.perspectives-section .section-title {
    color: var(--cream);
}

.perspectives-section .section-desc {
    color: var(--cream-dim);
}

.perspectives-grid {
    display: grid;
    gap: 24px;
}

/* Featured Article - Full Width */
.perspective-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    transition: var(--transition-base);
}

.perspective-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.perspective-featured-image {
    position: relative;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--black) 100%);
    overflow: hidden;
}

.perspective-featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23009c6f' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.perspective-featured-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perspective-featured-icon {
    width: 120px;
    height: 120px;
    background: rgba(0, 156, 111, 0.15);
    border: 2px solid rgba(0, 156, 111, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.perspective-featured-icon svg {
    width: 56px;
    height: 56px;
    color: var(--accent);
}

.perspective-featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.perspective-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.perspective-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 12px;
    border-radius: 6px;
}

.perspective-read-time {
    font-size: 12px;
    color: var(--cream-muted);
}

.perspective-featured-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 16px;
}

.perspective-featured-excerpt {
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 24px;
}

.perspective-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition-fast);
}

.perspective-featured-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.perspective-featured:hover .perspective-featured-link svg {
    transform: translateX(4px);
}

/* Article Cards Grid */
.perspectives-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.perspective-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.perspective-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.perspective-card-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.perspective-card-image.residential {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

.perspective-card-image.automation {
    background: linear-gradient(135deg, #0c3c26 0%, #145a3c 100%);
}

.perspective-card-image.newyear {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
}

.perspective-card-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perspective-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.perspective-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    opacity: 0.9;
}

.perspective-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.perspective-card-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 8px;
    border-radius: 4px;
}

.perspective-card-date {
    font-size: 11px;
    color: var(--cream-muted);
}

.perspective-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 10px;
}

.perspective-card-excerpt {
    font-size: 13px;
    color: var(--cream-dim);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.perspective-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition-fast);
}

.perspective-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.perspective-card:hover .perspective-card-link svg {
    transform: translateX(4px);
}

.perspectives-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .perspective-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .perspective-featured-image {
        height: 240px;
    }

    .perspective-featured-content {
        padding: 32px;
    }

    .perspective-featured-title {
        font-size: 24px;
    }

    .perspectives-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .perspective-featured-content {
        padding: 24px;
    }

    .perspective-featured-title {
        font-size: 20px;
    }

    .perspective-featured-excerpt {
        font-size: 14px;
    }

    .perspectives-cards {
        grid-template-columns: 1fr;
    }

    .perspective-card-image {
        height: 160px;
    }
}

/* ============================================
   UAE SECTION
   ============================================ */
.uae-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    border-top: 1px solid var(--border-dark);
}

.uae-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.uae-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    transition: var(--transition-base);
}

.uae-item:hover {
    border-color: var(--accent-dim);
    transform: translateY(-4px);
}

.uae-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.uae-icon svg { width: 24px; height: 24px; }

.uae-text-block strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.uae-text-block span {
    font-size: 14px;
    color: var(--cream-muted);
    line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-lighter);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--cream);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-muted);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.contact-sidebar {
    position: sticky;
    top: 120px;
}

.contact-method {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    transition: var(--transition-base);
    cursor: pointer;
}

.contact-method:hover { 
    border-color: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method-icon svg { width: 24px; height: 24px; }

.contact-method-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method-content p {
    font-size: 14px;
    color: var(--cream-muted);
    margin-bottom: 8px;
}

.contact-method-content .link-text {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.contact-info {
    background: var(--cream-subtle);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 24px;
}

.contact-info p {
    font-size: 14px;
    color: var(--cream-dim);
    margin-bottom: 4px;
}

.contact-info strong { color: var(--cream); }

/* ============================================
   THANK YOU OVERLAY
   ============================================ */
.thank-you-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    padding: 20px;
}

.thank-you-overlay.active {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.thank-you-overlay.active .thank-you-content {
    transform: scale(1);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent);
}

.thank-you-icon svg { width: 40px; height: 40px; }

.thank-you-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.thank-you-content p {
    font-size: 16px;
    color: var(--cream-dim);
    margin-bottom: 28px;
    line-height: 1.6;
}

.thank-you-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.thank-you-close:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--cream-muted);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a,
.footer-social-btn {
    width: 40px;
    height: 40px;
    background: var(--cream-subtle);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    transition: var(--transition-fast);
    cursor: pointer;
}

.footer-social a:hover,
.footer-social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }

.footer-column a {
    font-size: 14px;
    color: var(--cream-muted);
    transition: var(--transition-fast);
}

.footer-column a:hover { color: var(--cream); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-copyright {
    font-size: 13px;
    color: var(--cream-muted);
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
    font-size: 13px;
    color: var(--cream-muted);
    transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--cream); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--cream);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    .whatsapp-float-tooltip {
        display: none;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid-secondary { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .edge-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr; }
    .uae-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .contact-info { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero { padding: 110px 16px 90px; }
    
    .hero-content {
        padding: 0 4px;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        max-width: 100%;
    }
    
    /* H1: Hide border animation on mobile */
    .hero-content::before,
    .hero-content::after {
        display: none;
    }
    
    .hero-glow { width: 200%; height: 150%; }
    .hero-label { font-size: 11px; padding: 7px 14px; gap: 8px; }
    .hero h1 { font-size: clamp(26px, 7.5vw, 38px); margin-bottom: 20px; }
    .hero-subheader { font-size: 14px; margin-bottom: 24px; }
    
    /* Hero Marquee Mobile */
    .hero-marquee-container {
        max-width: calc(100% - 32px);
        margin: 0 16px 20px;
        padding: 12px 0;
        border-radius: 12px;
    }
    .hero-marquee-container::before,
    .hero-marquee-container::after {
        width: 20px;
    }
    .hero-marquee-pill {
        padding: 6px 12px;
        font-size: 12px;
        gap: 6px;
    }
    .hero-marquee-pill svg {
        width: 12px;
        height: 12px;
    }
    .hero-marquee-pill.secondary {
        font-size: 11px;
    }
    .hero-marquee-pill.secondary svg {
        width: 10px;
        height: 10px;
    }
    .hero-marquee-track {
        gap: 8px;
    }
    
    .hero-meta { font-size: 12px; gap: 4px 2px; margin-bottom: 24px; }
    .hero-meta .sep { margin: 0 6px; font-size: 16px; }
    .hero-cta { gap: 10px; }
    .btn { padding: 14px 24px; font-size: 13px; }
    .scroll-indicator { bottom: 16px; opacity: 0.6; }
    
    .edge-grid { grid-template-columns: 1fr; }
    
    .uae-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-sidebar { grid-template-columns: 1fr; }
    .contact-info { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .thank-you-content { padding: 32px 24px; }
    .thank-you-icon { width: 64px; height: 64px; }
    .thank-you-icon svg { width: 32px; height: 32px; }
    .thank-you-content h3 { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
}

/* ============================================
   DIGITAL RETAIL INTELLIGENCE - HERO
   ============================================ */

.dri-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

/* Mesh Grid Canvas - same as homepage but static */
.dri-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#driMeshCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.dri-hero-canvas-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.dri-hero-canvas-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#driHeroCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.dri-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--black) 0%, 
        var(--black) 35%, 
        rgba(23, 22, 23, 0.95) 40%, 
        rgba(23, 22, 23, 0.8) 45%, 
        rgba(23, 22, 23, 0.5) 52%, 
        rgba(23, 22, 23, 0.2) 60%,
        transparent 75%);
    z-index: 2;
    pointer-events: none;
}

.dri-hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.dri-hero-content {
    max-width: 580px;
}

.dri-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-family: var(--font-main);
}

.dri-hero-label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: driPulse 2s ease-in-out infinite;
}

@keyframes driPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.dri-hero h1 {
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
    color: var(--cream);
    font-family: var(--font-main);
}

.dri-hero h1 .highlight {
    color: var(--accent);
}

.dri-hero-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--cream-dim);
    margin-bottom: 40px;
    font-family: var(--font-main);
}

.dri-hero-description .trademark {
    color: var(--cream);
    font-weight: 600;
}

.dri-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.dri-hero-stat {
    display: flex;
    flex-direction: column;
}

.dri-hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-main);
}

.dri-hero-stat-label {
    font-size: 12px;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.dri-hero-cta {
    display: flex;
    gap: 16px;
}

.dri-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}

.dri-hero .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.dri-hero .btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dri-hero .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 156, 111, 0.3);
}

.dri-hero .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dri-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 156, 111, 0.4);
}

.dri-hero .btn-primary:hover::before {
    opacity: 1;
}

.dri-hero .btn-primary:hover svg {
    transform: translateX(4px);
}

.dri-hero .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(241, 237, 228, 0.2);
    backdrop-filter: blur(10px);
}

.dri-hero .btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.dri-hero .btn-secondary:hover {
    color: var(--black);
    border-color: var(--cream);
}

.dri-hero .btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile canvas container - hidden on desktop */
.dri-hero-canvas-mobile {
    display: none;
}

/* Tablet and Mobile */
@media (max-width: 1250px) {
    .dri-hero {
        min-height: auto;
        padding: 120px 0 0;
        overflow: visible;
    }
    
    .dri-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
        padding: 0 var(--container-padding);
    }
    
    .dri-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .dri-hero-label {
        justify-content: center;
    }
    
    .dri-hero-stats {
        justify-content: center;
    }
    
    .dri-hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .dri-hero-canvas-wrapper {
        display: none;
    }
    
    .dri-hero-overlay {
        display: none;
    }
    
    .dri-hero-canvas-mobile {
        display: block;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-bottom: 60px;
        aspect-ratio: 1.3 / 1;
        position: relative;
        z-index: 1;
    }
    
    #driHeroCanvasMobile {
        width: 100%;
        height: 100%;
        display: block;
    }
}

@media (max-width: 640px) {
    .dri-hero {
        padding: 100px 0 0;
    }
    
    .dri-hero-container {
        gap: 32px;
    }
    
    .dri-hero h1 {
        font-size: 32px;
    }
    
    .dri-hero-description {
        font-size: 15px;
    }
    
    .dri-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .dri-hero-stat-value {
        font-size: 28px;
    }
    
    .dri-hero-canvas-mobile {
        aspect-ratio: 1.1 / 1;
    }
    
    .dri-hero .btn {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* ============================================
   DRI PROBLEM SECTION (Trade Dilution)
   ============================================ */
.dri-problem-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.dri-problem-section .section-header {
    margin-bottom: 60px;
}

.dri-problem-section .section-title {
    color: var(--black);
}

.dri-problem-section .section-desc {
    color: var(--black);
    opacity: 0.7;
}

.dri-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.dri-problem-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-base);
}

.dri-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 22, 23, 0.1);
}

.dri-problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dri-problem-icon svg {
    width: 24px;
    height: 24px;
}

.dri-problem-icon-red {
    background: rgba(180, 60, 60, 0.1);
    color: #b43c3c;
}

.dri-problem-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.dri-problem-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    opacity: 0.7;
}

.dri-problem-cta {
    text-align: center;
}

.dri-problem-stat {
    display: inline-block;
    padding: 20px 40px;
    background: rgba(180, 60, 60, 0.08);
    border: 1px solid rgba(180, 60, 60, 0.15);
    border-radius: 12px;
    font-size: 18px;
    color: var(--black);
}

.dri-problem-stat strong {
    color: #b43c3c;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .dri-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dri-problem-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-problem-stat {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* ============================================
   DRI PILLARS SECTION
   ============================================ */
.dri-pillars-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.dri-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dri-pillar-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition-base);
}

.dri-pillar-card:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: rgba(241, 237, 228, 0.15);
    transform: translateY(-4px);
}

.dri-pillar-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}

.dri-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 156, 111, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dri-pillar-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.dri-pillar-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.dri-pillar-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 24px;
}

.dri-pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dri-pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--cream-muted);
}

.dri-pillar-features li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .dri-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dri-pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-pillar-card {
        padding: 28px;
    }
}

/* ============================================
   DRI PRODUCTS SECTION
   ============================================ */
.dri-products-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.dri-products-section .section-title {
    color: var(--black);
}

.dri-products-section .section-desc {
    color: var(--black);
    opacity: 0.7;
}

.dri-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dri-product-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 16px;
    padding: 36px;
    transition: var(--transition-base);
}

.dri-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(23, 22, 23, 0.1);
}

.dri-product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.dri-product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 156, 111, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dri-product-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.dri-product-badge {
    padding: 6px 12px;
    background: rgba(0, 156, 111, 0.08);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

.dri-product-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.dri-product-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 24px;
}

.dri-product-metrics {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 22, 23, 0.08);
}

.dri-product-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dri-product-metric-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.dri-product-metric-label {
    font-size: 12px;
    color: var(--black);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .dri-products-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-product-card {
        padding: 28px;
    }
}

/* ============================================
   DRI PROCESS SECTION
   ============================================ */
.dri-process-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.dri-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.dri-process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 24px;
}

.dri-process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.dri-process-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.dri-process-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-dim);
}

.dri-process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(0, 156, 111, 0.3));
    margin-top: 32px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .dri-process-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .dri-process-step {
        max-width: 100%;
    }
    
    .dri-process-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--accent), rgba(0, 156, 111, 0.3));
        margin: 0;
    }
}

/* ============================================
   DRI STATS SECTION
   ============================================ */
.dri-stats-section {
    padding: 80px 0;
    background: var(--accent);
}

.dri-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.dri-stat-card {
    text-align: center;
}

.dri-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.dri-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 12px;
}

.dri-stat-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .dri-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}

@media (max-width: 640px) {
    .dri-stats-section {
        padding: 60px 0;
    }
    
    .dri-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dri-stat-value {
        font-size: 40px;
    }
}

/* ============================================
   DRI CTA SECTION
   ============================================ */
.dri-cta-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.dri-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dri-cta-content {
    max-width: 500px;
}

.dri-cta-content .section-title {
    margin-bottom: 16px;
    text-align: left;
}

.dri-cta-content .section-desc {
    margin-bottom: 32px;
    text-align: left;
}

.dri-cta-content .section-pill {
    justify-content: flex-start;
}

.dri-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dri-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}

.dri-cta-buttons .btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dri-cta-buttons .btn svg {
    width: 18px;
    height: 18px;
}

.dri-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 156, 111, 0.3);
}

.dri-cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dri-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 156, 111, 0.4);
}

.dri-cta-buttons .btn-primary:hover::before {
    opacity: 1;
}

.dri-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-dark);
}

.dri-cta-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.dri-cta-buttons .btn-secondary:hover {
    color: var(--black);
    border-color: var(--cream);
}

.dri-cta-buttons .btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Contact Form */
.dri-cta-form-wrapper {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
}

.dri-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dri-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dri-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dri-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
}

.dri-form-group input,
.dri-form-group select,
.dri-form-group textarea {
    background: rgba(241, 237, 228, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--cream);
    transition: var(--transition-fast);
}

.dri-form-group input::placeholder,
.dri-form-group textarea::placeholder {
    color: var(--cream-muted);
}

.dri-form-group input:focus,
.dri-form-group select:focus,
.dri-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 156, 111, 0.05);
}

.dri-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F1EDE4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.dri-form-group select option {
    background: var(--black);
    color: var(--cream);
}

.dri-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.dri-contact-form .btn-full {
    width: 100%;
    padding: 16px 32px;
    margin-top: 8px;
}

.dri-contact-form .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 156, 111, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dri-contact-form .btn-primary span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dri-contact-form .btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.dri-contact-form .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dri-contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 156, 111, 0.4);
}

.dri-contact-form .btn-primary:hover::before {
    opacity: 1;
}

.dri-contact-form .btn-primary:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .dri-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .dri-cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .dri-cta-content .section-title,
    .dri-cta-content .section-desc {
        text-align: center;
    }
    
    .dri-cta-content .section-pill {
        justify-content: center;
    }
    
    .dri-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .dri-form-row {
        grid-template-columns: 1fr;
    }
    
    .dri-cta-form-wrapper {
        padding: 28px;
    }
}

/* ============================================
   DRI PARTNER SECTION (Beyond the Dashboard)
   ============================================ */
.dri-partner-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.dri-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.dri-partner-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 28px;
    transition: var(--transition-base);
}

.dri-partner-card:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: rgba(241, 237, 228, 0.15);
}

.dri-partner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 156, 111, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dri-partner-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.dri-partner-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.dri-partner-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream-dim);
}

.dri-partner-statement {
    text-align: center;
}

.dri-partner-statement p {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(0, 156, 111, 0.1);
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 8px;
    font-size: 18px;
    color: var(--cream);
}

.dri-partner-statement strong {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .dri-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dri-partner-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-partner-statement p {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* ============================================
   DRI ACTIONS SECTION
   ============================================ */
.dri-actions-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.dri-actions-section .section-title {
    color: var(--black);
}

.dri-actions-section .section-desc {
    color: var(--black);
    opacity: 0.7;
}

.dri-actions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dri-action-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-base);
}

.dri-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 22, 23, 0.08);
}

.dri-action-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(23, 22, 23, 0.08);
}

.dri-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 156, 111, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dri-action-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.dri-action-header h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.dri-action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dri-action-list li {
    font-size: 13px;
    color: var(--black);
    opacity: 0.7;
    padding: 6px 0;
    border-bottom: 1px solid rgba(23, 22, 23, 0.04);
}

.dri-action-list li:last-child {
    border-bottom: none;
}

@media (max-width: 1200px) {
    .dri-actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dri-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .dri-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DRI RESULTS SECTION
   ============================================ */
.dri-results-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.dri-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dri-results-category {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 28px;
}

.dri-results-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-dark);
}

.dri-results-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dri-result-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    align-items: center;
}

.dri-result-change {
    grid-row: span 2;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-main);
}

.dri-result-change.positive {
    color: var(--accent);
}

.dri-result-change.negative {
    color: var(--accent);
}

.dri-result-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
}

.dri-result-detail {
    font-size: 12px;
    color: var(--cream-muted);
}

@media (max-width: 1024px) {
    .dri-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   DRI CLIENT WINS SECTION
   ============================================ */
.dri-wins-section {
    padding: 80px 0;
    background: var(--cream);
}

.dri-wins-section .section-header {
    margin-bottom: 48px;
}

.dri-wins-section .section-title {
    color: var(--black);
}

.dri-wins-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.dri-wins-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dri-wins-row-full {
    grid-template-columns: 1fr;
}

.dri-win-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 12px;
    padding: 32px 40px;
    text-align: center;
    transition: var(--transition-base);
}

.dri-win-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 22, 23, 0.1);
}

.dri-win-card-wide {
    max-width: 100%;
}

.dri-win-brand {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.dri-win-metric {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 4px;
}

.dri-win-label {
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
}

@media (max-width: 640px) {
    .dri-wins-row {
        grid-template-columns: 1fr;
    }
    
    .dri-win-card {
        padding: 28px 32px;
    }
    
    .dri-win-metric {
        font-size: 32px;
    }
}

/* ============================================
   DRI PROCESS SECTION (Revised)
   ============================================ */
.dri-process-grid-revised {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dri-process-step-revised {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.dri-process-step-revised .dri-process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dri-process-step-revised h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.dri-process-step-revised p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-dim);
}

.dri-process-step-highlight {
    background: rgba(0, 156, 111, 0.08);
    border-color: rgba(0, 156, 111, 0.25);
}

.dri-process-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 156, 111, 0.2);
}

.dri-process-actions span {
    padding: 6px 12px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .dri-process-grid-revised {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dri-process-grid-revised {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DRI WHITEPAPER SECTION
   ============================================ */
.dri-whitepaper-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.dri-whitepaper-section .section-header {
    margin-bottom: 48px;
}

.dri-whitepaper-section .section-title {
    color: var(--black);
}

.dri-whitepaper-section .section-desc {
    color: var(--black);
    opacity: 0.7;
}

.dri-whitepaper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dri-whitepaper-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.dri-whitepaper-card-dark {
    background: var(--black);
    border-color: var(--border-dark);
}

.dri-whitepaper-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 156, 111, 0.1);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.dri-whitepaper-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 12px;
}

.dri-whitepaper-card-dark h3 {
    color: var(--cream);
}

.dri-whitepaper-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 24px;
}

.dri-whitepaper-card-dark p {
    color: var(--cream-dim);
    opacity: 1;
}

.dri-whitepaper-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.dri-whitepaper-card .btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dri-whitepaper-card .btn svg {
    width: 16px;
    height: 16px;
}

.dri-whitepaper-card .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 156, 111, 0.3);
}

.dri-whitepaper-card .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dri-whitepaper-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 156, 111, 0.4);
}

.dri-whitepaper-card .btn-primary:hover::before {
    opacity: 1;
}

.dri-whitepaper-card .btn-secondary-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-dark);
}

.dri-whitepaper-card .btn-secondary-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.dri-whitepaper-card .btn-secondary-light:hover {
    color: var(--black);
    border-color: var(--cream);
}

.dri-whitepaper-card .btn-secondary-light:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .dri-whitepaper-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-whitepaper-card {
        padding: 32px;
    }
    
    .dri-whitepaper-card h3 {
        font-size: 20px;
    }
}

/* ============================================
   DRI MODAL
   ============================================ */
.dri-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(23, 22, 23, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    padding: 24px;
}

.dri-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dri-modal {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.dri-modal-overlay.active .dri-modal {
    transform: translateY(0);
}

.dri-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(241, 237, 228, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--cream-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.dri-modal-close:hover {
    background: rgba(241, 237, 228, 0.1);
    color: var(--cream);
}

.dri-modal-close svg {
    width: 18px;
    height: 18px;
}

.dri-modal-header {
    margin-bottom: 28px;
}

.dri-modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.dri-modal-header p {
    font-size: 14px;
    color: var(--cream-dim);
    line-height: 1.5;
}

.dri-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dri-modal-form .dri-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.dri-modal-form .dri-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dri-modal-form label {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
}

.dri-modal-form input {
    background: rgba(241, 237, 228, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--cream);
    transition: var(--transition-fast);
}

.dri-modal-form input::placeholder {
    color: var(--cream-muted);
}

.dri-modal-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 156, 111, 0.05);
}

.dri-modal-form .btn-full {
    margin-top: 8px;
}

@media (max-width: 500px) {
    .dri-modal {
        padding: 28px;
    }
    
    .dri-modal-form .dri-form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DRI PERSPECTIVES SECTION
   ============================================ */
.dri-perspectives-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.dri-perspectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dri-perspective-featured {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dri-perspective-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.15) 0%, rgba(0, 156, 111, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dri-perspective-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0, 156, 111, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dri-perspective-placeholder svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
}

.dri-perspective-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dri-perspective-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dri-perspective-category {
    padding: 4px 10px;
    background: rgba(0, 156, 111, 0.1);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dri-perspective-date {
    font-size: 12px;
    color: var(--cream-muted);
}

.dri-perspective-featured h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.35;
    margin-bottom: 12px;
}

.dri-perspective-featured p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 24px;
    flex: 1;
}

.dri-perspective-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dri-perspective-link:hover {
    gap: 12px;
}

.dri-perspective-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dri-perspective-link:hover svg {
    transform: translateX(4px);
}

.dri-perspectives-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dri-perspective-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-base);
}

.dri-perspective-card:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: rgba(241, 237, 228, 0.15);
}

.dri-perspective-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 156, 111, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dri-perspective-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.dri-perspective-card .dri-perspective-meta {
    margin-bottom: 10px;
}

.dri-perspective-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 8px;
}

.dri-perspective-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--cream-dim);
    margin-bottom: 16px;
}

.dri-perspective-card .dri-perspective-link {
    font-size: 13px;
}

@media (max-width: 1024px) {
    .dri-perspectives-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-perspective-featured {
        flex-direction: row;
    }
    
    .dri-perspective-image {
        width: 280px;
        height: auto;
        flex-shrink: 0;
    }
    
    .dri-perspectives-secondary {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .dri-perspective-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .dri-perspective-featured {
        flex-direction: column;
    }
    
    .dri-perspective-image {
        width: 100%;
        height: 180px;
    }
    
    .dri-perspectives-secondary {
        flex-direction: column;
    }
    
    .dri-perspective-card {
        flex: 1 1 100%;
    }
}

/* ============================================
   DRI PLATFORM SHOWCASE SECTION
   ============================================ */
.dri-platform-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.dri-platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 600px;
    background: radial-gradient(ellipse at center top, rgba(255, 213, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.dri-platform-intro {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.dri-platform-logo-reveal {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.dri-bi-logo-wrapper {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: var(--white);
    padding: 12px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(255, 213, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    animation: biLogoFloat 3s ease-in-out infinite;
}

/* P7: Subtle float animation for Banks Insights app icon */
@keyframes biLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.dri-bi-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.dri-bi-logo-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 22px 22px 0 0;
    pointer-events: none;
    z-index: 2;
}

.dri-platform-intro .section-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(241, 237, 228, 0.08);
    border: 1px solid var(--border-dark);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cream-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.dri-platform-headline {
    font-size: 44px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 12px;
}

.dri-platform-headline .highlight {
    background: linear-gradient(135deg, #ffd500 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.dri-platform-tagline {
    font-size: 20px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 16px;
}

.dri-platform-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
    max-width: 700px;
    margin: 0 auto;
}

.dri-platform-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.dri-platform-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dri-platform-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(241, 237, 228, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cream-dim);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-main);
}

.dri-platform-tab svg {
    width: 16px;
    height: 16px;
}

.dri-platform-tab:hover {
    background: rgba(241, 237, 228, 0.08);
    border-color: rgba(241, 237, 228, 0.2);
    color: var(--cream);
}

.dri-platform-tab.active {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
}

.dri-platform-screen {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dri-platform-screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dri-platform-screen-dots {
    display: flex;
    gap: 6px;
}

.dri-platform-screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.dri-platform-screen-dots span:first-child {
    background: #ff5f57;
}

.dri-platform-screen-dots span:nth-child(2) {
    background: #febc2e;
}

.dri-platform-screen-dots span:last-child {
    background: #28c840;
}

.dri-platform-screen-title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    flex: 1;
}

.dri-platform-screen-body {
    aspect-ratio: 16 / 9;
    background: #fafafa;
    position: relative;
}

.dri-platform-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dri-platform-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.dri-platform-screenshot {
    display: block;
    transition: transform 0.3s ease;
}

.dri-platform-image-wrapper:hover .dri-platform-screenshot {
    transform: scale(1.02);
}

/* Screenshot Zoom Button */
.dri-screenshot-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.dri-screenshot-zoom svg {
    width: 20px;
    height: 20px;
}

.dri-platform-image-wrapper:hover .dri-screenshot-zoom {
    opacity: 1;
    transform: scale(1);
}

.dri-screenshot-zoom:hover {
    background: rgba(0, 156, 111, 0.9);
    border-color: var(--accent);
}

/* Screenshot Zoom Modal */
.dri-zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dri-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.dri-zoom-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.dri-zoom-close svg {
    width: 24px;
    height: 24px;
}

.dri-zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.dri-zoom-content {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dri-zoom-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.dri-zoom-modal.active .dri-zoom-image {
    transform: scale(1);
}

.dri-zoom-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 24px;
}

.dri-zoom-prev,
.dri-zoom-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.dri-zoom-prev svg,
.dri-zoom-next svg {
    width: 20px;
    height: 20px;
}

.dri-zoom-prev:hover,
.dri-zoom-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.dri-zoom-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    min-width: 150px;
    text-align: center;
}

@media (max-width: 768px) {
    .dri-zoom-controls {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .dri-zoom-prev,
    .dri-zoom-next {
        width: 36px;
        height: 36px;
    }
    
    .dri-zoom-label {
        font-size: 13px;
        min-width: 120px;
    }
    
    .dri-zoom-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

.dri-platform-placeholder {
    text-align: center;
    color: rgba(0, 0, 0, 0.3);
}

.dri-platform-placeholder-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    opacity: 0.4;
    margin-bottom: 16px;
}

.dri-platform-placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px dashed rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.dri-platform-placeholder-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(0, 0, 0, 0.2);
}

.dri-platform-placeholder p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: rgba(0, 0, 0, 0.4);
}

.dri-platform-placeholder span {
    font-size: 13px;
    opacity: 0.6;
}

.dri-platform-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dri-platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dri-platform-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 156, 111, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dri-platform-feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.dri-platform-feature-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
}

.dri-platform-feature-content p {
    font-size: 12px;
    color: var(--cream-dim);
    line-height: 1.5;
}

.dri-platform-cta {
    text-align: center;
}

.dri-platform-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 156, 111, 0.3);
}

.dri-platform-cta .btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dri-platform-cta .btn svg {
    width: 18px;
    height: 18px;
}

.dri-platform-cta .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dri-platform-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 156, 111, 0.4);
}

.dri-platform-cta .btn:hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .dri-platform-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dri-platform-headline {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .dri-platform-tabs {
        gap: 6px;
    }
    
    .dri-platform-tab {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .dri-platform-tab span {
        display: none;
    }
    
    .dri-platform-tab svg {
        width: 18px;
        height: 18px;
    }
    
    .dri-platform-features {
        grid-template-columns: 1fr;
    }
    
    .dri-platform-screen-body {
        aspect-ratio: 4 / 3;
    }
    
    .dri-bi-logo-wrapper {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        padding: 10px;
    }
    
    .dri-bi-logo-gloss {
        border-radius: 18px 18px 0 0;
    }
    
    .dri-platform-headline {
        font-size: 28px;
    }
    
    .dri-platform-tagline {
        font-size: 17px;
    }
    
    .dri-platform-description {
        font-size: 14px;
    }
}

/* ============================================
   DRI SERVICES SECTION
   ============================================ */
.dri-services-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.dri-services-section .section-title {
    color: var(--black);
}

.dri-services-section .section-desc {
    color: var(--black);
    opacity: 0.7;
}

.dri-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dri-service-pillar {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-base);
}

.dri-service-pillar:hover {
    box-shadow: 0 12px 40px rgba(23, 22, 23, 0.08);
    transform: translateY(-4px);
}

.dri-service-pillar-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.dri-service-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.15) 0%, rgba(0, 156, 111, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dri-service-pillar-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.dri-service-pillar-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
}

.dri-service-pillar-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(23, 22, 23, 0.08);
}

.dri-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dri-service-list li {
    font-size: 13px;
    color: var(--black);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(23, 22, 23, 0.04);
}

.dri-service-list li:last-child {
    border-bottom: none;
}

.dri-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .dri-services-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-service-pillar {
        padding: 24px;
    }
}

/* ============================================
   DRI AI TRANSFORMATION SECTION
   ============================================ */
.dri-ai-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.dri-ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 156, 111, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated glowing green border - top */
.dri-ai-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 20%, 
        var(--accent-bright) 50%, 
        var(--accent) 80%, 
        transparent 100%);
    animation: ai-border-glow 3s ease-in-out infinite;
}

.dri-ai-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 20%, 
        var(--accent-bright) 50%, 
        var(--accent) 80%, 
        transparent 100%);
    animation: ai-border-glow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes ai-border-glow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(0px);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

.dri-ai-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.dri-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 156, 111, 0.1);
    border: 1px solid rgba(0, 156, 111, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.dri-ai-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: ai-badge-shine 2.5s ease-in-out infinite;
}

@keyframes ai-badge-shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.dri-ai-badge svg {
    width: 16px;
    height: 16px;
}

.dri-ai-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 20px;
}

.dri-ai-title .highlight {
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dri-ai-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream-dim);
    max-width: 800px;
    margin: 0 auto 48px;
}

.dri-ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    text-align: left;
}

.dri-ai-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-base);
}

.dri-ai-card:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: rgba(0, 156, 111, 0.3);
}

.dri-ai-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 156, 111, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dri-ai-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.dri-ai-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.dri-ai-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--cream-dim);
}

.dri-ai-statement {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(0, 156, 111, 0.1);
    border: 1px solid rgba(0, 156, 111, 0.25);
    border-radius: 12px;
    text-align: left;
}

.dri-ai-statement-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dri-ai-statement-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.dri-ai-statement p {
    font-size: 15px;
    color: var(--cream);
    line-height: 1.5;
}

.dri-ai-statement strong {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .dri-ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dri-ai-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .dri-ai-grid {
        grid-template-columns: 1fr;
    }
    
    .dri-ai-title {
        font-size: 26px;
    }
    
    .dri-ai-title br {
        display: none;
    }
    
    .dri-ai-statement {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .dri-ai-desc {
        font-size: 15px;
    }
}

/* ============================================
   LIGHT THEME (Legal/Info Pages)
   ============================================ */

/* Logo switching - default shows light logo */
.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

.light-theme {
    background: var(--cream);
    color: var(--black);
}

.light-theme header {
    background: var(--cream);
    border-bottom-color: var(--black);
}

/* Light theme shows dark logo */
.light-theme .logo-light {
    display: none;
}

.light-theme .logo-dark {
    display: block;
}

.light-theme .nav-link,
.light-theme .mobile-menu-btn svg {
    color: var(--black);
}

.light-theme .nav-dropdown-menu {
    background: var(--black);
}

.light-theme footer {
    background: var(--black);
    color: var(--cream);
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Compliance)
   ============================================ */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--black);
    opacity: 0.6;
}

.legal-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.legal-breadcrumb a:hover {
    text-decoration: underline;
}

.legal-header h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 15px;
    opacity: 0.6;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--black);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 12px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--black);
}

.legal-section ul {
    margin: 16px 0 24px 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    font-weight: 600;
}

.legal-contact {
    margin-top: 60px;
    padding: 40px;
    background: var(--black);
    border-radius: 16px;
    color: var(--cream);
}

.legal-contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-contact p {
    color: var(--cream-dim);
    margin-bottom: 12px;
}

.legal-contact-details {
    margin-top: 20px;
}

.legal-contact-details p {
    margin-bottom: 6px;
}

.legal-contact-details a {
    color: var(--accent);
}

/* ============================================
   VENDOR INFORMATION PAGE
   ============================================ */
.vendor-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.vendor-detail {
    padding: 20px;
    background: rgba(23, 22, 23, 0.04);
    border-radius: 12px;
}

.vendor-detail-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin-bottom: 6px;
}

.vendor-detail-value {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.vendor-detail-value a {
    color: var(--accent);
    text-decoration: none;
}

.vendor-detail-value a:hover {
    text-decoration: underline;
}

.vendor-address {
    padding: 24px;
    background: rgba(23, 22, 23, 0.04);
    border-radius: 12px;
}

.vendor-address p {
    margin-bottom: 4px;
}

.vendor-note {
    font-size: 14px;
    font-style: italic;
    opacity: 0.7;
    margin-top: 16px;
}

.vendor-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.vendor-clients span {
    padding: 8px 16px;
    background: rgba(23, 22, 23, 0.06);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   ABOUT PAGE - Dark Theme Design
   ============================================ */

/* Hero */
.about-hero {
    padding: 160px 0 80px;
    background: var(--black);
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 20px 0 24px;
    color: var(--cream);
}

.about-hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--cream-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* Section variants */
.about-section-dark {
    padding: 80px 0;
    background: var(--black);
}

.about-section-cream {
    padding: 80px 0;
    background: var(--cream);
}

/* Who We Are grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-grid-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cream);
}

.about-grid-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cream-dim);
    margin-bottom: 16px;
}

.about-grid-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-stat-card {
    padding: 24px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--cream-dim);
}

/* Approach section */
.about-approach {
    max-width: 1000px;
    margin: 0 auto;
}

.about-approach-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-approach-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.about-approach-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-approach-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.about-approach-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), #00c97b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-approach-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.about-approach-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.about-approach-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.7;
    margin: 0;
}

/* Services grid (dark) */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-service-card {
    display: block;
    padding: 32px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-service-card:hover {
    border-color: rgba(0, 156, 111, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), #00c97b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.about-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.about-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 16px;
}

.about-service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.about-service-card:hover .about-service-link svg {
    transform: translateX(4px);
}

/* Clients section */
.about-clients {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-clients h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.about-clients > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.7;
    margin-bottom: 40px;
}

.about-clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.about-clients-logos img {
    height: 40px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0);
    transition: opacity 0.2s ease;
}

.about-clients-logos img:hover {
    opacity: 0.8;
}

/* About clients - dark section overrides */
.about-section-dark .about-clients h2 {
    color: var(--cream);
}

.about-section-dark .about-clients > p {
    color: var(--cream);
    opacity: 0.7;
}

.about-section-dark .about-clients-logos img {
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.about-section-dark .about-clients-logos img:hover {
    opacity: 0.9;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(20%);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 156, 111, 0.3);
    pointer-events: none;
}

.founder-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.founder-role {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.founder-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.founder-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.founder-social a:hover {
    color: var(--accent);
}

/* About Services Grid - 6 items */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Location section */
.about-location {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-location-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cream);
}

.about-location-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cream-dim);
    margin-bottom: 16px;
}

.about-location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.about-location-link:hover {
    text-decoration: underline;
}

.about-location-link svg {
    width: 18px;
    height: 18px;
}

.about-location-details {
    display: grid;
    gap: 12px;
}

.about-location-item {
    padding: 20px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
}

.about-location-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cream-dim);
    margin-bottom: 4px;
}

.about-location-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
}

/* About location - cream section overrides */
.about-section-cream .about-location-content h2 {
    color: var(--black) !important;
}

.about-section-cream .about-location-content p {
    color: #444 !important;
}

.about-section-cream .about-location-item {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.about-section-cream .about-location-label {
    color: #666;
}

.about-section-cream .about-location-value {
    color: var(--black);
}

/* CTA section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent), #00c97b);
}

.about-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.about-cta-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.about-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--accent);
    border: none;
}

.about-cta-buttons .btn-primary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-cta-buttons .btn-primary:hover span {
    color: var(--white);
}

.about-cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.about-cta-buttons .btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--accent);
    transform: translateY(-2px);
}

.about-cta-buttons .btn-secondary:hover span {
    color: var(--accent);
}

.about-cta-buttons .btn-secondary:hover svg {
    color: var(--accent);
}

/* Mobile adjustments for about page */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .about-stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-location {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 140px 0 60px;
    }
    
    .about-section-dark,
    .about-section-cream {
        padding: 60px 0;
    }
    
    .about-grid-stats {
        flex-direction: column;
    }
    
    .about-clients-logos {
        gap: 24px;
    }
    
    .about-clients-logos img {
        height: 32px;
    }
    
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-cta-content h2 {
        font-size: 32px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile adjustments for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .vendor-details-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-contact {
        padding: 30px 24px;
    }
}

/* ============================================
   OPERATIONAL PLATFORMS - DASHBOARD SHOWCASE
   ============================================ */

/* Hero Section - Centered Content */
.page-ops .ops-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: visible;
    min-height: auto;
}

.page-ops .ops-hero-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-ops .ops-hero-content h1 {
    text-align: center;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 24px;
}

.page-ops .ops-hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--cream-dim);
    max-width: 600px;
    margin-bottom: 40px;
}

.page-ops .ops-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Mesh Canvas */
.ops-mesh-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Dashboard Section */
.ops-dashboard-section {
    position: relative;
    padding: 0 40px 120px;
    margin-top: -20px;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, var(--black) 60%);
}

.ops-dashboard-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-dark) 20%, var(--border-dark) 80%, transparent 100%);
}

.ops-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1500px;
}

.ops-dashboard-frame {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 120px rgba(0, 156, 111, 0.15);
}

/* Window Chrome */
.ops-window-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ops-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ops-window-dot.red { background: #ff5f57; }
.ops-window-dot.yellow { background: #febc2e; }
.ops-window-dot.green { background: #28c840; }

.ops-window-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: rgba(241, 237, 228, 0.5);
    font-weight: 500;
}

/* Dashboard Layout */
.ops-dashboard-layout {
    display: flex;
    height: 650px;
}

/* Sidebar */
.ops-sidebar {
    width: 220px;
    background: rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.ops-sidebar-logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.ops-sidebar-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
}

.ops-sidebar-logo-text span {
    color: var(--accent-bright);
}

.ops-sidebar-nav {
    flex: 1;
    overflow: hidden;
}

.ops-sidebar-section {
    margin-bottom: 24px;
}

.ops-sidebar-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(241, 237, 228, 0.3);
    padding: 0 20px;
    margin-bottom: 8px;
}

.ops-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: rgba(241, 237, 228, 0.6);
    font-size: 13px;
    cursor: default;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.ops-sidebar-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.ops-sidebar-item.active {
    background: rgba(0, 156, 111, 0.15);
    color: var(--accent-bright);
    border-left-color: var(--accent-bright);
}

.ops-sidebar-item.active svg {
    opacity: 1;
}

.ops-sidebar-badge {
    margin-left: auto;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
}

.ops-sidebar-badge.alert {
    background: #ff6b7a;
}

.ops-sidebar-user {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.ops-sidebar-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: white;
}

.ops-sidebar-user-info {
    flex: 1;
}

.ops-sidebar-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--cream);
}

.ops-sidebar-user-role {
    font-size: 11px;
    color: rgba(241, 237, 228, 0.5);
}

/* Main Dashboard Content */
.ops-dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

/* Dashboard Header */
.ops-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.ops-header-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
}

.ops-header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ops-header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(241, 237, 228, 0.4);
    font-size: 13px;
}

.ops-header-search svg {
    width: 14px;
    height: 14px;
}

.ops-header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--accent);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.ops-header-btn svg {
    width: 14px;
    height: 14px;
}

/* Dashboard Content */
.ops-dashboard-content {
    flex: 1;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stats Row */
.ops-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    flex-shrink: 0;
}

.ops-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.ops-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    opacity: 0;
    transition: opacity 0.3s;
}

.ops-stat-card:hover::before {
    opacity: 1;
}

.ops-stat-label {
    font-size: 11px;
    color: rgba(241, 237, 228, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ops-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
    line-height: 1;
}

.ops-stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}

.ops-stat-change.positive { color: var(--accent-bright); }
.ops-stat-change.negative { color: #ff6b7a; }
.ops-stat-change.warning { color: #f0ad4e; }

/* Widgets Grid */
.ops-widgets-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    grid-template-rows: 1fr auto;
    gap: 14px;
    min-height: 0;
}

/* Widget Base */
.ops-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ops-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.ops-widget-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--cream);
}

.ops-widget-subtitle {
    font-size: 10px;
    color: rgba(241, 237, 228, 0.4);
}

.ops-widget-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px;
    border-radius: 6px;
}

.ops-widget-tab {
    padding: 5px 10px;
    font-size: 11px;
    color: rgba(241, 237, 228, 0.5);
    border-radius: 4px;
    cursor: default;
    transition: all 0.2s;
}

.ops-widget-tab.active {
    background: var(--accent);
    color: white;
}

.ops-widget-canvas {
    flex: 1;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    min-height: 0;
}

.ops-widget-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Floorplan Widget */
.ops-widget-floorplan {
    grid-column: 1;
    grid-row: 1;
}

/* Sites List Widget */
.ops-widget-sites {
    grid-column: 1;
    grid-row: 1;
}

.ops-sites-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.ops-site-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.ops-site-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.ops-site-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ops-site-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.ops-site-info {
    flex: 1;
    min-width: 0;
}

.ops-site-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(241, 237, 228, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ops-site-meta {
    font-size: 10px;
    color: rgba(241, 237, 228, 0.5);
    margin-top: 2px;
}

.ops-site-count {
    text-align: right;
    flex-shrink: 0;
}

.ops-site-count .count {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.ops-site-count .label {
    font-size: 9px;
    color: rgba(241, 237, 228, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Chart Widget */
.ops-widget-chart {
    grid-column: 2;
    grid-row: 1;
}

/* Assets Widget */
.ops-widget-assets {
    grid-column: 3;
    grid-row: 1 / 3;
}

.ops-asset-list {
    flex: 1;
    overflow: hidden;
}

.ops-asset-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.ops-asset-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.ops-asset-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ops-asset-info {
    flex: 1;
    min-width: 0;
}

.ops-asset-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ops-asset-meta {
    font-size: 10px;
    color: rgba(241, 237, 228, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ops-asset-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ops-asset-status.online { 
    background: var(--accent-bright); 
    box-shadow: 0 0 8px rgba(0, 201, 123, 0.5); 
}
.ops-asset-status.warning { 
    background: #f0ad4e; 
    box-shadow: 0 0 8px rgba(240, 173, 78, 0.5); 
}
.ops-asset-status.offline { 
    background: #ff6b7a; 
    box-shadow: 0 0 8px rgba(255, 107, 122, 0.5); 
}

/* Feed Widget */
.ops-widget-feed {
    grid-column: 1 / 3;
    grid-row: 2;
}

.ops-feed-list {
    display: flex;
    gap: 12px;
    overflow: hidden;
}

.ops-feed-item {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    min-width: 280px;
    flex-shrink: 0;
    opacity: 0;
    animation: opsFeedIn 0.4s ease forwards;
}

@keyframes opsFeedIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ops-feed-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.ops-feed-dot.success { background: var(--accent-bright); }
.ops-feed-dot.warning { background: #f0ad4e; }
.ops-feed-dot.info { background: #3b82f6; }

.ops-feed-content {
    flex: 1;
    min-width: 0;
}

.ops-feed-text {
    font-size: 11px;
    color: var(--cream);
    margin-bottom: 3px;
    line-height: 1.4;
}

.ops-feed-time {
    font-size: 10px;
    color: rgba(241, 237, 228, 0.4);
}

/* Dashboard Mobile Responsive */
@media (max-width: 1200px) {
    .ops-dashboard-section {
        padding: 0 20px 100px;
    }
    
    .ops-sidebar {
        width: 180px;
    }
    
    .ops-widgets-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto auto;
    }
    
    .ops-widget-assets {
        grid-column: 1 / 3;
        grid-row: 3;
    }
    
    .ops-asset-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .ops-asset-item {
        margin-bottom: 0;
    }
}

@media (max-width: 900px) {
    /* Scale dashboard proportionally instead of stacking */
    .ops-dashboard-section {
        padding: 0 16px 80px;
    }
    
    .ops-dashboard-container {
        max-width: 100%;
        overflow: visible;
    }
    
    .ops-dashboard-frame {
        transform: scale(0.65);
        transform-origin: top center;
        margin-bottom: -220px;
    }
    
    .ops-dashboard-layout {
        height: 650px;
    }
    
    .ops-sidebar {
        width: 180px;
        display: flex;
    }
    
    .ops-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .ops-widgets-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ops-widget-floorplan,
    .ops-widget-chart {
        min-height: 220px;
    }
    
    .ops-widget-assets {
        grid-column: 1 / 3;
    }
    
    .ops-asset-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ops-widget-feed {
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    .ops-dashboard-section {
        padding: 0 12px 60px;
    }
    
    .ops-dashboard-frame {
        transform: scale(0.45);
        transform-origin: top center;
        margin-bottom: -360px;
        border-radius: 16px;
    }
    
    .page-ops .ops-hero {
        padding: 120px 0 60px;
    }
    
    .page-ops .ops-hero-content h1 {
        font-size: 28px;
    }
    
    .page-ops .ops-hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .page-ops .ops-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-ops .ops-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* ============================================
   OPS PAGE - SECTIONS BELOW DASHBOARD
   ============================================ */

/* --------------------------------------------
   SECTION 2: THE HIDDEN COST
   -------------------------------------------- */
.ops-cost-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
    border-top: 1px solid var(--border-dark);
}

.ops-cost-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ops-cost-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.ops-cost-card:hover {
    border-color: rgba(0, 156, 111, 0.3);
    transform: translateY(-2px);
}

.ops-cost-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ops-cost-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.ops-cost-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}

.ops-cost-card p {
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ops-cost-impact {
    display: flex;
    gap: 8px;
    font-size: 13px;
    padding-top: 16px;
    border-top: 1px solid var(--border-dark);
}

.impact-label {
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

.impact-value {
    color: var(--cream-muted);
}

.ops-cost-callout {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.08) 0%, rgba(0, 156, 111, 0.02) 100%);
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 16px;
    padding: 32px 40px;
}

.ops-cost-callout p {
    font-size: 17px;
    color: var(--cream-dim);
    line-height: 1.7;
    text-align: center;
}

.ops-cost-callout strong {
    color: var(--accent);
}

/* --------------------------------------------
   SECTION 3: THE SOLUTION (Light Theme)
   -------------------------------------------- */
.ops-solution-section {
    padding: var(--section-padding) 0;
}

.ops-solution-section.light-theme {
    background: var(--cream);
    color: var(--black);
}

.ops-solution-section.light-theme .section-title {
    color: var(--black);
}

.ops-solution-section.light-theme .section-pill.dark {
    background: linear-gradient(135deg, rgba(23, 22, 23, 0.08) 0%, rgba(23, 22, 23, 0.03) 100%);
    border-color: rgba(23, 22, 23, 0.2);
    color: var(--black);
}

.ops-solution-content {
    max-width: 900px;
    margin: 0 auto;
}

.ops-solution-intro {
    margin-bottom: 48px;
}

.ops-solution-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--gray);
    text-align: center;
}

.ops-solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.ops-pillar {
    text-align: left;
    position: relative;
    padding-left: 0;
}

.ops-pillar-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1;
    opacity: 0.3;
}

.ops-pillar h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.ops-pillar p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.ops-solution-note {
    background: var(--black);
    border-radius: 16px;
    padding: 32px 40px;
}

.ops-solution-note p {
    font-size: 16px;
    color: var(--cream-dim);
    line-height: 1.7;
    text-align: center;
}

/* --------------------------------------------
   SECTION 4: BEFORE / AFTER CONTRAST
   -------------------------------------------- */
.ops-contrast-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.ops-contrast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ops-contrast-column {
    border-radius: 20px;
    padding: 40px;
}

.ops-contrast-column.before {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
}

.ops-contrast-column.after {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.12) 0%, rgba(0, 156, 111, 0.04) 100%);
    border: 1px solid rgba(0, 156, 111, 0.25);
}

.ops-contrast-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.ops-contrast-column.after .ops-contrast-header {
    border-color: rgba(0, 156, 111, 0.2);
}

.ops-contrast-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream-muted);
    margin-bottom: 8px;
    display: block;
}

.ops-contrast-column.after .ops-contrast-label {
    color: var(--accent);
}

.ops-contrast-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
}

.ops-contrast-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ops-contrast-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.5;
}

.ops-contrast-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ops-contrast-column.before .ops-contrast-list li svg {
    color: #ff6b7a;
}

.ops-contrast-column.after .ops-contrast-list li svg {
    color: var(--accent-bright);
}

/* --------------------------------------------
   SECTION 5: CAPABILITIES (Light Theme)
   -------------------------------------------- */
.ops-capabilities-section {
    padding: var(--section-padding) 0;
}

.ops-capabilities-section.light-theme {
    background: var(--cream);
    color: var(--black);
}

.ops-capabilities-section.light-theme .section-title {
    color: var(--black);
}

.ops-capabilities-section.light-theme .section-desc {
    color: var(--gray);
}

.ops-capabilities-section.light-theme .section-pill.dark {
    background: linear-gradient(135deg, rgba(23, 22, 23, 0.08) 0%, rgba(23, 22, 23, 0.03) 100%);
    border-color: rgba(23, 22, 23, 0.2);
    color: var(--black);
}

.ops-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ops-capability-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.ops-capability-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ops-capability-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ops-capability-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.ops-capability-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.4;
}

.ops-capability-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ops-capability-how {
    display: flex;
    gap: 8px;
    font-size: 13px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.how-label {
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

.ops-capability-how span:last-child {
    color: var(--gray);
}

/* --------------------------------------------
   SECTION 6: PROOF / WHY US
   -------------------------------------------- */
.ops-proof-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.ops-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.ops-proof-stat {
    text-align: center;
    padding: 32px 16px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
}

.ops-proof-value {
    display: block;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.ops-proof-label {
    font-size: 14px;
    color: var(--cream-dim);
    line-height: 1.4;
}

.ops-proof-clients {
    text-align: center;
    margin-bottom: 64px;
}

.ops-proof-clients-label {
    font-size: 14px;
    color: var(--cream-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ops-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ops-proof-logo {
    opacity: 0.6;
    transition: var(--transition-base);
}

.ops-proof-logo:hover {
    opacity: 1;
}

.ops-proof-logo img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ops-proof-context {
    max-width: 800px;
    margin: 0 auto;
}

.ops-proof-context-card {
    text-align: center;
    padding: 0;
}

.ops-proof-context-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cream);
}

.ops-proof-context-card p {
    font-size: 17px;
    color: var(--cream-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ops-proof-context-card p:last-child {
    margin-bottom: 0;
    color: var(--cream-muted);
    font-size: 15px;
}

/* --------------------------------------------
   SECTION 7: HOW IT WORKS (Light Theme)
   -------------------------------------------- */
.ops-process-section {
    padding: var(--section-padding) 0;
}

.ops-process-section.light-theme {
    background: var(--cream);
    color: var(--black);
}

.ops-process-section.light-theme .section-title {
    color: var(--black);
}

.ops-process-section.light-theme .section-desc {
    color: var(--gray);
}

.ops-process-section.light-theme .section-pill.dark {
    background: linear-gradient(135deg, rgba(23, 22, 23, 0.08) 0%, rgba(23, 22, 23, 0.03) 100%);
    border-color: rgba(23, 22, 23, 0.2);
    color: var(--black);
}

.ops-process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.ops-process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(0, 156, 111, 0.2));
}

.ops-process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.ops-process-step:last-child {
    margin-bottom: 0;
}

.ops-process-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ops-process-content {
    flex: 1;
    padding-top: 8px;
}

.ops-process-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.ops-process-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ops-process-duration {
    display: inline-flex;
    padding: 6px 14px;
    background: var(--accent-dim);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-dark);
}

/* --------------------------------------------
   SECTION 8: CTA / CONTACT
   -------------------------------------------- */
.ops-cta-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.ops-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.ops-cta-text .section-title {
    text-align: left;
}

.ops-cta-text .section-desc {
    text-align: left;
    margin-bottom: 24px;
}

.ops-cta-text .section-pill {
    display: inline-flex;
}

.ops-cta-note {
    font-size: 14px;
    color: var(--cream-muted);
    margin-bottom: 32px;
}

.ops-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ops-cta-form-wrapper {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
}

.ops-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ops-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ops-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ops-form-group.full {
    grid-column: 1 / -1;
}

.ops-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream-dim);
}

.ops-form-group input,
.ops-form-group select,
.ops-form-group textarea {
    padding: 14px 16px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: var(--cream);
    transition: var(--transition-base);
}

.ops-form-group input::placeholder,
.ops-form-group textarea::placeholder {
    color: var(--cream-muted);
}

.ops-form-group input:focus,
.ops-form-group select:focus,
.ops-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.ops-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.ops-form-group select option {
    background: var(--black);
    color: var(--cream);
}

.ops-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.ops-contact-form button[type="submit"] {
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ops-contact-form button[type="submit"]:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
}

.ops-contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ops-contact-form button[type="submit"] svg {
    width: 18px;
    height: 18px;
}

.ops-form-success {
    text-align: center;
    padding: 40px 20px;
}

.ops-form-success .ops-success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ops-form-success .ops-success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.ops-form-success h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
}

.ops-form-success p {
    font-size: 16px;
    color: var(--cream-dim);
}

/* --------------------------------------------
   HIGHLIGHT CLASSES FOR OPS PAGE
   -------------------------------------------- */
.page-ops .highlight {
    color: var(--accent);
}

.page-ops .highlight-dark {
    color: var(--accent-dark);
}

/* --------------------------------------------
   RESPONSIVE: TABLET
   -------------------------------------------- */
@media (max-width: 1024px) {
    .ops-cost-grid {
        gap: 20px;
    }
    
    .ops-solution-pillars {
        gap: 24px;
    }
    
    .ops-contrast-grid {
        gap: 24px;
    }
    
    .ops-capabilities-grid {
        gap: 20px;
    }
    
    .ops-proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ops-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ops-cta-text .section-title,
    .ops-cta-text .section-desc {
        text-align: center;
    }
    
    .ops-cta-text .section-pill {
        display: flex;
        justify-content: center;
    }
    
    .ops-cta-note {
        text-align: center;
    }
    
    .ops-cta-buttons {
        justify-content: center;
    }
}

/* --------------------------------------------
   RESPONSIVE: MOBILE
   -------------------------------------------- */
@media (max-width: 768px) {
    .ops-cost-grid {
        grid-template-columns: 1fr;
    }
    
    .ops-cost-card {
        padding: 24px;
    }
    
    .ops-cost-callout {
        padding: 24px;
    }
    
    .ops-solution-pillars {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ops-pillar {
        padding: 0;
    }
    
    .ops-solution-note {
        padding: 24px;
    }
    
    .ops-contrast-grid {
        grid-template-columns: 1fr;
    }
    
    .ops-contrast-column {
        padding: 28px;
    }
    
    .ops-capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .ops-capability-card {
        padding: 24px;
    }
    
    .ops-proof-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .ops-proof-stat {
        padding: 24px 16px;
    }
    
    .ops-proof-logos {
        gap: 32px;
    }
    
    .ops-proof-logo img {
        height: 22px;
    }
    
    .ops-proof-context-card {
        padding: 28px 24px;
    }
    
    .ops-process-timeline::before {
        left: 20px;
    }
    
    .ops-process-step {
        gap: 20px;
    }
    
    .ops-process-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .ops-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ops-cta-text .section-title,
    .ops-cta-text .section-desc {
        text-align: center;
    }
    
    .ops-cta-text .section-pill {
        display: flex;
        justify-content: center;
    }
    
    .ops-cta-note {
        text-align: center;
    }
    
    .ops-cta-buttons {
        justify-content: center;
    }
    
    .ops-cta-form-wrapper {
        padding: 28px 24px;
    }
    
    .ops-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ops-proof-stats {
        grid-template-columns: 1fr;
    }
    
    .ops-proof-value {
        font-size: 32px;
    }
    
    .ops-cta-buttons {
        flex-direction: column;
    }
    
    .ops-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .ops-contact-form button[type="submit"] {
        font-size: 14px;
        padding: 14px 20px;
        gap: 8px;
    }
    
    .ops-contact-form button[type="submit"] svg {
        width: 16px;
        height: 16px;
    }
}
/* ============================================
   APPEND THIS TO THE END OF styles.css
   ============================================ */

/* ============================================
   NEW PILLAR CARDS (V2) - White boxes with green icon boxes
   ============================================ */
.ops-solution-pillars-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ops-pillar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(23, 22, 23, 0.06);
}

.ops-pillar-icon-box {
    width: 52px;
    height: 52px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ops-pillar-icon-box svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke: var(--white);
}

.ops-pillar-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.ops-pillar-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   WHY US GRID - 6-card layout
   ============================================ */
.ops-why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ops-why-us-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.ops-why-us-card:hover {
    border-color: rgba(0, 156, 111, 0.3);
    transform: translateY(-2px);
}

.ops-why-us-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ops-why-us-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    stroke: var(--accent);
}

.ops-why-us-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}

.ops-why-us-card p {
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   OPS HERO - Combined section with mesh
   ============================================ */

/* Override the original ops-hero styles for combined section */
.page-ops .ops-hero {
    position: relative;
    padding: 160px 0 120px;
    text-align: center;
    overflow: hidden; /* Prevent horizontal scroll */
    min-height: auto;
}

/* Canvas container - covers entire hero section */
.ops-hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* Dark gradient overlay to make text pop - sits between canvas and content */
.ops-hero-canvas-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 50% at 50% 35%,
        rgba(23, 22, 23, 0.85) 0%,
        rgba(23, 22, 23, 0.6) 40%,
        rgba(23, 22, 23, 0) 70%
    );
    pointer-events: none;
}

#opsMeshCanvas {
    width: 100%;
    height: 100%;
}

/* Hero content sits above canvas */
.page-ops .ops-hero-content {
    position: relative;
    z-index: 10;
}

/* Tablet/Mobile: Hide mesh, add ambient glow instead */
@media (max-width: 900px) {
    /* Hide the mesh canvas on smaller screens */
    .ops-hero-canvas-container {
        display: none;
    }
    
    /* Add ambient glow effect as replacement */
    .page-ops .ops-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        height: 100%;
        background: radial-gradient(
            ellipse 60% 40% at 50% 20%,
            rgba(0, 156, 111, 0.08) 0%,
            rgba(0, 156, 111, 0.03) 40%,
            transparent 70%
        );
        pointer-events: none;
        z-index: 1;
    }
    
    /* Subtle corner accents */
    .page-ops .ops-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(ellipse 50% 50% at 0% 0%, rgba(241, 237, 228, 0.03) 0%, transparent 50%),
            radial-gradient(ellipse 50% 50% at 100% 100%, rgba(241, 237, 228, 0.02) 0%, transparent 50%);
        pointer-events: none;
        z-index: 1;
    }
}

/* Dashboard container inside hero */
.page-ops .ops-hero .ops-dashboard-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
}

/* Remove the old dashboard section styles that conflict */
.page-ops .ops-dashboard-section {
    display: none; /* No longer used - dashboard is inside hero */
}

/* ============================================
   CTA SECTION MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
    /* Fix pill - keep inline, center via text-align on parent */
    .ops-cta-text .section-pill {
        display: inline-flex; /* Not flex - keeps it inline/auto-width */
    }
    
    /* Center the pill by centering the text container */
    .ops-cta-text {
        text-align: center;
    }
    
    /* Ensure buttons container is centered */
    .ops-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Stack buttons vertically and center them */
    .ops-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ops-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================
   TABLET/MOBILE DASHBOARD - COMPLETE REDESIGN
   Remove sidebar and chrome, show stacked components
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .ops-solution-pillars-v2 {
        gap: 20px;
    }
    
    .ops-why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet Dashboard Redesign - 900px and below */
@media (max-width: 900px) {
    /* Hero section adjustments */
    .page-ops .ops-hero {
        padding: 140px 0 80px;
    }
    
    .page-ops .ops-hero .ops-dashboard-container {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    /* Reset the scaling approach */
    .ops-dashboard-frame {
        transform: none !important;
        margin-bottom: 0 !important;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    
    /* Hide window chrome (dots and title bar) */
    .ops-window-chrome {
        display: none !important;
    }
    
    /* Hide sidebar completely */
    .ops-sidebar {
        display: none !important;
    }
    
    /* Main dashboard takes full width */
    .ops-dashboard-layout {
        display: block;
        height: auto;
    }
    
    .ops-dashboard-main {
        display: block;
    }
    
    /* Hide the internal header */
    .ops-dashboard-header {
        display: none;
    }
    
    /* Dashboard content - stacked layout */
    .ops-dashboard-content {
        padding: 0;
        gap: 20px;
    }
    
    /* Stats row - 2x2 grid */
    .ops-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ops-stat-card {
        background: var(--black-light);
        border: 1px solid var(--border-dark);
        padding: 20px;
        border-radius: 16px;
    }
    
    .ops-stat-value {
        font-size: 28px;
    }
    
    /* Widgets grid - stacked single column */
    .ops-widgets-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    /* Reset all grid positioning */
    .ops-widget-sites,
    .ops-widget-chart,
    .ops-widget-assets,
    .ops-widget-feed {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    /* Widget cards styling */
    .ops-widget {
        background: var(--black-light);
        border: 1px solid var(--border-dark);
        border-radius: 16px;
        padding: 20px;
        min-height: auto;
    }
    
    /* Sites widget */
    .ops-widget-sites {
        order: 1;
    }
    
    .ops-sites-list {
        max-height: none;
    }
    
    .ops-site-item {
        padding: 14px;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }
    
    /* Chart widget */
    .ops-widget-chart {
        order: 2;
        min-height: 200px;
    }
    
    .ops-widget-canvas {
        height: 180px;
    }
    
    /* Assets widget - horizontal scroll on tablet */
    .ops-widget-assets {
        order: 3;
    }
    
    .ops-asset-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .ops-asset-item {
        margin-bottom: 0;
        padding: 14px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }
    
    /* Activity feed - vertical stack */
    .ops-widget-feed {
        order: 4;
    }
    
    .ops-feed-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .ops-feed-item {
        min-width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
    }
    
    /* Widget headers */
    .ops-widget-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .ops-widget-title {
        font-size: 16px;
    }
    
    .ops-widget-tabs {
        display: none; /* Hide tabs on mobile for cleaner look */
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .ops-solution-pillars-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ops-pillar-card {
        padding: 24px;
    }
    
    .ops-why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ops-why-us-card {
        padding: 24px;
    }
    
    /* Hero mobile adjustments */
    .page-ops .ops-hero {
        padding: 120px 0 60px;
    }
    
    .page-ops .ops-hero .ops-dashboard-container {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .ops-stats-row {
        gap: 10px;
    }
    
    .ops-stat-card {
        padding: 16px;
    }
    
    .ops-stat-label {
        font-size: 10px;
    }
    
    .ops-stat-value {
        font-size: 24px;
    }
    
    .ops-stat-change {
        font-size: 10px;
    }
    
    .ops-widget {
        padding: 16px;
    }
    
    .ops-site-item,
    .ops-asset-item,
    .ops-feed-item {
        padding: 12px;
    }
    
    .ops-site-name,
    .ops-asset-name {
        font-size: 13px;
    }
    
    .ops-site-meta,
    .ops-asset-meta {
        font-size: 11px;
    }
    
    .ops-site-count .count {
        font-size: 14px;
    }
    
    .ops-feed-text {
        font-size: 12px;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    /* Stats stay 2x2 */
    .ops-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ops-stat-card {
        padding: 14px;
    }
    
    .ops-stat-value {
        font-size: 22px;
    }
    
    /* Simplify sites list */
    .ops-site-count {
        display: none; /* Hide asset count on very small screens */
    }
    
    .ops-widget-canvas {
        height: 150px;
    }
}
/* ============================================
   PRODUCT DEVELOPMENT PAGE STYLES
   Add to bottom of styles.css
   ============================================ */

/* ============================================
   ATLAS & AISLE BRAND COLORS (CSS Variables)
   ============================================ */
:root {
    --aa-forest: #253320;
    --aa-sage: #9CAF88;
    --aa-beige: #E9E7E1;
    --aa-white: #FFFFFF;
    --aa-charcoal: #2C2C2C;
}

/* ============================================
   PD HERO SECTION
   ============================================ */
.page-pd .pd-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 60px;
    overflow: hidden;
    background: var(--black);
}

.pd-hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pd-hero-canvas-container canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero Fade Overlay - Darker fade behind text to hide mesh grid */
.pd-hero-fade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(23, 22, 23, 0.85) 0%, rgba(23, 22, 23, 0.5) 45%, transparent 70%);
    pointer-events: none;
}

.page-pd .pd-hero-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
}

.page-pd .pd-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--cream);
}

.page-pd .pd-hero-content h1 .highlight {
    color: var(--accent);
}

.pd-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.pd-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PD DASHBOARD SHOWCASE - ATLAS & AISLE THEME
   ============================================ */
.pd-dashboard-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.pd-dashboard-frame {
    background: var(--black-light);
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -60px;
}

/* A&A Theme Overrides */
.pd-dashboard-frame.aa-theme {
    background: var(--aa-beige);
    border-color: rgba(37, 51, 32, 0.15);
}

/* Window Chrome */
.pd-window-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-dark);
}

.aa-theme .pd-window-chrome {
    background: var(--aa-forest);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.pd-window-dot.red { background: #ff5f57; }
.pd-window-dot.yellow { background: #ffbd2e; }
.pd-window-dot.green { background: #28ca41; }

.pd-window-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--cream-muted);
    font-weight: 500;
}

.aa-theme .pd-window-title {
    color: rgba(255, 255, 255, 0.7);
}

/* Dashboard Layout */
.pd-dashboard-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 480px;
}

/* Sidebar - A&A Theme */
.pd-sidebar {
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.aa-theme .pd-sidebar {
    background: var(--aa-forest);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px 20px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 20px;
}

.aa-theme .pd-sidebar-logo {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pd-sidebar-logo-img {
    width: 100%;
    height: auto;
}

.pd-sidebar-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e91e63, #ff6090);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aa-theme .pd-sidebar-logo-icon {
    background: linear-gradient(135deg, var(--aa-sage), #b5c4a5);
}

.pd-sidebar-logo-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.pd-sidebar-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--cream);
}

.aa-theme .pd-sidebar-logo-text {
    color: var(--aa-white);
}

.pd-sidebar-logo-text span {
    color: #ff6090;
}

.aa-theme .pd-sidebar-logo-text span {
    color: var(--aa-sage);
}

.pd-sidebar-nav {
    flex: 1;
    padding: 0 12px;
}

.pd-sidebar-section {
    margin-bottom: 24px;
}

.pd-sidebar-title {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream-muted);
    padding: 0 8px;
    margin-bottom: 8px;
}

.aa-theme .pd-sidebar-title {
    color: rgba(255, 255, 255, 0.5);
}

.pd-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--cream-dim);
    cursor: pointer;
    transition: var(--transition-fast);
}

.aa-theme .pd-sidebar-item {
    color: rgba(255, 255, 255, 0.7);
}

.pd-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
}

.aa-theme .pd-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--aa-white);
}

.pd-sidebar-item.active {
    background: rgba(233, 30, 99, 0.15);
    color: #ff6090;
}

.aa-theme .pd-sidebar-item.active {
    background: rgba(156, 175, 136, 0.25);
    color: var(--aa-sage);
}

.pd-sidebar-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.pd-sidebar-item.active svg {
    opacity: 1;
    color: #ff6090;
}

.aa-theme .pd-sidebar-item.active svg {
    color: var(--aa-sage);
}

.pd-sidebar-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.aa-theme .pd-sidebar-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--aa-white);
}

.pd-sidebar-badge.alert {
    background: rgba(233, 30, 99, 0.2);
    color: #ff6090;
}

.aa-theme .pd-sidebar-badge.alert {
    background: rgba(156, 175, 136, 0.3);
    color: var(--aa-sage);
}

.pd-sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-dark);
    margin-top: auto;
}

.aa-theme .pd-sidebar-user {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.pd-sidebar-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e91e63, #ff6090);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.aa-theme .pd-sidebar-avatar {
    background: linear-gradient(135deg, var(--aa-sage), #b5c4a5);
    color: var(--aa-forest);
}

.pd-sidebar-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--cream);
}

.aa-theme .pd-sidebar-user-name {
    color: var(--aa-white);
}

.pd-sidebar-user-role {
    font-size: 11px;
    color: var(--cream-muted);
}

.aa-theme .pd-sidebar-user-role {
    color: rgba(255, 255, 255, 0.5);
}

/* Main Dashboard Content - A&A Theme */
.pd-dashboard-main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.aa-theme .pd-dashboard-main {
    background: var(--aa-beige);
}

.pd-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-dark);
}

.aa-theme .pd-dashboard-header {
    border-bottom-color: rgba(37, 51, 32, 0.1);
}

.pd-header-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
}

.aa-theme .pd-header-title {
    color: var(--aa-charcoal);
}

.pd-header-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.15) 0%, rgba(37, 51, 32, 0.2) 100%);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(156, 175, 136, 0.3);
    min-width: 100px;
}

.aa-theme .pd-header-countdown {
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.2) 0%, rgba(37, 51, 32, 0.15) 100%);
    border-color: rgba(156, 175, 136, 0.3);
    box-shadow: 0 4px 16px rgba(37, 51, 32, 0.1);
}

.pd-countdown-label {
    font-size: 10px;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.aa-theme .pd-countdown-label {
    color: var(--aa-sage);
}

.pd-countdown-value {
    font-size: 32px;
    font-weight: 800;
    color: #ff6090;
    line-height: 1;
}

.aa-theme .pd-countdown-value {
    color: var(--aa-forest);
}

.pd-dashboard-content {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Stats Row - A&A Theme */
.pd-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pd-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.aa-theme .pd-stat-card {
    background: var(--aa-white);
    border-color: rgba(37, 51, 32, 0.1);
    box-shadow: 0 2px 8px rgba(37, 51, 32, 0.05);
}

.pd-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-stat-icon svg {
    width: 22px;
    height: 22px;
}

.pd-stat-icon.confirmed {
    background: rgba(0, 156, 111, 0.15);
    color: var(--accent);
}

.aa-theme .pd-stat-icon.confirmed {
    background: rgba(37, 51, 32, 0.1);
    color: var(--aa-forest);
}

.pd-stat-icon.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.aa-theme .pd-stat-icon.pending {
    background: rgba(156, 175, 136, 0.2);
    color: var(--aa-sage);
}

.pd-stat-icon.declined {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.aa-theme .pd-stat-icon.declined {
    background: rgba(180, 100, 100, 0.15);
    color: #a86565;
}

.pd-stat-icon.total {
    background: rgba(233, 30, 99, 0.15);
    color: #ff6090;
}

.aa-theme .pd-stat-icon.total {
    background: rgba(156, 175, 136, 0.2);
    color: var(--aa-forest);
}

.pd-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.aa-theme .pd-stat-value {
    color: var(--aa-charcoal);
}

.pd-stat-label {
    font-size: 12px;
    color: var(--cream-muted);
    margin-top: 2px;
}

.aa-theme .pd-stat-label {
    color: var(--aa-charcoal);
    opacity: 0.6;
}

/* Widgets Grid - A&A Theme */
.pd-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.pd-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 16px;
}

.aa-theme .pd-widget {
    background: var(--aa-white);
    border-color: rgba(37, 51, 32, 0.1);
    box-shadow: 0 2px 8px rgba(37, 51, 32, 0.05);
}

.pd-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pd-widget-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
}

.aa-theme .pd-widget-title {
    color: var(--aa-charcoal);
}

.pd-widget-subtitle {
    font-size: 11px;
    color: var(--cream-muted);
}

.aa-theme .pd-widget-subtitle {
    color: var(--aa-charcoal);
    opacity: 0.5;
}

.pd-widget-percentage {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.aa-theme .pd-widget-percentage {
    color: var(--aa-forest);
}

/* Progress Widget - A&A Theme */
.pd-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.aa-theme .pd-progress-bar {
    background: rgba(37, 51, 32, 0.1);
}

.pd-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.aa-theme .pd-progress-fill {
    background: linear-gradient(90deg, var(--aa-forest), var(--aa-sage));
}

.pd-progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--cream-muted);
}

.aa-theme .pd-progress-stats {
    color: var(--aa-charcoal);
    opacity: 0.6;
}

.pd-progress-stats strong {
    color: var(--cream);
}

.aa-theme .pd-progress-stats strong {
    color: var(--aa-charcoal);
    opacity: 1;
}

/* Seating Widget - A&A Theme */
.pd-seating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.pd-table-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid transparent;
}

.aa-theme .pd-table-item {
    background: var(--aa-beige);
}

.pd-table-item.assigned {
    border-color: rgba(0, 156, 111, 0.3);
    background: rgba(0, 156, 111, 0.1);
}

.aa-theme .pd-table-item.assigned {
    border-color: rgba(37, 51, 32, 0.3);
    background: rgba(37, 51, 32, 0.1);
}

.pd-table-item.partial {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.1);
}

.aa-theme .pd-table-item.partial {
    border-color: rgba(156, 175, 136, 0.5);
    background: rgba(156, 175, 136, 0.15);
}

.pd-table-item.empty {
    border-color: var(--border-dark);
}

.aa-theme .pd-table-item.empty {
    border-color: rgba(37, 51, 32, 0.1);
}

.pd-table-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--cream);
}

.aa-theme .pd-table-number {
    color: var(--aa-charcoal);
}

.pd-table-count {
    font-size: 11px;
    color: var(--cream-muted);
    margin-top: 2px;
}

.aa-theme .pd-table-count {
    color: var(--aa-charcoal);
    opacity: 0.5;
}

.pd-seating-summary {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 11px;
    color: var(--cream-muted);
}

.aa-theme .pd-seating-summary {
    color: var(--aa-charcoal);
    opacity: 0.6;
}

.pd-seating-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-seating-stat .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pd-seating-stat .dot.assigned { background: var(--accent); }
.pd-seating-stat .dot.partial { background: #ffc107; }
.pd-seating-stat .dot.empty { background: rgba(255, 255, 255, 0.2); }

.aa-theme .pd-seating-stat .dot.assigned { background: var(--aa-forest); }
.aa-theme .pd-seating-stat .dot.partial { background: var(--aa-sage); }
.aa-theme .pd-seating-stat .dot.empty { background: rgba(37, 51, 32, 0.2); }

/* Feed Widget - A&A Theme */
.pd-widget-feed {
    grid-row: span 2;
}

.pd-feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-feed-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    animation: feedSlideIn 0.3s ease;
}

.aa-theme .pd-feed-item {
    background: var(--aa-beige);
}

@keyframes feedSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pd-feed-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.pd-feed-dot.success { background: var(--accent); }
.pd-feed-dot.info { background: #2196f3; }
.pd-feed-dot.warning { background: #ffc107; }

.aa-theme .pd-feed-dot.success { background: var(--aa-forest); }
.aa-theme .pd-feed-dot.info { background: var(--aa-sage); }
.aa-theme .pd-feed-dot.warning { background: #d4a574; }

.pd-feed-text {
    font-size: 12px;
    color: var(--cream);
    line-height: 1.4;
}

.aa-theme .pd-feed-text {
    color: var(--aa-charcoal);
}

.pd-feed-time {
    font-size: 10px;
    color: var(--cream-muted);
    margin-top: 2px;
}

.aa-theme .pd-feed-time {
    color: var(--aa-charcoal);
    opacity: 0.5;
}

/* Dietary Widget - A&A Theme */
.pd-dietary-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-dietary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.aa-theme .pd-dietary-item {
    background: var(--aa-beige);
}

.pd-dietary-type {
    font-size: 12px;
    color: var(--cream-dim);
}

.aa-theme .pd-dietary-type {
    color: var(--aa-charcoal);
}

.pd-dietary-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--cream);
    background: rgba(233, 30, 99, 0.15);
    padding: 2px 10px;
    border-radius: 10px;
}

.aa-theme .pd-dietary-count {
    background: rgba(37, 51, 32, 0.1);
    color: var(--aa-forest);
}

/* ============================================
   PD ATLAS & AISLE INFO SECTION
   ============================================ */
.pd-aa-info-section {
    padding: 60px 0 0;
    position: relative;
    z-index: 10;
}

.pd-aa-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pd-aa-info-card {
    background: rgba(35, 33, 35, 1);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.pd-aa-info-card:hover {
    background: rgba(45, 43, 45, 1);
    transform: translateY(-4px);
}

.pd-aa-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pd-aa-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.pd-aa-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.pd-aa-info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .pd-aa-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .pd-aa-info-section {
        padding: 40px 0 0;
    }
    
    .pd-aa-info-card {
        padding: 24px;
    }
}

/* ============================================
   PD PROBLEM SECTION
   ============================================ */
.pd-problem-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.pd-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pd-problem-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.pd-problem-card:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: rgba(241, 237, 228, 0.15);
}

.pd-problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pd-problem-icon svg {
    width: 24px;
    height: 24px;
    color: #f44336;
}

.pd-problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.pd-problem-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 20px;
}

.pd-problem-result {
    padding-top: 16px;
    border-top: 1px solid var(--border-dark);
    font-size: 13px;
}

.pd-problem-result .result-label {
    color: var(--cream-muted);
    margin-right: 8px;
}

.pd-problem-result .result-value {
    color: #f44336;
    font-weight: 500;
}

/* ============================================
   PD STAKES SECTION
   ============================================ */
.pd-stakes-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.pd-stakes-section .section-title {
    color: var(--black);
}

.pd-stakes-section .highlight-dark {
    color: var(--accent-dark);
}

.pd-stakes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pd-stake-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
}

.pd-stake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(23, 22, 23, 0.1);
}

.pd-stake-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.pd-stake-unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    text-transform: lowercase;
}

.pd-stake-card p {
    font-size: 14px;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
}

.pd-stakes-callout {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 32px 40px;
    background: rgba(0, 156, 111, 0.08);
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 12px;
}

.pd-stakes-callout p {
    font-size: 18px;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   PD AI SECTION (NEW)
   ============================================ */
.pd-ai-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.pd-ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(0, 156, 111, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pd-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.pd-ai-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.pd-ai-card:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: rgba(241, 237, 228, 0.15);
}

.pd-ai-card.featured {
    grid-column: span 2;
    background: rgba(0, 156, 111, 0.08);
    border-color: rgba(0, 156, 111, 0.25);
}

.pd-ai-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pd-ai-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.pd-ai-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.pd-ai-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
}

.pd-ai-callout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    padding: 28px 32px;
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.pd-ai-callout-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-ai-callout-icon svg {
    width: 24px;
    height: 24px;
    color: #ffc107;
}

.pd-ai-callout-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin: 0;
}

/* ============================================
   PD SOLUTION SECTION
   ============================================ */
.pd-solution-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.pd-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pd-solution-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.pd-solution-card:hover {
    background: rgba(241, 237, 228, 0.05);
}

.pd-solution-card.featured {
    grid-column: span 3;
    background: rgba(0, 156, 111, 0.08);
    border-color: rgba(0, 156, 111, 0.25);
}

.pd-solution-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pd-solution-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.pd-solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.pd-solution-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-dim);
}

/* ============================================
   PD PROTOTYPES SECTION (NEW)
   ============================================ */
.pd-prototypes-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.pd-prototypes-section .section-title {
    color: var(--black);
}

.pd-prototypes-section .section-desc.dark {
    color: var(--black);
    opacity: 0.7;
}

.pd-prototypes-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pd-prototypes-intro {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 16px;
    margin-bottom: 40px;
}

.pd-prototypes-intro-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 156, 111, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-prototypes-intro-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.pd-prototypes-intro-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.pd-prototypes-intro-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.8;
    margin: 0;
}

.pd-prototypes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.pd-prototypes-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.pd-prototypes-column:last-child h4 {
    border-bottom-color: #dc3545;
}

.pd-prototypes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pd-prototypes-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    margin-bottom: -1px;
}

.pd-prototypes-list li:first-child {
    border-radius: 10px 10px 0 0;
}

.pd-prototypes-list li:last-child {
    border-radius: 0 0 10px 10px;
    margin-bottom: 0;
}

.pd-prototypes-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pd-prototypes-list.included li svg {
    color: var(--accent);
}

.pd-prototypes-list.excluded li svg {
    color: #dc3545;
}

.pd-prototypes-cta {
    text-align: center;
    padding: 32px;
    background: rgba(0, 156, 111, 0.08);
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 16px;
}

.pd-prototypes-cta p {
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--black);
    color: var(--cream);
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-base);
}

.btn-dark:hover {
    background: var(--black-light);
    transform: translateY(-2px);
}

.btn-dark svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   PD DELIVERABLES SECTION
   ============================================ */
.pd-deliverables-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.pd-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pd-deliverable-card {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 28px;
    transition: var(--transition-base);
}

.pd-deliverable-card:hover {
    background: rgba(241, 237, 228, 0.05);
    transform: translateY(-4px);
}

.pd-deliverable-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pd-deliverable-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.pd-deliverable-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.pd-deliverable-card p {
    font-size: 14px;
    color: var(--cream-dim);
    line-height: 1.6;
}

/* ============================================
   PD PROCESS SECTION
   ============================================ */
.pd-process-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.pd-process-section .section-title {
    color: var(--cream);
}

.pd-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pd-process-step {
    background: rgba(241, 237, 228, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition-base);
}

.pd-process-step:hover {
    transform: translateY(-4px);
    background: rgba(241, 237, 228, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pd-process-step.highlight {
    background: rgba(0, 156, 111, 0.1);
    border-color: rgba(0, 156, 111, 0.3);
}

.pd-process-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.pd-process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.pd-process-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 16px;
}

.pd-process-duration {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 156, 111, 0.15);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
}

/* ============================================
   PD PROOF SECTION
   ============================================ */
.pd-proof-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.pd-proof-section .section-pill {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.08) 0%, rgba(0, 156, 111, 0.02) 100%);
    border-color: rgba(0, 156, 111, 0.2);
}

.pd-proof-section .section-title {
    color: var(--black);
}

.pd-proof-section .section-desc {
    color: var(--black);
    opacity: 0.7;
}

.pd-proof-section .project-card {
    background: var(--white);
    border-color: rgba(23, 22, 23, 0.08);
}

.pd-proof-section .project-card:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 156, 111, 0.12);
}

.pd-proof-section .project-client {
    color: var(--accent);
}

.pd-proof-section .project-name {
    color: var(--black);
}

.pd-proof-section .project-desc {
    color: var(--black);
    opacity: 0.7;
}

.pd-proof-section .project-icon {
    background: rgba(0, 156, 111, 0.1);
}

.pd-proof-section .project-tag {
    background: rgba(23, 22, 23, 0.06);
    color: var(--black);
}

.pd-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ============================================
   PD PERSPECTIVES SECTION
   ============================================ */
.pd-perspectives-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.pd-perspectives-section .section-pill {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.12) 0%, rgba(0, 156, 111, 0.04) 100%);
    border-color: rgba(0, 156, 111, 0.25);
    color: var(--accent);
}

.pd-perspectives-section .section-title {
    color: var(--cream);
}

.pd-perspectives-section .section-desc {
    color: var(--cream-dim);
}

/* ============================================
   PD CTA SECTION
   ============================================ */
.pd-cta-section {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.pd-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.pd-cta-content {
    max-width: 480px;
}

.pd-cta-content .section-pill {
    display: inline-flex;
}

.pd-cta-content .section-title {
    font-size: clamp(28px, 4vw, 40px);
    text-align: left;
}

.pd-cta-content .section-desc {
    text-align: left;
    margin-bottom: 32px;
}

/* CTA Buttons - WhatsApp and Email */
.pd-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pd-cta-buttons .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.pd-cta-buttons .btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.pd-cta-buttons .btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.pd-cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.pd-cta-buttons .btn-secondary:hover {
    background: rgba(241, 237, 228, 0.05);
    border-color: var(--cream-muted);
    transform: translateY(-2px);
}

.pd-cta-buttons .btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.pd-cta-form-wrapper {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px;
}

.pd-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pd-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pd-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
}

.pd-form-group input,
.pd-form-group select,
.pd-form-group textarea {
    background: rgba(241, 237, 228, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--cream);
    transition: var(--transition-fast);
}

.pd-form-group input::placeholder,
.pd-form-group textarea::placeholder {
    color: var(--cream-muted);
}

.pd-form-group input:focus,
.pd-form-group select:focus,
.pd-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 156, 111, 0.05);
}

.pd-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F1EDE4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.pd-form-group select option {
    background: var(--black);
    color: var(--cream);
}

.pd-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.pd-contact-form .btn-full {
    width: 100%;
    padding: 16px 32px;
    margin-top: 8px;
}

/* Success Message */
.pd-success-message {
    text-align: center;
    padding: 60px 40px;
}

.pd-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pd-success-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.pd-success-message h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--cream);
}

.pd-success-message p {
    color: var(--cream-dim);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   PD RESPONSIVE STYLES
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .pd-problem-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-stakes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .pd-ai-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-ai-card.featured {
        grid-column: span 1;
    }
    
    .pd-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-solution-card.featured {
        grid-column: span 1;
    }
    
    .pd-prototypes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pd-deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pd-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pd-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pd-cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .pd-cta-buttons {
        justify-content: center;
    }
}

/* Mobile Dashboard Header - Hidden on desktop */
.pd-mobile-dashboard-header {
    display: none;
}

/* Tablet Dashboard Redesign - 900px and below */
@media (max-width: 900px) {
    .page-pd .pd-hero {
        padding: 140px 0 80px;
    }
    
    .pd-dashboard-container {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .pd-dashboard-frame,
    .pd-dashboard-frame.aa-theme {
        transform: none !important;
        margin-bottom: 0 !important;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    
    .pd-window-chrome {
        display: none !important;
    }
    
    .pd-sidebar {
        display: none !important;
    }
    
    .pd-dashboard-layout {
        display: block;
        height: auto;
    }
    
    /* Mobile Dashboard Header - Visible */
    .pd-mobile-dashboard-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        margin-bottom: 20px;
        background: var(--aa-forest);
        border-radius: 16px;
    }
    
    .pd-mobile-header-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .pd-mobile-logo {
        height: 28px;
        width: auto;
    }
    
    .pd-mobile-header-pill {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.15);
        color: var(--aa-white);
        border-radius: 100px;
    }
    
    .pd-dashboard-main,
    .aa-theme .pd-dashboard-main {
        display: block;
        background: transparent;
    }
    
    .pd-dashboard-header {
        display: none;
    }
    
    .pd-dashboard-content {
        padding: 0;
        gap: 20px;
    }
    
    .pd-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .pd-stat-card {
        background: var(--black-light);
        border: 1px solid var(--border-dark);
        padding: 20px;
        border-radius: 16px;
        box-shadow: none;
    }
    
    /* A&A Theme Mobile - Use A&A branding colors */
    .aa-theme .pd-stat-card {
        background: var(--aa-white);
        border: 1px solid rgba(37, 51, 32, 0.1);
    }
    
    .aa-theme .pd-stat-value {
        color: var(--aa-forest);
    }
    
    .aa-theme .pd-stat-label {
        color: var(--aa-charcoal);
        opacity: 0.7;
    }
    
    .pd-stat-value {
        font-size: 24px;
    }
    
    .pd-widgets-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .pd-widget {
        background: var(--black-light);
        border: 1px solid var(--border-dark);
        border-radius: 16px;
        padding: 20px;
        box-shadow: none;
    }
    
    /* A&A Theme Mobile Widgets */
    .aa-theme .pd-widget {
        background: var(--aa-white);
        border: 1px solid rgba(37, 51, 32, 0.1);
    }
    
    .aa-theme .pd-widget-title {
        color: var(--aa-charcoal);
    }
    
    .aa-theme .pd-widget-percentage {
        color: var(--aa-forest);
    }
    
    .aa-theme .pd-feed-text {
        color: var(--aa-charcoal);
    }
    
    .aa-theme .pd-dietary-type,
    .aa-theme .pd-table-number {
        color: var(--aa-charcoal);
    }
    
    .aa-theme .pd-widget-subtitle,
    .aa-theme .pd-feed-time,
    .aa-theme .pd-table-count,
    .aa-theme .pd-progress-stats,
    .aa-theme .pd-seating-summary {
        color: var(--aa-charcoal);
        opacity: 0.6;
    }
    
    .aa-theme .pd-dietary-count {
        background: rgba(37, 51, 32, 0.1);
        color: var(--aa-forest);
    }
    
    .aa-theme .pd-feed-item,
    .aa-theme .pd-dietary-item {
        background: var(--aa-beige);
    }
    
    .aa-theme .pd-table-item {
        background: var(--aa-beige);
    }
    
    .aa-theme .pd-table-item.assigned {
        background: var(--aa-sage);
    }
    
    .aa-theme .pd-table-item.partial {
        background: rgba(156, 175, 136, 0.4);
    }
    
    .aa-theme .pd-table-item.empty {
        background: var(--aa-beige);
        border: 1px dashed rgba(37, 51, 32, 0.2);
    }
    
    .aa-theme .pd-progress-bar {
        background: rgba(37, 51, 32, 0.1);
    }
    
    .aa-theme .pd-progress-fill {
        background: linear-gradient(90deg, var(--aa-sage), var(--aa-forest));
    }
    
    .pd-widget-feed {
        grid-row: auto;
    }
    
    .pd-prototypes-intro {
        flex-direction: column;
        text-align: center;
    }
    
    /* PD2: Center icon in Validate Fast section */
    .pd-prototypes-intro-icon {
        margin: 0 auto;
    }
    
    /* PD3: Center Ready to Build pill on tablets */
    .ops-cta-section .section-pill {
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .pd-ai-callout {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* PD4: Fix horizontal overflow on Product Development page */
    .page-pd {
        overflow-x: hidden;
    }
    
    .pd-stakes-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-stake-card {
        padding: 32px 24px;
    }
    
    .pd-stake-number {
        font-size: 44px;
    }
    
    .pd-deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-process-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-form-row {
        grid-template-columns: 1fr;
    }
    
    .pd-cta-form-wrapper {
        padding: 28px;
    }
    
    .page-pd .pd-hero {
        padding: 120px 0 60px;
    }
    
    .pd-dashboard-container {
        margin-top: 32px;
        padding: 0 16px;
    }
    
    .pd-stat-card {
        padding: 16px;
    }
    
    .pd-stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .pd-stat-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .pd-stat-value {
        font-size: 22px;
    }
    
    .pd-stat-label {
        font-size: 11px;
    }
    
    .pd-widget {
        padding: 16px;
    }
    
    .pd-seating-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .pd-table-item {
        padding: 10px 8px;
    }
    
    .pd-table-number {
        font-size: 14px;
    }
    
    .pd-table-count {
        font-size: 10px;
    }
    
    .pd-cta-buttons {
        flex-direction: column;
    }
    
    .pd-cta-buttons .btn-whatsapp,
    .pd-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .pd-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pd-stat-card {
        padding: 14px;
        gap: 10px;
    }
    
    .pd-stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .pd-stat-value {
        font-size: 20px;
    }
    
    .pd-seating-summary {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Ambient glow for tablet/mobile hero */
@media (max-width: 900px) {
    .page-pd .pd-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
            ellipse 60% 40% at 50% 20%,
            rgba(0, 156, 111, 0.06) 0%,
            rgba(0, 156, 111, 0.02) 40%,
            transparent 70%
        );
        pointer-events: none;
        z-index: 1;
    }
    
    .page-pd .pd-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(ellipse 50% 50% at 0% 0%, rgba(241, 237, 228, 0.03) 0%, transparent 50%),
            radial-gradient(ellipse 50% 50% at 100% 100%, rgba(241, 237, 228, 0.02) 0%, transparent 50%);
        pointer-events: none;
        z-index: 1;
    }
}
/* ============================================
   TOOLS & INTEGRATIONS PAGE STYLES (V2)
   Centered hero + module animation + interactive prototypes
   Add this to the end of styles.css
   ============================================ */

/* ============================================
   TOOLS HERO - CENTERED
   ============================================ */
.page-tools .tools-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

.page-tools .tools-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 30%, rgba(0, 156, 111, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-tools .tools-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-tools .tools-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.tools-hero-description {
    font-size: 1.125rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tools-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   HERO ANIMATION - MODULE INSERTION
   ============================================ */
.tools-hero-animation {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.system-diagram {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 250px;
    margin: 0 auto;
}

.system-block {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.system-block .block-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
}

.system-block .block-icon svg {
    width: 24px;
    height: 24px;
}

.system-block span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cream-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.block-crm { left: 5%; top: 20px; }
.block-erp { left: 50%; top: 20px; transform: translateX(-50%); }
.block-store { right: 5%; top: 20px; }

/* Connection Lines */
.connection-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.conn-line {
    stroke: var(--border-dark);
    stroke-width: 2;
    stroke-dasharray: 8 4;
}

.conn-line.existing {
    animation: dashFlow 20s linear infinite;
}

.conn-line.new-conn {
    stroke: var(--accent);
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 1s ease-out 2s forwards;
}

@keyframes dashFlow {
    to { stroke-dashoffset: -100; }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Data Pulse on new connection */
.data-pulse {
    fill: var(--accent);
    opacity: 0;
    animation: pulseTravel 2s ease-in-out 3s infinite;
}

@keyframes pulseTravel {
    0% { opacity: 0; cy: 170; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; cy: 100; }
}

/* New Module */
.new-module {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    animation: moduleSlideIn 1s ease-out 1s forwards;
}

@keyframes moduleSlideIn {
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.module-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 156, 111, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.module-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--accent);
    border-radius: 12px;
    z-index: 1;
}

.module-content .block-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.module-content .block-icon svg {
    width: 24px;
    height: 24px;
}

.module-content span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.animation-caption {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--cream-muted);
}

/* ============================================
   TOOLS REALITY SECTION
   ============================================ */
.tools-reality-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

.tools-reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.tools-reality-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tools-reality-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-4px);
}

.tools-reality-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 12px;
    margin-bottom: 20px;
}

.tools-reality-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.tools-reality-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}

.tools-reality-card p {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

.tools-reality-callout {
    background: linear-gradient(135deg, rgba(0, 156, 111, 0.1) 0%, rgba(0, 156, 111, 0.05) 100%);
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
}

.tools-reality-callout p {
    font-size: 1.125rem;
    color: var(--cream);
    line-height: 1.7;
    margin: 0;
}

.tools-reality-callout strong {
    color: var(--accent);
}

/* ============================================
   TOOLS SOLUTION SECTION
   ============================================ */
.tools-solution-section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.tools-solution-section.light-theme {
    background: var(--cream);
}

.tools-solution-section.light-theme .section-title {
    color: var(--black);
}

.tools-solution-section.light-theme .section-desc {
    color: var(--gray);
}

.tools-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tools-category-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tools-category-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.tools-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 12px;
    margin-bottom: 20px;
}

.tools-category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.tools-category-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.tools-category-card > p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tools-category-examples {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tools-category-examples li {
    font-size: 0.875rem;
    color: var(--gray-light);
    padding-left: 20px;
    position: relative;
}

.tools-category-examples li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================
   INTERACTIVE PROTOTYPES SECTION
   ============================================ */
.tools-prototypes-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

/* Prototype Tabs */
.prototype-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.prototype-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 100px;
    color: var(--cream-dim);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prototype-tab svg {
    width: 18px;
    height: 18px;
}

.prototype-tab:hover {
    border-color: var(--accent-dim);
    color: var(--cream);
}

.prototype-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Prototype Panels */
.prototype-panels {
    position: relative;
}

.prototype-panel {
    display: none;
}

.prototype-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.prototype-context {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}

.prototype-context h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}

.prototype-context p {
    font-size: 1rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* Prototype Demo Container */
.prototype-demo {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
}

/* ============================================
   IMPORT TOOL PROTOTYPE
   ============================================ */
.import-interface {
    min-height: 500px;
}

.import-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--black);
    border-bottom: 1px solid var(--border-dark);
}

.import-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.import-title h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0;
}

.import-badge {
    padding: 4px 10px;
    background: var(--accent-dim);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
}

.import-stats {
    display: flex;
    gap: 24px;
}

.import-stat {
    text-align: center;
}

.import-stat .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.import-stat .stat-label {
    font-size: 0.75rem;
    color: var(--cream-muted);
    text-transform: uppercase;
}

/* Import Steps */
.import-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: var(--black-lighter);
    border-bottom: 1px solid var(--border-dark);
}

.import-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: transparent;
    transition: all 0.3s ease;
}

.import-step .step-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-dark);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cream-muted);
}

.import-step span {
    font-size: 0.875rem;
    color: var(--cream-muted);
}

.import-step.active {
    background: var(--accent-dim);
}

.import-step.active .step-number {
    background: var(--accent);
    color: var(--white);
}

.import-step.active span {
    color: var(--cream);
}

.import-step.completed .step-number {
    background: var(--accent);
    color: var(--white);
}

/* Import Content */
.import-content {
    padding: 32px;
    min-height: 350px;
}

.import-stage {
    display: none;
}

.import-stage.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--border-dark);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: var(--accent);
    background: rgba(0, 156, 111, 0.05);
}

.upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--cream-muted);
}

.upload-icon svg {
    width: 48px;
    height: 48px;
}

.upload-zone p {
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.upload-formats {
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.upload-recent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.recent-label {
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.recent-file {
    padding: 8px 16px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--cream-dim);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recent-file:hover {
    border-color: var(--accent);
    color: var(--cream);
}

/* Field Mapping */
.mapping-header {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 100px;
    gap: 16px;
    padding: 12px 16px;
    background: var(--black);
    border-radius: 8px;
    margin-bottom: 12px;
}

.mapping-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
}

.mapping-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-muted);
}

.mapping-arrow svg {
    width: 16px;
    height: 16px;
}

.mapping-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.mapping-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 100px;
    gap: 16px;
    padding: 12px 16px;
    background: var(--black-lighter);
    border-radius: 8px;
    align-items: center;
}

.mapping-source-col {
    font-size: 0.875rem;
    color: var(--cream);
    font-family: monospace;
}

.mapping-row .mapping-arrow {
    color: var(--accent);
}

.mapping-target-select {
    padding: 8px 12px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    color: var(--cream);
    font-size: 0.875rem;
}

.mapping-confidence-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.mapping-confidence-badge.high {
    background: rgba(0, 156, 111, 0.2);
    color: var(--accent);
}

.mapping-confidence-badge.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.mapping-confidence-badge.low {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.mapping-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Review Stage */
.review-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.review-card {
    padding: 20px;
    background: var(--black);
    border-radius: 12px;
    text-align: center;
}

.review-card .review-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 50%;
}

.review-card .review-icon svg {
    width: 20px;
    height: 20px;
}

.review-card.good .review-icon {
    background: rgba(0, 156, 111, 0.2);
    color: var(--accent);
}

.review-card.warning .review-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.review-card.error .review-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.review-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.review-card .review-label {
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.review-table {
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.review-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 100px;
    gap: 16px;
    padding: 12px 16px;
    background: var(--black-lighter);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
}

.review-table-body {
    max-height: 200px;
    overflow-y: auto;
}

.review-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 100px;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.875rem;
    color: var(--cream);
}

.review-table-row:last-child {
    border-bottom: none;
}

.review-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.review-status.ready {
    background: rgba(0, 156, 111, 0.2);
    color: var(--accent);
}

.review-status.review {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.review-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.review-actions {
    text-align: center;
}

/* Import Progress */
.import-progress {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.progress-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--border-dark);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.progress-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
}

.progress-text .progress-label {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

.progress-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.progress-item-label {
    font-size: 0.875rem;
    color: var(--cream-muted);
}

.progress-item-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
}

.import-log {
    background: var(--black);
    border-radius: 8px;
    padding: 16px;
    max-height: 120px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.8125rem;
}

.log-entry {
    padding: 4px 0;
    color: var(--cream-dim);
}

.log-entry.success {
    color: var(--accent);
}

.log-entry.warning {
    color: #f59e0b;
}

.import-complete {
    text-align: center;
    padding: 40px;
}

.import-complete .complete-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.import-complete .complete-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.import-complete h4 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.import-complete p {
    color: var(--cream-dim);
    margin-bottom: 24px;
}

/* ============================================
   STOCK SYNC PROTOTYPE
   ============================================ */
.sync-interface {
    min-height: 500px;
}

.sync-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--black);
    border-bottom: 1px solid var(--border-dark);
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sync-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
}

.sync-status-dot.live {
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.sync-status span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream);
}

.sync-meta {
    display: flex;
    gap: 24px;
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.sync-meta strong {
    color: var(--cream);
}

/* Sync Split View */
.sync-split {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 0;
    padding: 24px;
}

.sync-panel {
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
}

.sync-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--black-lighter);
    border-bottom: 1px solid var(--border-dark);
}

.sync-panel-header .panel-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 8px;
    color: var(--accent);
}

.sync-panel-header .panel-icon svg {
    width: 18px;
    height: 18px;
}

.sync-panel-header h4 {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0;
}

.sync-panel-header .panel-badge {
    padding: 4px 10px;
    background: var(--border-dark);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
}

.sync-panel-content {
    padding: 16px;
    max-height: 250px;
    overflow-y: auto;
}

.stock-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--black-lighter);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stock-item.syncing {
    background: rgba(0, 156, 111, 0.1);
    border: 1px solid var(--accent);
}

.stock-item-info {
    flex: 1;
}

.stock-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream);
    display: block;
}

.stock-item-sku {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

.stock-item-qty {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream);
    min-width: 50px;
    text-align: right;
}

.stock-item-qty.changed {
    color: var(--accent);
    animation: flashGreen 0.5s ease;
}

@keyframes flashGreen {
    0%, 100% { color: var(--cream); }
    50% { color: var(--accent); }
}

/* Sync Arrows */
.sync-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.sync-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow-line {
    width: 30px;
    height: 2px;
    background: var(--border-dark);
    position: relative;
    overflow: hidden;
}

.arrow-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 100%;
    background: var(--accent);
    animation: arrowFlow 1.5s linear infinite;
}

.sync-arrow.outgoing .arrow-line::after {
    animation: arrowFlowRight 1.5s linear infinite;
}

.sync-arrow.incoming .arrow-line::after {
    animation: arrowFlowLeft 1.5s linear infinite;
}

@keyframes arrowFlowRight {
    0% { left: -10px; }
    100% { left: 100%; }
}

@keyframes arrowFlowLeft {
    0% { right: -10px; left: auto; }
    100% { right: 100%; left: auto; }
}

.arrow-head {
    color: var(--accent);
}

.arrow-head svg {
    width: 16px;
    height: 16px;
}

.sync-badge-center {
    text-align: center;
    padding: 12px 16px;
    background: var(--accent-dim);
    border-radius: 12px;
}

.sync-badge-center span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.sync-badge-center small {
    font-size: 0.6875rem;
    color: var(--cream-muted);
    text-transform: uppercase;
}

/* Sync Log */
.sync-log {
    margin: 0 24px;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
}

.sync-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--black-lighter);
    border-bottom: 1px solid var(--border-dark);
}

.sync-log-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0;
}

.sync-log-body {
    padding: 12px 16px;
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.8125rem;
}

.sync-log-entry {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-dark);
}

.sync-log-entry:last-child {
    border-bottom: none;
}

.sync-log-time {
    color: var(--cream-muted);
    flex-shrink: 0;
}

.sync-log-message {
    color: var(--cream);
    flex: 1;
}

.sync-log-entry.success .sync-log-message {
    color: var(--accent);
}

.sync-log-entry.warning .sync-log-message {
    color: #f59e0b;
}

/* Sync Controls */
.sync-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
}

/* ============================================
   CHECKOUT FLOW PROTOTYPE
   ============================================ */
.checkout-interface {
    min-height: 500px;
}

.checkout-header {
    padding: 20px 24px;
    background: var(--black);
    border-bottom: 1px solid var(--border-dark);
}

.checkout-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}

.checkout-step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-dark);
    transition: all 0.3s ease;
}

.checkout-step-dot.active {
    background: var(--accent);
}

.checkout-step-dot.completed {
    background: var(--accent);
}

.checkout-step-line {
    width: 60px;
    height: 2px;
    background: var(--border-dark);
}

.checkout-steps-labels {
    display: flex;
    justify-content: center;
    gap: 48px;
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.checkout-steps-labels span.active {
    color: var(--cream);
    font-weight: 500;
}

/* Checkout Body */
.checkout-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
}

.checkout-main {
    padding: 32px;
    border-right: 1px solid var(--border-dark);
}

.checkout-stage {
    display: none;
}

.checkout-stage.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.checkout-stage h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 24px;
}

/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-form .form-row {
    display: grid;
    gap: 16px;
}

.checkout-form .form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-form .form-group.full {
    grid-column: 1 / -1;
}

.checkout-form label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cream-muted);
}

.checkout-form input,
.checkout-form select {
    padding: 12px 14px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--cream);
    font-size: 0.9375rem;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.checkout-form select {
    cursor: pointer;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--black);
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: var(--accent-dim);
}

.delivery-option.selected {
    border-color: var(--accent);
    background: rgba(0, 156, 111, 0.05);
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.delivery-option.selected .delivery-radio {
    border-color: var(--accent);
}

.delivery-option.selected .delivery-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.delivery-details {
    flex: 1;
}

.delivery-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--cream);
    display: block;
}

.delivery-time {
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.delivery-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--black);
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: var(--accent-dim);
}

.payment-option.selected {
    border-color: var(--accent);
    background: rgba(0, 156, 111, 0.05);
}

.payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-option.selected .payment-radio {
    border-color: var(--accent);
}

.payment-option.selected .payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.payment-icon {
    width: 40px;
    height: 28px;
    background: var(--black-lighter);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cream-muted);
}

.payment-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--cream);
}

/* Order Review */
.order-review {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.order-review .review-section {
    padding: 16px;
    background: var(--black);
    border-radius: 12px;
}

.order-review .review-section h5 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.order-review .review-section p {
    font-size: 0.9375rem;
    color: var(--cream);
    line-height: 1.6;
    margin: 0;
}

/* Checkout Navigation */
.checkout-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.checkout-nav .btn:only-child {
    margin-left: auto;
}

/* Order Complete */
.order-complete {
    text-align: center;
    padding: 60px 20px;
}

.order-complete .complete-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.order-complete .complete-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.order-complete h4 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.order-complete p {
    color: var(--cream-dim);
    margin-bottom: 24px;
}

/* Checkout Sidebar */
.checkout-sidebar {
    padding: 24px;
    background: var(--black);
}

.order-summary h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 20px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.summary-item .item-image {
    width: 48px;
    height: 48px;
    background: var(--black-lighter);
    border-radius: 8px;
}

.summary-item .item-details {
    flex: 1;
}

.summary-item .item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream);
    display: block;
}

.summary-item .item-qty {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

.summary-item .item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
}

.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--cream-dim);
}

.summary-row.total {
    padding-top: 12px;
    border-top: 1px solid var(--border-dark);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
}

.summary-notice {
    margin-top: 20px;
    padding: 12px;
    background: var(--accent-dim);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--cream);
}

.summary-notice:empty {
    display: none;
}

/* ============================================
   TOOLS SHOWCASE MARQUEE
   ============================================ */
.tools-showcase-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black-light);
    overflow: hidden;
}

.tools-showcase-section .section-header {
    margin-bottom: 48px;
}

.tools-showcase-marquee {
    margin-bottom: 24px;
    overflow: hidden;
}

.tools-showcase-marquee:last-child {
    margin-bottom: 0;
}

.tools-marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.tools-marquee-track[data-direction="right"] {
    animation-direction: reverse;
}

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

.tools-marquee-track:hover {
    animation-play-state: paused;
}

.tool-showcase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.tool-showcase-item:hover {
    border-color: var(--accent-dim);
    background: var(--black-lighter);
}

.tool-showcase-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.tool-showcase-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--cream);
}

/* ============================================
   TOOLS PROCESS SECTION
   ============================================ */
.tools-process-section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.tools-process-section.light-theme {
    background: var(--cream);
}

.tools-process-section.light-theme .section-title {
    color: var(--black);
}

.tools-process-section.light-theme .section-desc {
    color: var(--gray);
}

.tools-process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.tools-process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.tools-process-step:last-child {
    border-bottom: none;
}

.tools-process-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.tools-process-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.tools-process-content p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.tools-process-duration {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent-dim);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent-dark);
}

/* ============================================
   TOOLS CTA SECTION
   ============================================ */
.tools-cta-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black-light);
}

.tools-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tools-cta-text .section-title {
    text-align: left;
}

.tools-cta-text .section-desc {
    text-align: left;
}

.tools-cta-text .section-pill {
    margin: 0 0 24px 0;
}

.tools-cta-note {
    font-size: 0.875rem;
    color: var(--cream-muted);
    margin-bottom: 24px;
}

.tools-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tools-cta-form-wrapper {
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
}

.tools-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tools-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tools-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tools-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream);
}

.tools-form-group input,
.tools-form-group select,
.tools-form-group textarea {
    padding: 14px 16px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--cream);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.tools-form-group input::placeholder,
.tools-form-group textarea::placeholder {
    color: var(--cream-muted);
}

.tools-form-group input:focus,
.tools-form-group select:focus,
.tools-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.tools-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f1ede4' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.tools-form-group select option {
    background: var(--black);
    color: var(--cream);
}

.tools-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.tools-contact-form .btn-full {
    width: 100%;
    justify-content: center;
}

.tools-form-success {
    text-align: center;
    padding: 40px 20px;
}

.tools-success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.tools-success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.tools-form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--cream);
}

.tools-form-success p {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.6;
}

/* ============================================
   TOOLS PAGE - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .tools-reality-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-body {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        border-top: 1px solid var(--border-dark);
    }
    
    .checkout-main {
        border-right: none;
    }
    
    .tools-cta-content {
        grid-template-columns: 1fr;
    }
    
    .tools-cta-text .section-title,
    .tools-cta-text .section-desc {
        text-align: center;
    }
    
    .tools-cta-text .section-pill {
        margin: 0 auto 24px;
    }
    
    .tools-cta-note {
        text-align: center;
    }
    
    .tools-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-tools .tools-hero {
        padding: 120px 0 60px;
    }
    
    .page-tools .tools-hero-content h1 {
        font-size: 2rem;
    }
    
    .tools-hero-description {
        font-size: 1rem;
    }
    
    .tools-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .system-diagram {
        transform: scale(0.8);
        transform-origin: center top;
    }
    
    .tools-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .prototype-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .prototype-tab {
        justify-content: center;
    }
    
    .import-header {
        flex-direction: column;
        gap: 16px;
    }
    
    .import-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .import-steps {
        flex-wrap: wrap;
    }
    
    .import-step span {
        display: none;
    }
    
    .mapping-header,
    .mapping-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .mapping-arrow {
        display: none;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
    }
    
    .review-table-header,
    .review-table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .review-table-header span:nth-child(2),
    .review-table-row span:nth-child(2) {
        display: none;
    }
    
    .sync-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sync-arrows {
        flex-direction: row;
        padding: 12px 0;
    }
    
    .sync-arrow {
        transform: rotate(90deg);
    }
    
    .sync-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    .sync-controls {
        flex-wrap: wrap;
    }
    
    .checkout-form .form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .checkout-steps-labels {
        font-size: 0.75rem;
        gap: 24px;
    }
    
    .tools-process-step {
        flex-direction: column;
        gap: 16px;
    }
    
    .tools-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tools-reality-callout {
        padding: 24px;
    }
    
    .tools-category-card,
    .tools-cta-form-wrapper {
        padding: 24px;
    }
    
    .prototype-demo {
        border-radius: 12px;
    }
    
    .import-content,
    .checkout-main,
    .checkout-sidebar {
        padding: 20px;
    }
    
    .tool-showcase-item {
        padding: 12px 16px;
    }
    
    .tool-showcase-item span {
        font-size: 0.8125rem;
    }
}

/* ============================================
   AI ADOPTION PAGE STYLES
   ============================================ */

/* --- AI Hero Section --- */
.ai-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Grunge/noise texture overlay */
.ai-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 4;
    mask-image: radial-gradient(ellipse at center, transparent 20%, black 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black 60%);
}

.ai-hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ai-hero-canvas-container canvas {
    width: 100%;
    height: 100%;
}

/* Subtle glow effect */
.ai-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1000px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 156, 111, 0.12) 0%, 
        rgba(0, 156, 111, 0.06) 25%, 
        rgba(0, 156, 111, 0.02) 45%,
        transparent 65%);
    z-index: 2;
    pointer-events: none;
}

.ai-hero-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 0%, var(--black) 75%);
    pointer-events: none;
}

.ai-hero .container {
    position: relative;
    z-index: 5;
}

.ai-hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 56px;
    background: rgba(23, 22, 23, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(241, 237, 228, 0.08);
    border-radius: 28px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 156, 111, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

/* Green gradient border - brighter at center of each side */
.ai-hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse 60% 1px at 50% 0%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 60% 1px at 50% 100%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 1px 60% at 0% 50%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 1px 60% at 100% 50%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        rgba(241, 237, 228, 0.06);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.ai-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 20px;
}

.ai-hero-description {
    font-size: 1.125rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ai-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- AI Reality Section (with top border for separation) --- */
.ai-reality-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
    border-top: 1px solid var(--border-dark);
}

.ai-reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ai-reality-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ai-reality-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.ai-reality-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ai-reality-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.ai-reality-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.ai-reality-card p {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* --- AI Dangers Section --- */
.ai-dangers-section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.ai-dangers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ai-danger-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.ai-danger-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.ai-danger-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.ai-danger-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.ai-danger-card p {
    font-size: 0.9375rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.7;
}

/* --- AI Difference Section --- */
.ai-difference-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

.ai-difference-content {
    margin-top: 48px;
}

.ai-difference-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ai-stat {
    text-align: center;
    padding: 32px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
}

.ai-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.ai-stat-label {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.5;
}

.ai-difference-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-difference-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ai-difference-point:hover {
    border-color: var(--accent);
}

.ai-difference-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-difference-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.ai-difference-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.ai-difference-text p {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* --- AI Possibilities Section (different shade) --- */
.ai-possibilities-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black-light);
}

.ai-possibilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ai-possibility-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.ai-possibility-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.ai-possibility-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ai-possibility-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.ai-possibility-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.ai-possibility-card p {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* --- AI Tools Section --- */
.ai-tools-section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.ai-tool-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.ai-tool-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 156, 111, 0.1);
}

.ai-tool-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.ai-tool-use {
    font-size: 0.875rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
}

/* --- AI Demo Section --- */
.ai-demo-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

.ai-demo-container {
    margin-top: 48px;
}

.ai-demo-frame {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.ai-demo-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--black-lighter);
    border-bottom: 1px solid var(--border-dark);
}

.ai-demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ai-demo-dot.red { background: #ff5f57; }
.ai-demo-dot.yellow { background: #febc2e; }
.ai-demo-dot.green { background: #28c840; }

.ai-demo-title {
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--cream-muted);
}

.ai-demo-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    min-height: 500px;
}

.ai-demo-main {
    padding: 24px;
    border-right: 1px solid var(--border-dark);
}

.ai-demo-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ai-demo-kpi {
    background: var(--black-lighter);
    border-radius: 10px;
    padding: 16px;
}

.ai-demo-kpi-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.ai-demo-kpi-label {
    font-size: 0.75rem;
    color: var(--cream-muted);
    margin-bottom: 8px;
}

.ai-demo-kpi-trend {
    font-size: 0.6875rem;
    font-weight: 500;
}

.ai-demo-kpi-trend.up { color: var(--accent); }
.ai-demo-kpi-trend.down { color: #ff5f57; }
.ai-demo-kpi-trend.neutral { color: var(--cream-muted); }

.ai-demo-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ai-demo-chart {
    background: var(--black-lighter);
    border-radius: 10px;
    padding: 16px;
}

.ai-demo-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.8125rem;
    color: var(--cream-dim);
}

.ai-demo-chart-range {
    font-size: 0.6875rem;
    color: var(--cream-muted);
}

.ai-demo-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 80px;
    gap: 8px;
}

.ai-demo-bar {
    width: 40px;
    height: var(--height);
    background: var(--cream-subtle);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    transition: background 0.3s ease;
}

.ai-demo-bar.highlight {
    background: var(--accent);
}

.ai-demo-bar span {
    font-size: 0.625rem;
    color: var(--cream-muted);
    font-weight: 500;
}

.ai-demo-bar.highlight span {
    color: var(--white);
}

.ai-demo-chart-line {
    height: 60px;
}

.ai-demo-chart-line svg {
    width: 100%;
    height: 100%;
}

.ai-demo-table {
    background: var(--black-lighter);
    border-radius: 10px;
    overflow: hidden;
}

.ai-demo-table-header,
.ai-demo-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 12px 16px;
    font-size: 0.75rem;
}

.ai-demo-table-header {
    background: rgba(241, 237, 228, 0.05);
    color: var(--cream-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-demo-table-row {
    color: var(--cream-dim);
    border-top: 1px solid var(--border-dark);
}

.ai-demo-table-row .status-good { color: var(--accent); }
.ai-demo-table-row .status-warning { color: #febc2e; }
.ai-demo-table-row .status-alert { color: #ff5f57; }

/* AI Assistant Panel */
.ai-demo-assistant {
    display: flex;
    flex-direction: column;
    background: var(--black);
}

.ai-demo-assistant-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
}

.ai-demo-assistant-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-demo-assistant-icon svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.ai-demo-assistant-hint {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--accent);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 1.5s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.ai-demo-chat {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-demo-chat-welcome {
    text-align: center;
    padding: 24px;
    color: var(--cream-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.ai-demo-message {
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.ai-demo-message.user {
    align-self: flex-end;
    background: var(--accent);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.ai-demo-message.assistant {
    align-self: flex-start;
    background: var(--black-lighter);
    color: var(--cream-dim);
    border-bottom-left-radius: 4px;
}

.ai-demo-message.assistant .ai-response-highlight {
    color: var(--accent);
    font-weight: 600;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--cream-muted);
    border-radius: 50%;
    animation: typingBounce 1s ease infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ai-demo-questions {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-dark);
}

.ai-demo-question {
    padding: 10px 14px;
    background: var(--black-lighter);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--cream-dim);
    font-size: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-demo-question:hover {
    border-color: var(--accent);
    color: var(--cream);
}

/* --- AI Future Section --- */
.ai-future-section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.ai-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ai-timeline-item {
    position: relative;
    padding-top: 24px;
}

.ai-timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dim));
    border-radius: 2px;
}

.ai-timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.ai-timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.ai-timeline-content p {
    font-size: 0.9375rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ai-timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-timeline-tags span {
    font-size: 0.6875rem;
    padding: 4px 10px;
    background: rgba(0, 156, 111, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 500;
}

.ai-future-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 16px;
}

.ai-future-cta p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

/* --- AI CTA Section (Centered) --- */
.ai-cta-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

.ai-cta-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ai-cta-centered .section-title {
    margin-bottom: 16px;
}

.ai-cta-centered .section-desc {
    margin-bottom: 8px;
}

.ai-cta-note {
    font-size: 0.9375rem;
    color: var(--cream-muted);
    margin-bottom: 32px;
}

.ai-cta-buttons-centered {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- AI Page Responsive --- */
@media (max-width: 1024px) {
    /* Remove box styling on tablet - content floats over background */
    .ai-hero-content {
        padding: 32px 24px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .ai-hero-content::before {
        display: none;
    }
    
    .ai-hero-buttons {
        justify-content: center;
    }
    
    .ai-reality-grid,
    .ai-dangers-grid,
    .ai-possibilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-difference-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-demo-layout {
        grid-template-columns: 1fr;
    }
    
    .ai-demo-main {
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
    }
    
    .ai-demo-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-hero {
        padding: 100px 0 60px;
    }
    
    /* Remove box styling on mobile - content floats over background */
    .ai-hero-content {
        padding: 24px 20px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .ai-hero-content::before {
        display: none;
    }
    
    .ai-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ai-reality-grid,
    .ai-dangers-grid,
    .ai-possibilities-grid,
    .ai-timeline {
        grid-template-columns: 1fr;
    }
    
    .ai-difference-stats {
        grid-template-columns: 1fr;
    }
    
    .ai-stat {
        padding: 24px;
    }
    
    .ai-stat-value {
        font-size: 2.5rem;
    }
    
    .ai-difference-point {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-difference-icon {
        margin: 0 auto;
    }
    
    .ai-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-demo-charts {
        grid-template-columns: 1fr;
    }
    
    .ai-demo-kpis {
        grid-template-columns: 1fr 1fr;
    }
    
    .ai-demo-table-header,
    .ai-demo-table-row {
        grid-template-columns: 1.5fr 0.5fr 0.5fr 0.5fr;
        font-size: 0.6875rem;
        padding: 10px 12px;
    }
    
    /* CTA buttons centered on mobile */
    .ai-cta-buttons-centered {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-cta-buttons-centered .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ai-hero-content {
        padding: 20px 16px;
    }
    
    .ai-demo-kpis {
        grid-template-columns: 1fr;
    }
    
    .ai-demo-kpi-value {
        font-size: 1.5rem;
    }
}

/* ============================================
   TECHNICAL CONSULTANCY PAGE STYLES
   ============================================ */

/* --- TC Hero Section --- */
.tc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Grunge/noise texture overlay */
.tc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 4;
    mask-image: radial-gradient(ellipse at center, transparent 20%, black 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black 60%);
}

.tc-hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.tc-hero-canvas-container canvas {
    width: 100%;
    height: 100%;
}

.tc-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1000px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 156, 111, 0.12) 0%, 
        rgba(0, 156, 111, 0.06) 25%, 
        rgba(0, 156, 111, 0.02) 45%,
        transparent 65%);
    z-index: 2;
    pointer-events: none;
}

.tc-hero-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, transparent 0%, var(--black) 75%);
    pointer-events: none;
}

.tc-hero .container {
    position: relative;
    z-index: 5;
}

.tc-hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 56px;
    background: rgba(23, 22, 23, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(241, 237, 228, 0.08);
    border-radius: 28px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 156, 111, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

/* Green gradient border */
.tc-hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse 60% 1px at 50% 0%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 60% 1px at 50% 100%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 1px 60% at 0% 50%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        radial-gradient(ellipse 1px 60% at 100% 50%, rgba(0, 156, 111, 0.7) 0%, transparent 100%),
        rgba(241, 237, 228, 0.06);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.tc-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 20px;
}

.tc-hero-description {
    font-size: 1.125rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tc-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- TC Gap Section --- */
.tc-gap-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
    border-top: 1px solid var(--border-dark);
}

.tc-gap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tc-gap-card {
    padding: 32px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tc-gap-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.tc-gap-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent);
}

.tc-gap-icon svg {
    width: 24px;
    height: 24px;
}

.tc-gap-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.tc-gap-card p {
    font-size: 0.9375rem;
    color: var(--cream-dim);
    line-height: 1.7;
}

/* --- TC Services Section --- */
.tc-services-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--cream);
}

.tc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tc-service-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tc-service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.tc-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--white);
}

.tc-service-icon svg {
    width: 24px;
    height: 24px;
}

.tc-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.tc-service-card p {
    font-size: 0.9375rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tc-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-service-list li {
    font-size: 0.875rem;
    color: var(--black);
    opacity: 0.6;
    padding: 6px 0 6px 20px;
    position: relative;
}

.tc-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* --- TC Process Section --- */
.tc-process-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black-light);
}

.tc-process-timeline {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.tc-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--border-dark));
}

.tc-process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.tc-process-step:last-child {
    margin-bottom: 0;
}

.tc-process-number {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.tc-process-content {
    flex: 1;
    padding-top: 16px;
}

.tc-process-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.tc-process-content p {
    font-size: 1rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 12px;
}

.tc-process-duration {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent-dim);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
}

/* --- TC Portal Section --- */
.tc-portal-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

.tc-portal-header {
    text-align: center;
    margin-bottom: 48px;
}

.tc-portal-cta {
    margin-top: 28px;
}

.tc-portal-container {
    max-width: 1100px;
    margin: 0 auto 64px;
}

.tc-portal-frame {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-dark);
}

.tc-window-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border-dark);
}

.tc-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tc-window-dot.red { background: #ff5f57; }
.tc-window-dot.yellow { background: #febc2e; }
.tc-window-dot.green { background: #28c840; }

.tc-window-title {
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--cream-dim);
    font-weight: 500;
}

.tc-portal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 500px;
}

/* Portal Sidebar Close Button */
.tc-portal-sidebar-close {
    display: none;
}

/* Portal Sidebar Panel (for mobile) */
.tc-portal-sidebar-panel {
    display: contents;
}

/* Portal Mobile Header */
.tc-portal-mobile-header {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border-dark);
    margin: -20px -20px 20px;
}

.tc-portal-menu-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    border-radius: 10px;
    color: var(--accent);
    cursor: pointer;
    overflow: hidden;
    animation: menuPulse 3s ease-in-out infinite;
}

@keyframes menuPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tc-portal-menu-btn svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
}

/* Animated shine effect */
.tc-portal-menu-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: menuShine 3s ease-in-out infinite;
}

@keyframes menuShine {
    0% { left: -100%; }
    30%, 100% { left: 100%; }
}

.tc-portal-mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-portal-mobile-logo img {
    width: 24px;
    height: auto;
}

.tc-portal-mobile-logo span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--cream);
}

/* Portal Sidebar */
.tc-portal-sidebar {
    background: #0f0f0f;
    border-right: 1px solid var(--border-dark);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.tc-portal-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 16px;
}

.tc-portal-logo-img {
    width: 28px;
    height: auto;
}

.tc-portal-logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
}

.tc-portal-nav {
    flex: 1;
    padding: 0 12px;
}

.tc-portal-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--cream-dim);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.tc-portal-nav-item:hover {
    background: var(--black-lighter);
    color: var(--cream);
}

.tc-portal-nav-item.active {
    background: var(--accent-dim);
    color: var(--accent);
}

.tc-portal-nav-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tc-portal-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--black-lighter);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tc-portal-badge.alert {
    background: var(--accent);
    color: var(--white);
}

.tc-portal-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-dark);
    margin-top: auto;
}

.tc-portal-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.tc-portal-user-info {
    flex: 1;
}

.tc-portal-user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
}

.tc-portal-user-role {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

/* Portal Main */
.tc-portal-main {
    padding: 20px;
    background: #141414;
}

.tc-portal-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tc-portal-breadcrumb {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
}

.tc-portal-actions {
    display: flex;
    gap: 12px;
}

.tc-portal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--black-lighter);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--cream-dim);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tc-portal-btn:hover {
    border-color: var(--accent);
    color: var(--cream);
}

.tc-portal-btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.tc-portal-btn.primary:hover {
    background: var(--accent-bright);
}

.tc-portal-btn svg {
    width: 16px;
    height: 16px;
}

/* Portal Stats */
.tc-portal-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.tc-portal-stat {
    padding: 16px;
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    text-align: center;
}

.tc-portal-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.tc-portal-stat-label {
    font-size: 0.75rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Portal Projects */
.tc-portal-projects {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.tc-portal-projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-dark);
}

.tc-portal-projects-header h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--cream);
}

.tc-portal-link {
    font-size: 0.8125rem;
    color: var(--accent);
    text-decoration: none;
}

.tc-portal-link:hover {
    text-decoration: underline;
}

.tc-portal-project {
    display: grid;
    grid-template-columns: 8px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-dark);
    transition: background 0.2s ease;
}

.tc-portal-project:last-child {
    border-bottom: none;
}

.tc-portal-project:hover {
    background: rgba(255, 255, 255, 0.02);
}

.tc-portal-project-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tc-portal-project-status.in-progress { background: var(--accent); }
.tc-portal-project-status.review { background: #f59e0b; }
.tc-portal-project-status.planning { background: #6366f1; }
.tc-portal-project-status.complete { background: #22c55e; }

.tc-portal-project-info {
    min-width: 0;
}

.tc-portal-project-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tc-portal-project-client {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

.tc-portal-project-phase {
    padding: 4px 10px;
    background: var(--black-lighter);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--cream-dim);
    white-space: nowrap;
}

.tc-portal-project-updated {
    font-size: 0.75rem;
    color: var(--cream-muted);
    white-space: nowrap;
}

/* Portal Activity */
.tc-portal-activity {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
}

.tc-portal-activity-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-dark);
}

.tc-portal-activity-header h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--cream);
}

.tc-portal-activity-list {
    padding: 8px 0;
}

.tc-portal-activity-item {
    display: flex;
    gap: 12px;
    padding: 12px 20px;
}

.tc-portal-activity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-lighter);
    border-radius: 8px;
    flex-shrink: 0;
}

.tc-portal-activity-icon svg {
    width: 16px;
    height: 16px;
    color: var(--cream-dim);
}

.tc-portal-activity-icon.document svg { color: #6366f1; }
.tc-portal-activity-icon.signoff svg { color: #22c55e; }
.tc-portal-activity-icon.comment svg { color: #f59e0b; }
.tc-portal-activity-icon.update svg { color: var(--accent); }

.tc-portal-activity-content {
    flex: 1;
    min-width: 0;
}

.tc-portal-activity-text {
    font-size: 0.8125rem;
    color: var(--cream);
    margin-bottom: 2px;
}

.tc-portal-activity-time {
    font-size: 0.75rem;
    color: var(--cream-muted);
}

/* Portal Features */
.tc-portal-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tc-portal-feature {
    text-align: center;
    padding: 24px;
}

.tc-portal-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 12px;
    color: var(--accent);
}

.tc-portal-feature-icon svg {
    width: 28px;
    height: 28px;
}

.tc-portal-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.tc-portal-feature p {
    font-size: 0.875rem;
    color: var(--cream-dim);
    line-height: 1.6;
}

/* --- TC Cases Section --- */
.tc-cases-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--cream);
}

.tc-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tc-case-card {
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tc-case-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tc-case-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tc-case-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 12px;
    color: var(--white);
}

.tc-case-icon svg {
    width: 24px;
    height: 24px;
}

.tc-case-meta {
    display: flex;
    gap: 8px;
}

.tc-case-industry,
.tc-case-type {
    padding: 4px 10px;
    background: rgba(23, 22, 23, 0.05);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--black);
    opacity: 0.7;
}

.tc-case-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.tc-case-context,
.tc-case-findings,
.tc-case-delivery {
    margin-bottom: 20px;
}

.tc-case-context h4,
.tc-case-findings h4,
.tc-case-delivery h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    opacity: 0.5;
}

.tc-case-context p {
    font-size: 0.9375rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.7;
}

.tc-case-findings ul,
.tc-case-delivery ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-case-findings li,
.tc-case-delivery li {
    font-size: 0.875rem;
    color: var(--black);
    opacity: 0.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.tc-case-findings li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.tc-case-delivery li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.tc-case-outcome {
    padding: 16px 20px;
    background: var(--accent-dim);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.tc-case-outcome-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.tc-case-outcome-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

/* --- TC Execution Section --- */
.tc-execution-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black-light);
}

.tc-execution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tc-execution-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 28px;
    background: var(--black);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tc-execution-card:hover {
    border-color: var(--accent);
}

.tc-execution-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.tc-execution-advisory h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.tc-execution-advisory p {
    font-size: 0.8125rem;
    color: var(--cream-dim);
    line-height: 1.5;
}

.tc-execution-arrow {
    color: var(--accent);
}

.tc-execution-arrow svg {
    width: 24px;
    height: 24px;
}

.tc-execution-build {
    text-align: right;
}

.tc-execution-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.tc-execution-link:hover {
    text-decoration: underline;
}

.tc-execution-build p {
    font-size: 0.8125rem;
    color: var(--cream-dim);
    line-height: 1.5;
}

/* --- TC Engagement Section --- */
.tc-engagement-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--cream);
}

.tc-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.tc-engagement-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(23, 22, 23, 0.1);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.tc-engagement-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.tc-engagement-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.tc-engagement-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.tc-engagement-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--white);
}

.tc-engagement-icon svg {
    width: 24px;
    height: 24px;
}

.tc-engagement-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.tc-engagement-card > p {
    font-size: 0.9375rem;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tc-engagement-details {
    padding-top: 20px;
    border-top: 1px solid rgba(23, 22, 23, 0.1);
}

.tc-engagement-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.tc-engagement-detail-label {
    font-size: 0.8125rem;
    color: var(--black);
    opacity: 0.5;
}

.tc-engagement-detail-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--black);
}

/* --- TC CTA Section --- */
.tc-cta-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
    border-top: 1px solid var(--border-dark);
}

.tc-cta-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.tc-cta-description {
    font-size: 1.0625rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tc-cta-buttons-centered {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tc-cta-note {
    font-size: 0.875rem;
    color: var(--cream-muted);
}

/* --- TC Responsive --- */
@media (max-width: 1024px) {
    /* Remove hero box on tablet */
    .tc-hero-content {
        padding: 32px 24px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .tc-hero-content::before {
        display: none;
    }
    
    .tc-hero-buttons {
        justify-content: center;
    }
    
    .tc-gap-grid,
    .tc-services-grid,
    .tc-engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-execution-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-portal-layout {
        grid-template-columns: 180px 1fr;
    }
    
    .tc-portal-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-portal-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tc-hero {
        padding: 100px 0 60px;
    }
    
    .tc-hero-content {
        padding: 24px 20px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .tc-hero-content::before {
        display: none;
    }
    
    .tc-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tc-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .tc-gap-grid,
    .tc-services-grid,
    .tc-cases-grid,
    .tc-engagement-grid {
        grid-template-columns: 1fr;
    }
    
    .tc-process-timeline::before {
        left: 24px;
    }
    
    .tc-process-step {
        gap: 20px;
    }
    
    .tc-process-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .tc-portal-layout {
        grid-template-columns: 1fr;
        position: relative;
        overflow: hidden;
    }
    
    /* Mobile Sidebar as Modal WITHIN the prototype */
    .tc-portal-sidebar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(4px);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        border-right: none;
        padding: 0;
    }
    
    .tc-portal-sidebar.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .tc-portal-sidebar-panel {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 240px;
        max-width: 75%;
        background: #0f0f0f;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    .tc-portal-sidebar.active .tc-portal-sidebar-panel {
        transform: translateX(0);
    }
    
    .tc-portal-sidebar-close {
        display: flex;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        background: var(--black-lighter);
        border: 1px solid var(--border-dark);
        border-radius: 6px;
        color: var(--cream-dim);
        cursor: pointer;
        z-index: 10;
    }
    
    .tc-portal-sidebar-close svg {
        width: 16px;
        height: 16px;
    }
    
    .tc-portal-sidebar-close:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: white;
    }
    
    .tc-portal-sidebar .tc-portal-logo {
        padding-top: 50px;
    }
    
    .tc-portal-mobile-header {
        display: flex;
    }
    
    .tc-portal-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tc-portal-project {
        grid-template-columns: 8px 1fr;
        gap: 12px;
    }
    
    .tc-portal-project-phase,
    .tc-portal-project-updated {
        display: none;
    }
    
    .tc-portal-features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .tc-portal-feature {
        padding: 16px;
    }
    
    .tc-execution-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tc-execution-arrow {
        transform: rotate(90deg);
    }
    
    .tc-execution-build {
        text-align: center;
    }
    
    .tc-cta-buttons-centered {
        flex-direction: column;
        align-items: center;
    }
    
    .tc-cta-buttons-centered .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tc-hero-content {
        padding: 20px 16px;
    }
    
    .tc-portal-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .tc-portal-stat {
        padding: 12px;
    }
    
    .tc-portal-stat-value {
        font-size: 1.25rem;
    }
    
    .tc-portal-features {
        grid-template-columns: 1fr;
    }
    
    .tc-case-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .tc-case-meta {
        flex-wrap: wrap;
    }
}

/* ============================================
   BANKS COMMAND PAGE
   ============================================ */

/* Hero Section */
.bc-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 100px;
}

.bc-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bc-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, 
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 15%,
        rgba(10, 10, 10, 0.35) 30%,
        rgba(10, 10, 10, 0.15) 45%,
        transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.bc-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.bc-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.bc-hero-logo img {
    height: 48px;
    width: auto;
}

.bc-hero-logo-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
}

.bc-hero-logo-text span {
    background: linear-gradient(180deg, #00b37f 0%, #009c6f 50%, #007a57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.bc-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.bc-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Problem Section */
.bc-problem-section {
    padding: clamp(80px, 12vw, 120px) 0;
}

.bc-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bc-problem-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.bc-problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-problem-card h3 svg {
    width: 20px;
    height: 20px;
    color: #ff6b6b;
    flex-shrink: 0;
}

.bc-problem-card p {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

/* Portal Section - uses tc-portal-* classes for demo */
.bc-portal-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--black);
}

.bc-portal-header {
    text-align: center;
    margin-bottom: 48px;
}

.bc-portal-header .section-desc {
    max-width: 640px;
    margin: 0 auto;
}

/* Features Section */
.bc-features-section {
    padding: clamp(80px, 12vw, 120px) 0;
}

.bc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bc-feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.bc-feature-card:hover {
    border-color: rgba(0, 156, 111, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.bc-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 156, 111, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bc-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.bc-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.bc-feature-card p {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

/* Security Section */
.bc-security-section {
    padding: clamp(80px, 12vw, 120px) 0;
    background: var(--bg-dark);
}

.bc-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.bc-security-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
}

.bc-security-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.bc-security-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.bc-security-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Access Section */
.bc-access-section {
    padding: clamp(80px, 12vw, 120px) 0;
}

.bc-access-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bc-access-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bc-access-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
}

.bc-access-card.featured {
    border-color: var(--accent);
    position: relative;
}

.bc-access-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.bc-access-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.bc-access-card p {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bc-access-card .btn {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.bc-cta-section {
    padding: clamp(80px, 12vw, 120px) 0;
    background: var(--bg-dark);
    text-align: center;
}

.bc-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.bc-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.bc-cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.bc-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BANKS COMMAND RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .bc-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bc-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bc-hero {
        padding: 100px 20px 120px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .bc-hero-content {
        padding: 32px 20px;
    }
    
    .bc-hero-logo img {
        height: 40px;
    }
    
    .bc-hero-logo-text {
        font-size: 24px;
    }
    
    .bc-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bc-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .bc-hero .scroll-indicator {
        bottom: 32px;
    }
    
    .bc-problem-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-security-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-access-options {
        grid-template-columns: 1fr;
    }
    
    .bc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bc-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* ============================================
   THE SHIFT SECTION (Homepage)
   Insert after logos, before services
   ============================================ */
.shift-section {
    overflow: hidden;
}

/* Part 1: Reality - Cream Background */
.shift-reality {
    background: var(--cream);
    color: var(--black);
    padding: var(--section-padding) 0;
}

.shift-opener {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Dark pill variant for cream backgrounds */
.section-pill-dark {
    background: linear-gradient(135deg, rgba(23, 22, 23, 0.08) 0%, rgba(23, 22, 23, 0.03) 100%);
    border-color: rgba(23, 22, 23, 0.15);
    color: var(--black);
}

.shift-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.shift-sub {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

/* Problem Cards Grid */
.shift-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .shift-problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.shift-problem-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: var(--transition-base);
}

.shift-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.shift-problem-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(239, 68, 68, 0.04) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.shift-problem-icon svg {
    width: 26px;
    height: 26px;
    color: #dc2626;
}

.shift-problem-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.shift-problem-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Big Stat Block */
.shift-stat-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
}

.shift-stat-number {
    font-size: clamp(64px, 10vw, 100px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.shift-stat-text {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.shift-stat-text strong {
    color: var(--black);
}

/* Part 2: The Shift - Dark Background */
.shift-solution {
    background: var(--black);
    color: var(--cream);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

/* Radial glow behind orchestrator box */
.shift-solution::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(0, 156, 111, 0.15) 0%, rgba(0, 156, 111, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Accent divider at bottom */
.shift-solution::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.6;
}

/* Ensure content sits above the glow */
.shift-solution .container {
    position: relative;
    z-index: 1;
}

.shift-revelation {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.shift-headline-big {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.shift-headline-big .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shift-desc {
    font-size: 18px;
    color: var(--cream-dim);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Orchestrator Box */
.shift-orch-box {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    overflow: hidden;
}

.shift-orch-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.shift-orch-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.shift-orch-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-dim), rgba(0, 156, 111, 0.05));
    border: 1px solid rgba(0, 156, 111, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-align: center !important;
}

.shift-orch-def {
    font-size: 18px;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 700px;
    width: 100%;
    text-align: center !important;
}

.shift-caps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center !important;
    width: 100%;
}

.shift-cap-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(241, 237, 228, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 100px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--cream-dim);
    transition: var(--transition-base);
}

.shift-cap-pill:hover {
    background: rgba(241, 237, 228, 0.08);
    border-color: rgba(241, 237, 228, 0.2);
}

.shift-cap-pill svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.shift-cap-pill strong {
    color: var(--cream);
}

@media (max-width: 768px) {
    .shift-caps-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shift-cap-pill {
        justify-content: flex-start;
    }
    
    .shift-orch-box {
        padding: 28px 20px;
    }
}

/* Proof + CTAs */
.shift-proof {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.shift-proof-text {
    font-size: 18px;
    color: var(--cream-dim);
    margin-bottom: 8px;
}

.shift-proof-text strong {
    color: var(--cream);
}

.shift-proof-accent {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
}

.shift-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .shift-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shift-ctas .btn {
        width: 100%;
    }
}


/* ============================================
   WHAT WE DO PAGE
   /what-we-do/index.php
   ============================================ */

/* Page Hero */
.wwd-hero {
    padding: 160px 0 var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wwd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(ellipse at center top, var(--accent-dim) 0%, transparent 70%);
    pointer-events: none;
}

.wwd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.wwd-hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.wwd-hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wwd-hero-desc {
    font-size: 20px;
    color: var(--cream-dim);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Reality Section (Cream) */
.wwd-reality {
    background: var(--cream);
    color: var(--black);
    padding: var(--section-padding) 0;
}

.wwd-reality .section-header {
    margin-bottom: 60px;
}

.wwd-reality .section-title {
    color: var(--black);
}

.wwd-reality .section-desc {
    color: var(--gray);
}

/* Stat Block Large */
.wwd-stat-block-large {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.wwd-stat-block-large .shift-stat-number {
    font-size: clamp(80px, 15vw, 140px);
}

/* Comparison Section */
.wwd-comparison {
    padding: var(--section-padding) 0;
}

.wwd-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wwd-comparison-grid {
        grid-template-columns: 1fr;
    }
}

.wwd-comparison-col {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 36px;
}

.wwd-comparison-col--old {
    opacity: 0.7;
}

.wwd-comparison-col--new {
    border-color: rgba(0, 156, 111, 0.3);
    background: linear-gradient(135deg, var(--black-light), rgba(0, 156, 111, 0.05));
}

.wwd-comparison-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-muted);
    margin-bottom: 8px;
}

.wwd-comparison-col--new .wwd-comparison-label {
    color: var(--accent);
}

.wwd-comparison-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wwd-comparison-list {
    list-style: none;
    padding: 0;
}

.wwd-comparison-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--cream-dim);
}

.wwd-comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-muted);
}

.wwd-comparison-col--new .wwd-comparison-list li::before {
    background: var(--accent);
}

/* Capabilities Grid */
.wwd-capabilities {
    background: var(--cream);
    color: var(--black);
    padding: var(--section-padding) 0;
}

.wwd-capabilities .section-title {
    color: var(--black);
}

.wwd-capabilities .section-desc {
    color: var(--gray);
}

.wwd-caps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .wwd-caps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .wwd-caps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wwd-cap-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
}

.wwd-cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.wwd-cap-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-dim), rgba(0, 156, 111, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.wwd-cap-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.wwd-cap-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}

.wwd-cap-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Process Timeline */
.wwd-process {
    padding: var(--section-padding) 0;
    background: var(--black-light);
}

.wwd-timeline {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.wwd-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-dark);
}

@media (max-width: 768px) {
    .wwd-timeline {
        flex-direction: column;
        gap: 32px;
    }
    
    .wwd-timeline::before {
        display: none;
    }
}

.wwd-timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wwd-timeline-num {
    width: 56px;
    height: 56px;
    background: var(--black);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 16px;
}

.wwd-timeline-step h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wwd-timeline-step p {
    font-size: 14px;
    color: var(--cream-dim);
    max-width: 140px;
    margin: 0 auto;
}

/* Case Studies */
.wwd-cases {
    padding: var(--section-padding) 0;
}

.wwd-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .wwd-cases-grid {
        grid-template-columns: 1fr;
    }
}

.wwd-case-card {
    background: var(--black-light);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-base);
}

.wwd-case-card:hover {
    border-color: rgba(0, 156, 111, 0.3);
    transform: translateY(-4px);
}

.wwd-case-client {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.wwd-case-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wwd-case-card p {
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.6;
}

/* CTA Section */
.wwd-cta {
    padding: var(--section-padding) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    color: var(--white);
}

.wwd-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.wwd-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wwd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--accent-dark);
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-base);
}

.wwd-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.wwd-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.wwd-cta-btn:hover svg {
    transform: translateX(4px);
}


/* ============================================
   FEATURED NAV LINK STYLES
   ============================================ */

/* Desktop featured nav link */
.nav-link-featured {
    background: linear-gradient(135deg, var(--accent-dim), rgba(0, 156, 111, 0.05));
    border: 1px solid rgba(0, 156, 111, 0.3);
    color: var(--accent) !important;
    border-radius: 8px;
    padding: 8px 16px !important;
}

.nav-link-featured:hover {
    background: rgba(0, 156, 111, 0.2) !important;
    color: var(--accent-bright) !important;
}

/* Mobile "Start Here" section */
.mobile-menu-section-start {
    background: linear-gradient(135deg, var(--accent-dim), rgba(0, 156, 111, 0.03));
    border: 1px solid rgba(0, 156, 111, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
}

.mobile-menu-section-start .mobile-menu-section-title {
    color: var(--accent);
}

/* Mobile featured link */
.mobile-menu-link-featured {
    background: linear-gradient(135deg, var(--accent-dim), rgba(0, 156, 111, 0.05));
    border: 1px solid rgba(0, 156, 111, 0.3);
    border-radius: 10px;
    color: var(--accent) !important;
}

.mobile-menu-link-featured:hover {
    background: rgba(0, 156, 111, 0.2);
}

.mobile-menu-link-featured svg {
    color: var(--accent);
}
