/* ==============================================
   AWWWARDS 2026 — IMMERSIVE DARK HOMEPAGE
   TCS-Style Hero Slider · Glassmorphism · Kinetic Typography
   3-color palette: #08080f / #e8e8f0 / #00ff88
   ============================================== */

/* ---------- VARIABLES ---------- */
:root {
    --aw-bg: #08080f;
    --aw-bg-2: #0c0c16;
    --aw-surface: #13131f;
    --aw-text: #e8e8f0;
    --aw-text-dim: rgba(255, 255, 255, 0.55);
    --aw-neon: #00ff88;
    --aw-neon-dim: rgba(0, 255, 136, 0.15);
    --aw-neon-glow: rgba(0, 255, 136, 0.3);
    --aw-purple: #8b5cf6;
    --aw-glass: rgba(255, 255, 255, 0.04);
    --aw-glass-border: rgba(255, 255, 255, 0.08);
    --aw-radius: 24px;
    --aw-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- DARK PAGE BASE ---------- */
.aw-page {
    background: var(--aw-bg);
    color: var(--aw-text);
}
.aw-page ::selection,
.aw-page *::selection {
    background: rgba(0, 255, 136, 0.3);
    color: #fff;
}

/* ---------- NAV DARK OVERRIDES ---------- */
.aw-page .navbar {
    background: transparent !important;
    backdrop-filter: none;
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
.aw-page .navbar.scrolled {
    background: rgba(8, 8, 15, 0.88) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.aw-page .nav-links a {
    color: rgba(255, 255, 255, 0.55) !important;
}
.aw-page .nav-links a:hover,
.aw-page .nav-links a.active {
    color: #fff !important;
}
.aw-page .brand {
    color: #fff !important;
}
.aw-page .tagline {
    color: rgba(255, 255, 255, 0.5) !important;
}
.aw-page .nav-cta {
    background: var(--aw-neon) !important;
    color: #000 !important;
    border-color: var(--aw-neon) !important;
}
.aw-page .nav-cta:hover {
    box-shadow: 0 0 24px var(--aw-neon-glow);
}
.aw-page .hamburger span {
    background: #fff !important;
}
.aw-page .nav-links.active {
    background: rgba(8, 8, 15, 0.95) !important;
    backdrop-filter: blur(24px);
}

/* ---------- FLOATING CTA DARK ---------- */
.aw-page .floating-cta-btn {
    background: var(--aw-neon) !important;
    color: #000 !important;
    box-shadow: 0 0 24px var(--aw-neon-glow);
}

/* ---------- CURSOR OVERRIDES ---------- */
.aw-page .cursor-dot {
    background: var(--aw-neon);
}
.aw-page .cursor-ring {
    border-color: var(--aw-neon);
}

/* ==========================================
   HERO — TCS-STYLE IMAGE SLIDER
   ========================================== */
.aw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--aw-bg);
}

/* --- Background Image Slider --- */
.aw-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.aw-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    will-change: opacity;
}
.aw-slide.aw-slide-active {
    opacity: 1;
}
.aw-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aw-slide.aw-slide-active .aw-slide-bg {
    animation: aw-ken-burns 8s ease-out forwards;
}
@keyframes aw-ken-burns {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

/* --- Dark Gradient Overlay (heavier on left for text) --- */
.aw-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(8, 8, 15, 0.90) 0%,
        rgba(8, 8, 15, 0.72) 40%,
        rgba(8, 8, 15, 0.38) 100%
    );
    pointer-events: none;
}

/* --- Subtle Grid --- */
.aw-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(400px) rotateX(55deg);
    transform-origin: center 120%;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
    pointer-events: none;
}

/* --- Film Grain --- */
.aw-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* --- Hero Content Body --- */
.aw-hero-body {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 180px 0 180px;
}

/* --- Slide Content Panels --- */
.aw-slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}
.aw-slide-panel.aw-panel-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- Hero Label Badge --- */
.aw-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid var(--aw-glass-border);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aw-text-dim);
    background: var(--aw-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 36px;
}
.aw-label-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aw-neon);
    box-shadow: 0 0 12px var(--aw-neon);
    animation: aw-pulse-dot 2.4s ease-in-out infinite;
}
@keyframes aw-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* --- Hero Slide Title --- */
.aw-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--aw-text);
    margin-bottom: 28px;
    max-width: 750px;
}
.aw-hero-title .aw-text-accent {
    background: linear-gradient(135deg, var(--aw-neon), #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 60px var(--aw-neon-dim));
}

/* --- Hero Description --- */
.aw-hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    color: var(--aw-text-dim);
    max-width: 580px;
    margin-bottom: 44px;
}

/* --- Hero Actions --- */
.aw-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Trust Bar --- */
.aw-hero-trust-bar {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 5;
}
.aw-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.aw-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--aw-text-dim);
    letter-spacing: 0.5px;
}
.aw-trust-item i {
    color: var(--aw-neon);
    font-size: 0.85rem;
}

/* --- Slider Navigation (Dots + Counter) --- */
.aw-slider-nav {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}
.aw-slider-counter {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 2px;
    white-space: nowrap;
}
.aw-counter-current {
    color: var(--aw-neon);
    font-weight: 800;
}
.aw-slider-dots {
    display: flex;
    gap: 8px;
}
.aw-dot {
    position: relative;
    width: 48px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: background 0.4s ease;
}
.aw-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}
.aw-dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--aw-neon);
    border-radius: 2px;
}
.aw-dot.aw-dot-active .aw-dot-progress {
    animation: aw-dot-fill 6s linear forwards;
}
@keyframes aw-dot-fill {
    from { width: 0%; }
    to { width: 100%; }
}

/* --- Slider Arrows --- */
.aw-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 32px;
    transform: translateY(-50%);
    pointer-events: none;
}
.aw-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aw-arrow:hover {
    background: var(--aw-neon);
    color: #000;
    border-color: var(--aw-neon);
    box-shadow: 0 0 24px var(--aw-neon-glow);
}

/* --- Scroll Hint --- */
.aw-scroll-hint {
    position: absolute;
    bottom: 36px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--aw-text-dim);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 5;
}
.aw-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--aw-neon), transparent);
    animation: aw-scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes aw-scroll-pulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================
   SECTIONS — SHARED
   ========================================== */
.aw-section {
    padding: 130px 0;
    position: relative;
}
.aw-section-alt {
    background: var(--aw-bg-2);
}
.aw-section-head {
    margin-bottom: 76px;
}
.aw-head-center {
    text-align: center;
}
.aw-overline {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--aw-neon);
    margin-bottom: 20px;
}
.aw-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--aw-text);
    letter-spacing: -0.02em;
}
.aw-text-accent {
    color: var(--aw-neon);
}

/* ==========================================
   GLASSMORPHISM FEATURE CARDS
   ========================================== */
.aw-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.aw-glass-card {
    position: relative;
    background: var(--aw-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--aw-glass-border);
    border-radius: var(--aw-radius);
    padding: 52px 38px;
    transition: all 0.6s var(--aw-ease);
    overflow: hidden;
}
.aw-card-glow {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.aw-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 48px rgba(0, 255, 136, 0.06);
}
.aw-glass-card:hover .aw-card-glow {
    opacity: 1;
}
.aw-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 255, 136, 0.08);
    color: var(--aw-neon);
    font-size: 1.3rem;
    margin-bottom: 30px;
    transition: background 0.3s ease;
}
.aw-glass-card:hover .aw-card-icon {
    background: rgba(0, 255, 136, 0.15);
}

/* Card image — VISIBLE brightness */
.aw-card-img {
    width: calc(100% + 76px);
    margin: -52px -38px 28px;
    height: 200px;
    overflow: hidden;
    border-radius: var(--aw-radius) var(--aw-radius) 0 0;
}
.aw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--aw-ease), filter 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}
.aw-glass-card:hover .aw-card-img img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

.aw-glass-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--aw-text);
}
.aw-glass-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--aw-text-dim);
    margin-bottom: 28px;
}
.aw-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--aw-neon);
    text-decoration: none;
    transition: gap 0.3s ease;
}
.aw-card-link:hover {
    gap: 14px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.aw-btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: var(--aw-neon);
    color: #000;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.4s var(--aw-ease);
    box-shadow: 0 0 28px rgba(0, 255, 136, 0.25), 0 0 80px rgba(0, 255, 136, 0.08);
}
.aw-btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 44px rgba(0, 255, 136, 0.45), 0 0 120px rgba(0, 255, 136, 0.2);
}
.aw-btn-neon.aw-btn-large {
    padding: 22px 52px;
    font-size: 1.05rem;
}
.aw-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    color: var(--aw-text);
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid var(--aw-glass-border);
    border-radius: 60px;
    text-decoration: none;
    background: var(--aw-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--aw-ease);
}
.aw-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.aw-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    color: var(--aw-neon);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s var(--aw-ease);
}
.aw-btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--aw-neon);
    transform: translateY(-2px);
}

/* ==========================================
   METRICS — KINETIC NUMBERS
   ========================================== */
.aw-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.aw-metric {
    padding: 40px 16px;
}
.aw-metric-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--aw-text);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.aw-metric-suffix {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--aw-neon);
}
.aw-metric-label {
    display: block;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--aw-text-dim);
    letter-spacing: 0.5px;
}

/* ==========================================
   PRODUCT SHOWCASE
   ========================================== */
.aw-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.aw-product-card {
    position: relative;
    background: var(--aw-surface);
    border: 1px solid var(--aw-glass-border);
    border-radius: var(--aw-radius);
    padding: 52px 42px;
    transition: all 0.6s var(--aw-ease);
    overflow: hidden;
}
.aw-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aw-neon), var(--aw-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.aw-product-card:hover {
    transform: translateY(-8px) perspective(600px) rotateX(2deg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 255, 136, 0.15);
}
.aw-product-card:hover::before {
    opacity: 1;
}
.aw-product-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--aw-neon-dim);
    color: var(--aw-neon);
    border-radius: 50px;
    margin-bottom: 24px;
}
.aw-product-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--aw-glass);
    border: 1px solid var(--aw-glass-border);
    color: var(--aw-neon);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Product mockup image — VISIBLE brightness */
.aw-product-mockup {
    width: calc(100% + 84px);
    margin: -52px -42px 28px;
    height: 240px;
    overflow: hidden;
    border-radius: var(--aw-radius) var(--aw-radius) 0 0;
    position: relative;
}
.aw-product-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--aw-ease), filter 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}
.aw-product-card:hover .aw-product-mockup img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}
.aw-product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--aw-text);
}
.aw-product-card p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--aw-text-dim);
    margin-bottom: 24px;
}
.aw-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aw-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--aw-text-dim);
}
.aw-product-features li i {
    color: var(--aw-neon);
    font-size: 0.72rem;
}
.aw-products-more {
    text-align: center;
    margin-top: 52px;
}
.aw-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--aw-neon);
    text-decoration: none;
    transition: gap 0.3s ease;
}
.aw-link-arrow:hover {
    gap: 18px;
}

/* ==========================================
   MARQUEE — INTEGRATIONS
   ========================================== */
.aw-marquee {
    overflow: hidden;
    padding: 48px 0 0;
}
.aw-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: aw-scroll-marquee 40s linear infinite;
}
.aw-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    transition: color 0.4s ease;
    user-select: none;
}
.aw-marquee-item:hover {
    color: rgba(255, 255, 255, 0.6);
}
.aw-marquee-item i {
    font-size: 1.4rem;
}
@keyframes aw-scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================
   PRICING — STAGGERED TIERS
   ========================================== */
.aw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.aw-price-card {
    position: relative;
    background: var(--aw-surface);
    border: 1px solid var(--aw-glass-border);
    border-radius: var(--aw-radius);
    padding: 48px 36px;
    transition: all 0.6s var(--aw-ease);
}
.aw-price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.aw-price-featured {
    background: var(--aw-glass);
    border-color: rgba(0, 255, 136, 0.25);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: scale(1.04);
    box-shadow: 0 0 48px rgba(0, 255, 136, 0.06);
    z-index: 2;
}
.aw-price-featured:hover {
    transform: scale(1.04) translateY(-8px);
}
.aw-price-pop {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 22px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--aw-neon);
    color: #000;
    border-radius: 50px;
    white-space: nowrap;
}
.aw-price-tier {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--aw-neon);
    margin-bottom: 12px;
}
.aw-price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--aw-text);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.aw-price-card > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--aw-text-dim);
    margin-bottom: 28px;
}
.aw-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.aw-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--aw-text-dim);
}
.aw-price-features li i {
    color: var(--aw-neon);
    font-size: 0.72rem;
}

/* ==========================================
   TESTIMONIAL — PARALLAX GLASS
   ========================================== */
.aw-testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    background: var(--aw-glass);
    border: 1px solid var(--aw-glass-border);
    border-radius: var(--aw-radius);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: relative;
}
.aw-testimonial-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aw-neon), transparent);
    opacity: 0.5;
}
.aw-quote-icon {
    font-size: 2.2rem;
    color: var(--aw-neon);
    margin-bottom: 32px;
    opacity: 0.5;
}
.aw-quote-text {
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.85;
    color: var(--aw-text);
    font-style: italic;
    margin: 0 0 36px;
}
.aw-quote-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.aw-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aw-neon-dim), rgba(139, 92, 246, 0.2));
    border: 2px solid var(--aw-glass-border);
    overflow: hidden;
    flex-shrink: 0;
}
.aw-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aw-author-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 3px;
}
.aw-author-info span {
    font-size: 0.82rem;
    color: var(--aw-text-dim);
}

/* ==========================================
   CTA — NEON BLOOM
   ========================================== */
.aw-cta {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    background: var(--aw-bg);
}
.aw-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.aw-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: saturate(0.2);
}
.aw-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}
.aw-cta-inner {
    position: relative;
    z-index: 2;
}
.aw-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.aw-cta-inner p {
    font-size: 1.08rem;
    color: var(--aw-text-dim);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.aw-cta-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================
   BRAND SHOWCASE
   ========================================== */
.aw-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.aw-showcase-visual {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}
.aw-showcase-main {
    border-radius: var(--aw-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.aw-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
    transition: transform 0.6s var(--aw-ease);
    filter: brightness(0.9) saturate(0.9);
}
.aw-showcase-main:hover img {
    transform: scale(1.03);
    filter: brightness(1) saturate(1);
}
.aw-showcase-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.aw-showcase-thumb {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    flex: 1;
}
.aw-showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 170px;
    transition: transform 0.6s var(--aw-ease);
    filter: brightness(0.9) saturate(0.9);
}
.aw-showcase-thumb:hover img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1);
}
.aw-showcase-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--aw-text-dim);
    margin-bottom: 36px;
}
.aw-showcase-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
}
.aw-showcase-stat {
    display: flex;
    flex-direction: column;
}
.aw-showcase-stat strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--aw-neon);
    line-height: 1.2;
}
.aw-showcase-stat span {
    font-size: 0.8rem;
    color: var(--aw-text-dim);
    margin-top: 4px;
}

/* ==========================================
   CASE STUDIES GRID
   ========================================== */
.aw-cases-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
}
.aw-case-card {
    position: relative;
    display: block;
    border-radius: var(--aw-radius);
    overflow: hidden;
    text-decoration: none;
    min-height: 380px;
    transition: transform 0.6s var(--aw-ease);
}
.aw-case-card:hover {
    transform: translateY(-8px);
}
.aw-case-img {
    position: absolute;
    inset: 0;
}
.aw-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--aw-ease);
    filter: brightness(0.85);
}
.aw-case-card:hover .aw-case-img img {
    transform: scale(1.06);
    filter: brightness(1);
}
.aw-case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 15, 0.92) 0%, rgba(8, 8, 15, 0.3) 50%, rgba(8, 8, 15, 0.1) 100%);
    z-index: 1;
}
.aw-case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px;
    z-index: 2;
    color: var(--aw-text);
}
.aw-case-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--aw-neon-dim);
    color: var(--aw-neon);
    border-radius: 50px;
    margin-bottom: 14px;
}
.aw-case-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}
.aw-case-content p {
    font-size: 0.85rem;
    color: var(--aw-text-dim);
    line-height: 1.6;
}

/* ==========================================
   REVEAL ANIMATION — WITH FALLBACK
   ========================================== */
.aw-reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.9s var(--aw-ease), transform 0.9s var(--aw-ease);
}
.aw-reveal.aw-visible {
    opacity: 1;
    transform: translateY(0);
}
/* CSS-only safety net: if JS reveal hasn't fired after 3s, show content anyway */
@keyframes aw-reveal-safety {
    to { opacity: 1; transform: translateY(0); }
}
.aw-reveal {
    animation: aw-reveal-safety 0.8s var(--aw-ease) 2.5s forwards;
}
.aw-reveal.aw-visible {
    animation: none;
}

/* ==========================================
   FOOTER DARK OVERRIDES
   ========================================== */
.aw-page .footer {
    background: var(--aw-bg-2);
    border-top: 1px solid var(--aw-glass-border);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .aw-glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aw-hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }
    .aw-slider-arrows {
        padding: 0 20px;
    }
    .aw-arrow {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .aw-glass-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }
    .aw-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aw-products-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }
    .aw-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .aw-price-featured {
        transform: none;
    }
    .aw-price-featured:hover {
        transform: translateY(-8px);
    }
    .aw-section {
        padding: 90px 0;
    }
    .aw-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .aw-showcase-visual {
        max-width: 600px;
    }
    .aw-cases-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .aw-case-card {
        min-height: 300px;
    }
    .aw-card-img {
        height: 180px;
    }
    .aw-product-mockup {
        height: 200px;
    }
    .aw-slider-arrows {
        display: none;
    }
}

@media (max-width: 768px) {
    .aw-hero-body {
        padding: 140px 0 160px;
    }
    .aw-hero-title {
        font-size: clamp(2.4rem, 10vw, 3.8rem);
    }
    .aw-hero-desc br {
        display: none;
    }
    .aw-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .aw-btn-neon,
    .aw-btn-ghost {
        justify-content: center;
        text-align: center;
    }
    .aw-hero-trust {
        flex-direction: column;
        gap: 14px;
    }
    .aw-hero-trust-bar {
        bottom: 80px;
    }
    .aw-slider-nav {
        bottom: 24px;
        gap: 12px;
    }
    .aw-slider-counter {
        display: none;
    }
    .aw-dot {
        width: 32px;
    }
    .aw-scroll-hint {
        display: none;
    }
    .aw-section {
        padding: 72px 0;
    }
    .aw-section-head {
        margin-bottom: 52px;
    }
    .aw-testimonial-card {
        padding: 40px 24px;
    }
    .aw-product-card {
        padding: 40px 28px;
    }
    .aw-cta {
        padding: 100px 0;
    }
    .aw-showcase {
        gap: 36px;
        text-align: center;
    }
    .aw-showcase-visual {
        grid-template-columns: 1fr;
    }
    .aw-photo-stack {
        flex-direction: row;
        gap: 12px;
    }
    .aw-photo-stack img {
        height: 160px;
    }
    .aw-showcase-stats {
        justify-content: center;
    }
    .aw-cases-grid {
        gap: 20px;
    }
    .aw-case-card {
        min-height: 260px;
    }
    .aw-case-info h3 {
        font-size: 1.15rem;
    }
    .aw-card-img {
        height: 160px;
    }
    .aw-product-mockup {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .aw-metrics-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .aw-metric {
        padding: 24px 16px;
    }
    .aw-glass-card {
        padding: 36px 24px;
    }
    .aw-price-card {
        padding: 36px 24px;
    }
    .aw-btn-neon.aw-btn-large {
        padding: 18px 32px;
        font-size: 0.95rem;
    }
    .aw-showcase-stats {
        flex-direction: column;
        gap: 16px;
    }
    .aw-photo-stack {
        flex-direction: column;
    }
    .aw-photo-stack img {
        height: 200px;
    }
    .aw-cases-grid {
        gap: 16px;
    }
    .aw-case-card {
        min-height: 220px;
    }
    .aw-card-img {
        height: 140px;
    }
    .aw-product-mockup {
        height: 150px;
    }
    .aw-hero-body {
        padding: 120px 0 140px;
    }
    .aw-hero-label {
        font-size: 0.68rem;
        padding: 8px 16px;
    }
}

/* ==========================================
   SMOOTH SCROLLBAR (webkit)
   ========================================== */
.aw-page::-webkit-scrollbar {
    width: 6px;
}
.aw-page::-webkit-scrollbar-track {
    background: var(--aw-bg);
}
.aw-page::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}
.aw-page::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}
