/* style.css */

/* -------------------- */
/* VARIABLES & RESET    */
/* -------------------- */
:root {
    --primary-color: #547792;
    --accent-color: #d98e18;
    --dark-bg: #121826;
    --light-text: #f0f4f8;
    --dark-text: #1a202c;
    --card-bg: #1a202c; /* For general cards */
    --card-bg-alt: #21293a; /* Slightly different for specific cards like team */
    --border-color: #2d3748;
    --font-primary: 'Jost', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --container-width: 1140px;
    --spacing-unit: 1rem; /* 16px */
    --header-height: 80px; /* Approximate height of the fixed header */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

/* Smooth scrolling with offset for fixed header */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.7;
    font-size: 16px;
    padding-top: var(--header-height); /* Account for fixed header on all pages */
}

/* -------------------- */
/* GENERAL TYPOGRAPHY & LINKS */
/* -------------------- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--light-text);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    line-height: 1.3;
}

/* Homepage specific H1 size */
.hero-section h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
/* Subpage H1 size */
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }

/* General H2, H3 */
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }


/* Headings within cards/content using primary font for readability */
.feature-card h3,
.content-column h2,
.footer-column h4,
.stat-item p,
.section-title span,
.team-member-card h3,
.about-section h2 {
    font-family: var(--font-primary);
}
.content-column h2 { /* Override for split section content headings */
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
}
.about-section h2 {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-unit);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}


p {
    margin-bottom: calc(var(--spacing-unit) * 1.25);
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 75ch;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.section-kicker::before {
    content: '';
    width: 12px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
}
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #ffb74d;
}

/* -------------------- */
/* HEADER & NAVIGATION  */
/* -------------------- */
.site-header {
    background-color: rgba(18, 24, 38, 0.85);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: var(--spacing-unit) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
    background-color: rgba(18, 24, 38, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: calc(var(--spacing-unit) * 0.7) 0;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensure container takes full header height */
}
.logo-area {
    display: flex;
    align-items: center;
}
.logo-area img {
    height: 50px;
    width: 50px;
    margin-right: calc(var(--spacing-unit) * 0.75);
}
.logo-area .site-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--light-text);
    margin: 0;
}
.logo-area .tagline {
    font-size: 0.8rem;
    color: var(--accent-color);
    display: block;
    margin-top: -5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
}
.main-nav ul li {
    margin-left: calc(var(--spacing-unit) * 1.5);
}
.main-nav ul li a {
    color: var(--light-text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
    left: 50%;
}

.main-nav ul li a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    color: var(--light-text);
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* -------------------- */
/* BUTTONS              */
/* -------------------- */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: calc(var(--spacing-unit)*0.8) calc(var(--spacing-unit)*2);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--accent-color);
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn:hover {
    background-color: #ffb74d;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 142, 24, 0.4);
}
.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(217, 142, 24, 0.3);
}
.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}
.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    box-shadow: 0 8px 20px rgba(217, 142, 24, 0.3);
}

/* -------------------- */
/* COMMON SECTION STYLING */
/* -------------------- */
section {
    padding: calc(var(--spacing-unit) * 5) 0;
}

section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Global Subtle Star Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 15% 15%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 60% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.4), transparent);
    background-size: 800px 800px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    will-change: opacity, transform;
}

@media (max-width: 640px) {
    body::before {
        display: none;
    }
}

.section-title {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--light-text) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: calc(var(--spacing-unit) * 1.5) auto 0;
    border-radius: 2px;
}

.section-title span { /* Sub-heading for section title */
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
    -webkit-text-fill-color: var(--accent-color);
    background: none;
}

/* ---------------------------- */
/* HOMEPAGE SPECIFIC SECTIONS   */
/* ---------------------------- */

/* Hero Section (Homepage) */
.hero-section {
    position: relative;
    min-height: min(92vh, 760px);
    padding: 15px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Deep space background base */
    background-color: #0b0f19;
    background: radial-gradient(circle at 50% -20%, #1a2333, #0b0f19 80%);
}

/* --- Hero Background Effects --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Perspective Grid Floor */
.hero-bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(84, 120, 146, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 120, 146, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
    opacity: 0.4;
}

/* Ambient Glow */
.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at top, rgba(84, 120, 146, 0.25), transparent 70%);
    opacity: 0.6;
    filter: blur(60px);
}

/* Subtle Stars/Particles */
.hero-bg-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 10%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 20% 80%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90% 90%, rgba(255,255,255,0.8), transparent);
    background-size: 500px 500px;
    opacity: 0.3;
    animation: starsFloat 60s linear infinite;
}

/* --- Hero Layout --- */
.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* --- Hero Copy --- */
.hero-copy {
    text-align: left;
    max-width: 640px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-copy.hero-loaded {
    opacity: 1;
    transform: none;
}

/* Badge/Eyebrow */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(84, 120, 146, 0.15);
    border: 1px solid rgba(84, 120, 146, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #a3bffa;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80; /* Green for active/connected */
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulseDot 2s infinite;
}

/* Typography */
.hero-copy h1 {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: white;
    /* Cleaner, bolder gradient */
    background: linear-gradient(135deg, #ffffff 30%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 50ch;
}

/* Pills (Features) */
.hero-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #cbd5e0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.pill i {
    color: var(--accent-color);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-cta .btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.hero-cta .btn span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.9;
    margin-top: 2px;
}

/* --- 3D Hero Visual --- */
.hero-visual {
    position: relative;
    height: 500px; /* Defined height for the 3D scene */
    perspective: 1000px; /* Essential for 3D effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-container {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The tilting plane */
.hero-3d-plane {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* Smooth follow */
    /* Rotate slightly initially for style */
    transform: rotateX(10deg) rotateY(-10deg);
}

/* Core Element (Center) */
.core-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%) translateZ(40px);
    background: rgba(18, 24, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 50px rgba(84, 120, 146, 0.4);
    z-index: 10;
}

.core-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.core-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(217, 142, 24, 0.3);
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: spin 10s linear infinite;
}

.core-pulse {
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(84, 120, 146, 0.2);
    border-radius: 50%;
    animation: pulseWave 3s ease-out infinite;
}

/* Orbiting Satellites */
.satellite {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transform-style: preserve-3d;
}

.satellite-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.satellite-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Specific Positions for Satellites using translateZ for depth */
.satellite--1 {
    /* Microsoft - Top Right */
    transform: translate(-50%, -50%) rotate(-30deg) translate(150px) rotate(30deg) translateZ(60px);
    animation: floatSat 6s ease-in-out infinite;
}
.satellite--1 .satellite-icon { color: #00a4ef; }

.satellite--2 {
    /* Salesforce - Bottom Right (Moved to prevent overlap) */
    transform: translate(-50%, -50%) rotate(45deg) translate(160px) rotate(-45deg) translateZ(40px);
    animation: floatSat 6s ease-in-out infinite 2s;
}
.satellite--2 .satellite-icon { color: #009edb; }

.satellite--3 {
    /* Slack - Left */
    transform: translate(-50%, -50%) rotate(180deg) translate(150px) rotate(-180deg) translateZ(80px);
    animation: floatSat 6s ease-in-out infinite 4s;
}
.satellite--3 .satellite-icon { color: #e01e5a; }


/* Floating Stats Cards */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    min-width: 160px;
}

.stat--1 {
    /* Savings */
    top: 0%;
    right: -5%;
    transform: translateZ(100px);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border-color: rgba(74, 222, 128, 0.3);
}

.stat--1 .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80; /* Success green */
    background: none;
    -webkit-text-fill-color: #4ade80;
    line-height: 1;
}
.stat--1 .stat-label {
    font-size: 0.75rem;
    color: #cbd5e0;
    line-height: 1.2;
    display: block;
}

.stat--2 {
    /* Ownership */
    bottom: 10%;
    left: 0%;
    transform: translateZ(80px);
    background: rgba(20, 20, 30, 0.9);
}

.stat--2 .stat-icon-box {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.stat--2 .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    display: block;
}
.stat--2 .stat-sub {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* Animations */

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

@keyframes starsFloat {
    0% { background-position: 0 0; }
    100% { background-position: -500px 500px; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes pulseWave {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes floatSat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -10px; }
}

/* Real Results / Stats Section */
.stats-section {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #1a202c;
    overflow: hidden;
}

.stats-section__pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(217, 142, 24, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 142, 24, 0.05) 1px, transparent 1px);
    background-size: 3rem 3rem;
    opacity: 0.6;
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    position: relative;
    z-index: 1;
}

.stats-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.stats-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.stats-divider {
    width: 90px;
    height: 4px;
    margin: 0.75rem auto 0;
    background: linear-gradient(90deg, #d98e18, #e89f2a);
    border-radius: 999px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 1.5);
    position: relative;
    z-index: 1;
}

.stat-card {
    --card-surface: linear-gradient(135deg, rgba(26, 32, 44, 0.82), rgba(18, 24, 38, 0.92));
    --icon-gradient: linear-gradient(135deg, #d98e18, #e89f2a);
    --stat-text-gradient: linear-gradient(90deg, #ffd9a0, #d98e18);
    --glow: radial-gradient(circle at 25% 25%, rgba(217, 142, 24, 0.2), transparent 55%);
    position: relative;
    padding: calc(var(--spacing-unit) * 2.25);
    border-radius: 20px;
    background: var(--card-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-card__glow {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glow);
    opacity: 0.9;
    filter: blur(18px);
    transition: opacity 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 159, 42, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 20px rgba(232, 159, 42, 0.25);
}

.stat-card:hover .stat-card__glow {
    opacity: 1;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--icon-gradient);
    color: #fff;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
}

.stat-value {
    font-size: clamp(1.9rem, 4vw, 2.35rem);
    font-weight: 800;
    background: var(--stat-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.stat-card .stat-value {
    text-align: left;
}

.stat-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 0.65rem;
}

.stat-card p {
    color: #cbd5e0;
    margin-bottom: 0;
}

.stat-card--sunrise {
    --icon-gradient: linear-gradient(135deg, #d98e18, #e89f2a);
    --stat-text-gradient: linear-gradient(90deg, #ffd9a0, #d98e18);
    --glow: radial-gradient(circle at 25% 25%, rgba(217, 142, 24, 0.25), transparent 55%);
}

.stat-card--teal {
    --icon-gradient: linear-gradient(135deg, #22d3ee, #2dd4bf);
    --stat-text-gradient: linear-gradient(90deg, #a1f0ff, #2dd4bf);
    --glow: radial-gradient(circle at 25% 25%, rgba(34, 211, 238, 0.18), transparent 55%);
}

.stat-card--violet {
    --icon-gradient: linear-gradient(135deg, #a78bfa, #6366f1);
    --stat-text-gradient: linear-gradient(90deg, #d4c3ff, #7c83ff);
    --glow: radial-gradient(circle at 25% 25%, rgba(124, 131, 255, 0.2), transparent 55%);
}

/* Features Section (Homepage) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.feature-card {
    background: rgba(26, 32, 44, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: calc(var(--spacing-unit) * 2.5);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        background: rgba(30, 41, 59, 0.8);
        border-color: rgba(217, 142, 24, 0.5);
        box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(217, 142, 24, 0.2);
    }

    .feature-card:hover i {
        text-shadow: 0 0 20px currentColor;
    }

    /* MODIFIED/NEW CSS FOR IMAGE ICONS IN FEATURE CARDS */
    .feature-card img.icon {
        display: block; /* Helps with margin auto centering */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: calc(var(--spacing-unit) * 1.5); /* Space below icon */
        height: 190px; /* Adjust this value as desired for icon height */
        width: auto; /* Allows width to scale proportionally to height */
        /*max-width: 120px;*/ /* Optional: to prevent very wide icons from overstretching */
        object-fit: contain; /* Ensures the entire image fits within the dimensions without cropping, maintaining aspect ratio */
    }

    .feature-card h3 {
        font-size: 1.5rem;
        color: var(--light-text);
        font-family: var(--font-primary);
        font-weight: 600;
        margin-bottom: 0.5rem; /* Added space between h3 and p */
    }

/* Services Overview Section with Background (Homepage) */
.services-overview-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.services-overview-section .overlay { /* Generic overlay class if needed */
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(18, 24, 38, 0.85);
    z-index:0;
}
.services-overview-section .container {
    position:relative;
    z-index:1;
}
.services-overview-section .section-title { /* For the "What We Build" title */
     font-family: var(--font-display);
     font-weight: 700;
}


/* Split Section (Homepage & About page) */
.split-section {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}
.split-section .content-column, .split-section .media-column {
    flex: 1;
}
.split-section.reverse {
    flex-direction: row-reverse;
}
.media-column img, .media-column video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    max-height: 400px;
}

.media-panel {
    position: relative;
    padding: calc(var(--spacing-unit) * 2.5);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(31, 42, 66, 0.95), rgba(15, 20, 31, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 35px 60px rgba(10, 13, 21, 0.45);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.media-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(217, 142, 24, 0.25), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.media-panel--strategy::before {
    background: radial-gradient(circle at 20% 10%, rgba(120, 148, 255, 0.3), transparent 55%),
                radial-gradient(circle at 80% 20%, rgba(217, 142, 24, 0.28), transparent 60%);
}

.media-panel--delivery::before {
    background: radial-gradient(circle at 10% 15%, rgba(24, 201, 181, 0.28), transparent 60%),
                radial-gradient(circle at 85% 20%, rgba(217, 142, 24, 0.25), transparent 65%);
}

.media-panel__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 1.5);
}

.media-panel__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.media-panel__title {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--light-text);
    font-size: 1.1rem;
}

.media-panel__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.media-panel i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 1.5);
    display: grid;
    gap: 0.35rem;
}

.metric-card--primary {
    background: linear-gradient(135deg, rgba(217, 142, 24, 0.18), rgba(52, 72, 124, 0.18));
    border: 1px solid rgba(217, 142, 24, 0.35);
}

.metric-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
}

.metric-card__value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-text);
}

.metric-card__meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: calc(var(--spacing-unit) * 1.25);
}

.mini-metric {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 1.1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-metric__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
}

.mini-metric__value {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-text);
    margin-top: 0.25rem;
}

.mini-metric__meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
}

.progress-bar {
    display: grid;
    gap: 0.45rem;
}

.progress-bar__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.progress-bar__track {
    position: relative;
    display: block;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-bar__fill {
    position: absolute;
    inset: 0;
    width: var(--fill);
    background: linear-gradient(90deg, rgba(217, 142, 24, 0.9), rgba(97, 146, 255, 0.9));
    border-radius: inherit;
}

.delivery-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(var(--spacing-unit) * 1.25);
}

.delivery-step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: calc(var(--spacing-unit) * 1.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 0.35rem;
    justify-items: center;
}

.delivery-step__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.55);
}

.delivery-step__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: calc(var(--spacing-unit) * 0.75);
}

.integration-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.integration-item i {
    font-size: 1rem;
}

.media-panel__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1);
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.media-panel__status {
    color: rgba(255, 255, 255, 0.7);
}

.media-panel__badge {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(217, 142, 24, 0.18);
    border: 1px solid rgba(217, 142, 24, 0.4);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* .content-column h2 handled by common typography rules */

/* Stats Section (Homepage) - Now used for value props */
#stats { background-color: var(--card-bg); }

/* Value Props Section */
#why-choose.value-props-section {
    position: relative;
    overflow: hidden;
    background: #121826;
    padding: calc(var(--spacing-unit) * 6) 0;
    isolation: isolate;
}

.value-props-container {
    position: relative;
    z-index: 1;
}

.value-props-glow {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
}

.value-props-glow--left {
    top: -6rem;
    left: 15%;
    background: rgba(84, 120, 146, 0.35);
}

.value-props-glow--right {
    bottom: -8rem;
    right: 12%;
    background: rgba(217, 142, 24, 0.38);
}

.value-props-header {
    text-align: center;
    margin: 0 auto calc(var(--spacing-unit) * 4);
    max-width: 760px;
}

.value-props-eyebrow {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-unit);
}

.value-props-title {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.value-props-subtitle {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 auto;
    line-height: 1.7;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-item h3 { /* The numbers OR value prop headings */
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
}
.stat-item i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item:hover i {
    transform: scale(1.1);
    color: #ffb74d !important;
}
/* .stat-item p is handled by common typography rules */

/* Pillars Grid - Three Main Pillars Layout */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: calc(var(--spacing-unit) * 2.5);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.pillar-card {
    position: relative;
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.85), rgba(17, 24, 39, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: calc(var(--spacing-unit) * 3);
    text-align: center;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    isolation: isolate;
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(84, 120, 146, 0.18), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(217, 142, 24, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(59, 130, 246, 0.16));
    border-radius: 24px;
    z-index: 0;
}

.pillar-featured {
    border: 1.5px solid rgba(249, 115, 22, 0.65);
    transform: scale(1.03);
    box-shadow: 0 35px 90px rgba(249, 115, 22, 0.15), 0 20px 60px rgba(0, 0, 0, 0.45);
}

.pillar-featured:hover {
    transform: translateY(-10px) scale(1.03);
}

.pillar-icon {
    position: relative;
    z-index: 1;
    width: 5rem;
    height: 5rem;
    margin: 0 auto calc(var(--spacing-unit) * 2);
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: grid;
    place-items: center;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pillar-icon--featured {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.4);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 18px 48px rgba(37, 99, 235, 0.45);
}

.pillar-icon i {
    font-size: 2.4rem;
    color: #fff;
}

.pillar-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.65rem;
    color: var(--light-text);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 1.25);
}

.pillar-featured h3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.75;
    color: #cbd5e0;
    margin: 0 auto;
    max-width: 320px;
}

/* Benefits Row - Supporting Benefits */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--spacing-unit) * 2.5);
    max-width: 960px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--spacing-unit) * 1.5);
    padding: calc(var(--spacing-unit) * 2.25);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.benefit-item:hover {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.08);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.4);
}

.benefit-item i {
    font-size: 1.4rem;
    color: #fff;
}

.benefit-item h4 {
    font-size: 1.15rem;
    color: var(--light-text);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 0.45rem;
    margin-top: 0;
}

.benefit-item p {
    font-size: 0.98rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

/* Partners Section (Homepage) */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
}
.partners-logos img {
    max-height: 60px;
    max-width: 150px;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}
.partners-logos img:hover {
    filter: grayscale(0%) opacity(1);
}

/* CTA Section (Homepage) */
.cta-ribbon {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(12, 18, 32, 0.94));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-ribbon__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(84, 119, 146, 0.25), transparent 38%),
                radial-gradient(circle at 85% 10%, rgba(217, 142, 24, 0.22), transparent 40%),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 900px) {
    .cta-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.cta-copy {
    display: grid;
    gap: 0.9rem;
    max-width: 720px;
}

.cta-ribbon h2 {
    margin: 0;
}

.cta-ribbon p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.cta-panel {
    background: rgba(26, 32, 44, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 1rem;
}

.cta-panel__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(217, 119, 6, 0.12));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.cta-panel__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    display: grid;
    place-items: center;
    color: #0f172a;
    font-size: 1.2rem;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.panel-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.panel-headline {
    margin: 0;
    color: #e2e8f0;
}

.cta-highlights {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    font-weight: 600;
}

.highlight-chip i {
    color: var(--accent-color);
}

/* ---------------------------- */
/* ABOUT PAGE SPECIFIC STYLES   */
/* ---------------------------- */
.page-header { /* For About, Contact, etc. subpages */
    background-color: var(--card-bg);
    padding: calc(var(--spacing-unit) * 3) 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
}
/* .page-header h1 handled by general H1 rules */
.page-header .breadcrumb a {
    color: var(--accent-color);
}
.page-header .breadcrumb span { /* The ">" separator */
    color: #777;
    margin: 0 0.5em;
}

.about-content { /* Main content wrapper for about page */
    padding: calc(var(--spacing-unit) * 2) 0;
}
.about-section { /* Individual content blocks on about page */
    margin-bottom: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 2);
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.tldr-box {
    margin-bottom: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 2);
    background: linear-gradient(135deg, rgba(217, 142, 24, 0.12) 0%, rgba(84, 119, 146, 0.15) 100%);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.tldr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
}
.tldr-kicker::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 2px;
    background: var(--accent-color);
}
.tldr-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    color: var(--light-text);
    font-weight: 700;
}
.tldr-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: calc(var(--spacing-unit) * 0.75);
}
.tldr-list li {
    color: #d1d9e6;
    font-size: 1rem;
    line-height: 1.7;
}
.tldr-list strong {
    color: var(--accent-color);
}
/* .about-section h2 handled by common typography rules */
.about-section h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e2e8f0;
    margin: 1.25rem 0 0.75rem;
    letter-spacing: 0.01em;
    padding-left: 0.85rem;
    border-left: 3px solid var(--border-color);
}
.about-section img.content-image { /* For images within .about-section */
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-unit) auto;
    display: block;
}
.founder-bio {
    padding: calc(var(--spacing-unit) * 2.5);
}
.founder-bio__grid {
    display: grid;
    gap: calc(var(--spacing-unit) * 2);
    align-items: center;
}
.founder-bio__media {
    margin: 0;
    display: flex;
    justify-content: center;
}
.founder-bio__photo {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background: var(--card-bg-alt);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}
.founder-bio__content {
    max-width: 640px;
}
.founder-bio__role {
    margin: 0.35rem 0 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a0aec0;
}
.founder-bio__text p {
    margin-bottom: 0.9rem;
    color: #d9e2f1;
}
.founder-bio__text p:last-child {
    margin-bottom: 0;
}
.founder-credibility {
    list-style: none;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}
.founder-credibility li {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
    font-size: 0.85rem;
}

@media (min-width: 900px) {
    .founder-bio__grid {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
        align-items: start;
    }
    .founder-bio__media {
        justify-content: flex-start;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: var(--spacing-unit);
}
.team-member-card {
    background-color: var(--card-bg-alt);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.team-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-unit);
    border: 3px solid var(--accent-color);
}
/* .team-member-card h3 handled by common typography rules */
.team-member-card .role {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.values-list {
    list-style: none;
    padding-left: 0;
}
.values-list li {
    margin-bottom: calc(var(--spacing-unit)*0.75);
    padding-left: calc(var(--spacing-unit)*1.5);
    position: relative;
}
.values-list li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free", "FontAwesome"; /* Add fallback for older FA versions */
    font-weight: 900; /* Required for solid icons in FA5 */
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 4px; /* Adjust vertical alignment as needed */
}

.academy-section {
    padding: calc(var(--spacing-unit) * 6) 0;
    background: linear-gradient(135deg, rgba(84, 119, 146, 0.08), rgba(217, 142, 24, 0.06));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.academy-section .section-kicker {
    font-family: var(--font-primary);
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.academy-list {
    list-style: none;
    margin: calc(var(--spacing-unit) * 1.5) 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.academy-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1rem;
    border-radius: 6px;
    font-weight: 500;
}

.academy-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.academy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    display: grid;
    gap: 0.75rem;
}

.academy-card__eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
}

.academy-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
}

.academy-card__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.academy-card .stat-value {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
}

.academy-card .stat-label {
    font-size: 0.95rem;
    color: #c3ccda;
}

/* ---------------------------- */
/* ACADEMY PAGE                 */
/* ---------------------------- */
.academy-hero {
    padding: calc(var(--spacing-unit) * 6) 0;
    background: radial-gradient(circle at 10% 20%, rgba(217, 142, 24, 0.14), transparent 28%),
                radial-gradient(circle at 80% 0%, rgba(84, 119, 146, 0.2), transparent 30%),
                linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(22, 30, 48, 0.9));
    position: relative;
    overflow: hidden;
}

.academy-hero .section-kicker {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.academy-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.academy-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.academy-visual {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    display: grid;
    gap: 1rem;
    position: relative;
}

.ladder-step {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(84, 119, 146, 0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.ladder-step:nth-child(2) {
    background: rgba(217, 142, 24, 0.1);
}

.ladder-step:nth-child(3) {
    background: rgba(217, 142, 24, 0.18);
}

.step-label {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.step-text {
    color: var(--light-text);
    margin: 0;
}

.ladder-connector {
    border-top: 1px dashed var(--border-color);
    padding-top: 0.75rem;
    text-align: center;
    font-size: 0.95rem;
    color: #c3ccda;
}

.ladder-legend {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: #c3ccda;
    font-size: 0.95rem;
}

.ladder-legend i {
    color: var(--accent-color);
    font-size: 0.65rem;
}

.value-prop {
    padding: calc(var(--spacing-unit) * 5) 0;
}

.value-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.value-card h3 {
    margin: 0.4rem 0 0;
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(217, 142, 24, 0.12);
    display: grid;
    place-items: center;
    color: var(--accent-color);
}

.tiers-section {
    padding: calc(var(--spacing-unit) * 5) 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(22, 30, 48, 0.95));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tier-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tier-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 12px;
    display: grid;
    gap: 0.65rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.tier-card .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
}

.tier-card .audience,
.tier-card .duration {
    color: #c3ccda;
    font-weight: 600;
}

.tier-card .goal {
    margin: 0;
}


.accordion-section {
    padding: calc(var(--spacing-unit) * 5) 0;
}

.accordion {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.accordion details {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.accordion summary {
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion ul {
    margin: 0.75rem 0 0 1rem;
    color: #c3ccda;
    display: grid;
    gap: 0.4rem;
}

.cta-banner {
    padding: calc(var(--spacing-unit) * 4) 0;
    background: linear-gradient(135deg, rgba(84, 119, 146, 0.16), rgba(217, 142, 24, 0.12));
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .academy-visual {
        margin-top: 1.5rem;
    }

    .academy-hero {
        padding-top: calc(var(--spacing-unit) * 5);
    }
}

/* ---------------------------- */
/* AI READINESS PAGE            */
/* ---------------------------- */
.readiness-hero {
    padding: calc(var(--spacing-unit) * 6) 0;
    background: radial-gradient(circle at 15% 15%, rgba(217, 142, 24, 0.12), transparent 30%),
                radial-gradient(circle at 85% 5%, rgba(84, 119, 146, 0.18), transparent 35%),
                linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(22, 30, 48, 0.92));
}

.readiness-hero .section-kicker {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.readiness-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.readiness-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.readiness-highlights {
    margin-bottom: 1.5rem;
}

.readiness-hero .hero-note {
    margin-top: 1.25rem;
    color: #c3ccda;
    font-weight: 500;
}

.readiness-step {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.readiness-glance {
    padding: calc(var(--spacing-unit) * 4) 0;
}

.glance-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: calc(var(--spacing-unit) * 2.5);
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
    display: grid;
    gap: 1rem;
}

.glance-box--compact {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.glance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem 1.25rem;
}

.readiness-funding {
    padding: calc(var(--spacing-unit) * 4) 0;
}

/* ---------------------------- */
/* CONTACT SECTION (HOMEPAGE)   */
/* AND CONTACT FORM ELEMENTS    */
/* ---------------------------- */
#contact, #readiness { /* The section wrapper if used on homepage */
    /* Add specific background or padding if needed for the contact section on homepage */
}
#contact .contact-wrapper, #readiness .contact-wrapper { /* A div to center content within the contact section */
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
#contact .contact-info-box, #readiness .contact-info-box {
    margin-top: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
    padding:var(--spacing-unit);
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
#contact .contact-info-box p, #readiness .contact-info-box p { margin-bottom: 0.5rem; }

/* Basic Form Styling (can be expanded) */
form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left; /* Ensure labels are left-aligned even if form is centered */
}
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg); /* Darker than card, for contrast */
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--light-text);
    margin-bottom: var(--spacing-unit);
    font-family: var(--font-primary);
    font-size: 1rem;
}
form textarea {
    resize: vertical;
    min-height: 120px;
}
form button[type="submit"] {
    /* Uses .btn styles */
    margin-top: var(--spacing-unit);
}


/* -------------------- */
/* FOOTER               */
/* -------------------- */
.site-footer {
    background-color: var(--card-bg);
    color: #a0aec0;
    padding: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 1);
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
}
/* .footer-column h4 handled by common typography */
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 0.5rem;
}
.footer-column ul li a {
    color: #a0aec0;
}
.footer-column ul li a:hover {
    color: var(--accent-color);
}
.social-links a {
    font-size: 1.5rem;
    margin-right: var(--spacing-unit);
    color: #a0aec0;
}
.social-links a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-unit);
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

/* -------------------- */
/* RESPONSIVE STYLES    */
/* -------------------- */
@media (max-width: 768px) {
    :root {
        --spacing-unit: 0.875rem; /* Slightly smaller spacing on mobile */
    }

    .menu-toggle {
        display: block;
        padding: 0.5rem;
        -webkit-tap-highlight-color: transparent;
        min-width: 44px;
        min-height: 44px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: rgba(26, 32, 44, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: var(--spacing-unit);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease-out;
        z-index: 1100;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav.active { display: flex; }
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    .main-nav ul li {
        margin: 0;
        padding: calc(var(--spacing-unit) * 0.5) 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: block;
        padding: calc(var(--spacing-unit) * 0.75);
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Touch-optimized buttons */
    .btn {
        min-height: 48px;
        padding: calc(var(--spacing-unit)*0.9) calc(var(--spacing-unit)*2.5);
        font-size: 0.9rem;
    }

    /* Hero mobile optimization */
    .hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        text-align: center;
        margin: 0 auto;
    }
    .hero-copy h1 {
        font-size: clamp(2.1rem, 6vw, 2.6rem);
        line-height: 1.2;
    }
    .page-header h1 { font-size: 2rem; }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-copy > p {
        font-size: 1rem;
        line-height: 1.6;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-highlights {
        margin: 0 auto;
        text-align: left;
        max-width: 420px;
    }
    .hero-visual {
        order: -1;
        min-height: 320px;
        margin-bottom: calc(var(--spacing-unit) * 3);
        /* Allow visual to be seen but contain the layout width */
        overflow: visible;
        width: 100%;
        display: flex;
        justify-content: center;
        /* Disable 3D tilt on mobile to save battery and performance */
        transform: none !important;
        perspective: none;
    }

    /* 3D Hero Mobile Scale Down */
    .hero-3d-plane {
        /* Reduce size to fit mobile screens */
        width: 280px;
        height: 280px;
        /* Just show a static view */
        transform: scale(0.8);
        animation: none;
    }

    /* Adjust Microsoft Satellite on Mobile to prevent overlap with Stat Card */
    .satellite--1 {
        transform: translate(-50%, -50%) rotate(10deg) translate(150px) rotate(-10deg) translateZ(60px);
    }

    /* Better spacing on mobile */
    section {
        padding: calc(var(--spacing-unit) * 3) 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: calc(var(--spacing-unit) * 2.5);
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    /* Split sections mobile */
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
    }
    .media-column, .content-column {
        width: 100%;
    }
    .media-column { order: -1; }
    .split-section.reverse .media-column { order: -1; }

    .media-panel {
        padding: calc(var(--spacing-unit) * 2);
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .delivery-steps {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .media-panel__footer {
        justify-content: center;
        text-align: center;
    }

    .media-panel__badge {
        width: 100%;
        text-align: center;
    }

    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
    }

    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
    }

    /* Pillars grid mobile */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }

    .pillar-featured {
        transform: scale(1);
    }

    .pillar-featured:hover {
        transform: translateY(-8px) scale(1);
    }

    .pillar-icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .pillar-icon i {
        font-size: 2rem;
    }

    .pillar-card h3 {
        font-size: 1.5rem;
    }

    /* Benefits row mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }

    .benefit-item {
        padding: calc(var(--spacing-unit) * 2);
    }

    .benefit-icon {
        width: 2.75rem;
        height: 2.75rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: calc(var(--spacing-unit) * 2);
    }
    .social-links { text-align: center; }

    /* Sticky CTA mobile */
    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta .btn {
        padding: calc(var(--spacing-unit)*0.7) calc(var(--spacing-unit)*1.5);
        font-size: 0.85rem;
    }

    /* Scroll indicator mobile */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
    }

    /* Improved touch targets */
    a, button, .btn {
        -webkit-tap-highlight-color: rgba(217, 142, 24, 0.2);
    }

    /* Reduce motion for mobile if preferred */
    @media (prefers-reduced-motion: reduce) {
        .feature-card:hover {
            transform: none;
        }
        .btn:hover {
            transform: none;
        }
    }
}

/* -------------------- */
/* SCROLL ANIMATIONS    */
/* -------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Default state before animation */
.feature-card,
.stat-item,
.section-title,
.about-section,
.team-member-card {
    opacity: 0;
    transform: translateY(30px);
}

/* Animated state */
.feature-card.animate-in,
.stat-item.animate-in,
.section-title.animate-in,
.about-section.animate-in,
.team-member-card.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--animation-delay, 0s);
}

/* Split sections animations */
.split-section {
    opacity: 0;
}

.split-section.animate-in .content-column {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.split-section.animate-in .media-column {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.split-section.reverse.animate-in .content-column {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.split-section.reverse.animate-in .media-column {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.split-section.animate-in {
    opacity: 1;
}

/* Hero content animation */
.hero-copy {
    will-change: opacity, transform;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Button ripple effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* -------------------- */
/* ENHANCED HERO EFFECTS */
/* -------------------- */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 0;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* -------------------- */
/* STICKY CTA BUTTON    */
/* -------------------- */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sticky-cta .btn {
    box-shadow: 0 10px 30px rgba(217, 142, 24, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.sticky-cta .btn:hover {
    animation: none;
}

.sticky-cta.hide-for-footer {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
}

    /* Add this to your existing CSS file */

    .agent-tags-container {
        margin-top: 10px; /* Adjust spacing as needed */
        display: flex;
        flex-wrap: wrap; /* Allow tags to wrap to the next line */
        gap: 5px; /* Space between tags */
    }

    .agent-tag {
        background-color: #555; /* A neutral dark background for tags */
        color: #eee; /* Light text color for tags */
        padding: 3px 8px; /* Small padding */
        border-radius: 12px; /* Rounded corners */
        font-size: 0.75em; /* Smaller font size */
        display: inline-block; /* Keep tags inline but allow padding */
        line-height: 1.2;
    }

    /* Example of card styling (you likely have your own) */
    .agent-card {
        background-color: #2d3748; /* Example card background */
        color: #f0f4f8; /* Example card text color */
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        cursor: pointer; /* Indicate it's clickable */
        /* Add other styles from your design */
    }

    .agent-icon-initial {
        /* Your existing styles for icon */
        width: 40px;
        height: 40px;
        background-color: var(--accent-color, #d98e18); /* Fallback accent color */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.5em;
        font-weight: bold;
        margin-bottom: 10px; /* Or use flexbox for layout */
    }

    .agent-info h3.agent-name {
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.2em;
    }

    .agent-info h4.agent-title {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 0.9em;
        font-style: italic;
        color: #adb5bd; /* Softer color for title */
    }

    .agent-info p.agent-short-description {
        font-size: 0.9em;
        margin-bottom: 10px;
        color: #adb5bd; /* Softer color for description */
    }

}
/* Services Section Background */
.services-overview-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, #1a2333 0%, #0b0f19 90%);
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(84, 120, 146, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(84, 120, 146, 0.03) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%);
}

.services-layer {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.services-eyebrow {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.services-divider {
    width: 90px;
    height: 4px;
    margin: 0.5rem auto 0;
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-radius: 999px;
}

.btn-gradient {
    background: linear-gradient(90deg, #f97316, #ea580c);
    border-color: transparent;
    color: #0f172a;
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #ea580c, #c2410c);
    color: #0f172a;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.service-row--reverse {
    grid-template-columns: 1fr;
}

.service-row--reverse > :first-child {
    order: 2;
}

.service-row--reverse > :last-child {
    order: 1;
}

@media (min-width: 992px) {
    .service-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-row--reverse {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-row--reverse > :first-child {
        order: 1;
    }

    .service-row--reverse > :last-child {
        order: 2;
    }
}

.service-copy {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-label {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.service-copy h3 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #fff;
    margin: 0;
}

.service-body {
    color: #cbd5e1;
    line-height: 1.7;
}

.service-callout {
    display: flex;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(249, 115, 22, 0.35);
    background: rgba(249, 115, 22, 0.08);
    border-radius: 14px;
    color: #e2e8f0;
}

.callout-icon {
    color: #f97316;
    font-weight: 700;
    margin-top: 0.1rem;
}

.callout-title {
    color: #f97316;
    font-weight: 700;
    margin-right: 0.25rem;
}

.callout-copy {
    color: #e2e8f0;
}

.service-card {
    background: linear-gradient(145deg, rgba(31, 42, 66, 0.95), rgba(15, 20, 31, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: 0 25px 60px rgba(10, 13, 21, 0.45);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 10%, rgba(249, 115, 22, 0.12), transparent 55%),
                radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.14), transparent 60%);
}

.service-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

.card-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.card-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.service-card i {
    font-size: 1.8rem;
    color: #f97316;
}

.academy-service-card .academy-card-summary {
    color: #cbd5e1;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.academy-service-card .stat-value {
    display: block;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.academy-service-card .stat-label {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.academy-service-card .academy-card__stats {
    align-items: start;
    text-align: center;
}

.academy-service-card .academy-card__stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.training-paths {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.training-path {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.35);
    background: rgba(249, 115, 22, 0.1);
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
}

.metric-highlight {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(59, 130, 246, 0.18));
    border: 1px solid rgba(249, 115, 22, 0.35);
    margin-bottom: 1.25rem;
}

.metric-label {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.metric-value {
    color: #fff;
    font-weight: 800;
    font-size: 2.6rem;
    margin: 0.1rem 0;
}

.metric-meta {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.1rem;
}

.mini-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.9rem;
}

.mini-metric__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-metric__value {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
}

.mini-metric__meta {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.progress-bar__track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    display: block;
}

.progress-bar__fill {
    background: linear-gradient(90deg, #f97316, #3b82f6);
}

.delivery-card::before {
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.18), transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.18), transparent 55%);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

.timeline-step {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.timeline-week {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
}

.timeline-phase {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.integration-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.1rem;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f97316;
    display: inline-block;
}

.service-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-badge {
    padding: 0.45rem 0.85rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.services-subheader {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.services-subheader h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.services-subheader p {
    color: #cbd5e1;
    margin: 0;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .service-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service-feature-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.75), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #0f172a;
    font-size: 1.4rem;
}

.service-feature-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.service-feature-card p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.feature-meta {
    color: #f97316;
    font-weight: 700;
    font-size: 0.95rem;
}

.feature-cta {
    width: 100%;
    text-align: center;
    border-color: #475569;
}

/* Contact & Readiness Section */
.readiness-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(12, 18, 32, 0.8));
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    position: relative;
}

.readiness-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(84, 120, 146, 0.15), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(217, 142, 24, 0.12), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.readiness-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    position: relative;
    z-index: 1;
}

.readiness-eyebrow {
    color: #f97316;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #f6ad55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.readiness-divider {
    width: 80px;
    height: 4px;
    border-radius: 999px;
    margin: 0.5rem auto 1.5rem;
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.readiness-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.readiness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .readiness-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.readiness-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(234, 88, 12, 0.18));
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cta-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.cta-card p {
    color: #e2e8f0;
    line-height: 1.7;
}

.contact-details {
    background: linear-gradient(135deg, rgba(20, 27, 44, 0.85), rgba(10, 14, 25, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.contact-details h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
}

.detail-icon--orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.detail-icon--blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.detail-icon--green { background: linear-gradient(135deg, #22c55e, #16a34a); }

.detail-label {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.detail-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-link:hover { color: #f59e0b; }

.detail-value {
    color: #e2e8f0;
    font-weight: 600;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.badge-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    padding: 1rem;
    backdrop-filter: blur(6px);
}

.badge-value {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.text-gradient-brand {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.contact-form-card {
    background: linear-gradient(135deg, rgba(20, 27, 44, 0.9), rgba(11, 16, 28, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
}

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

.form-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: #cbd5e1;
    font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select,
#contactFormHtml input,
#contactFormHtml textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 24, 39, 0.7);
    color: #fff;
    transition: all 0.25s ease;
    font-size: 1rem;
}

.form-field textarea { resize: none; }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
#contactFormHtml input:focus,
#contactFormHtml textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(217, 142, 24, 0.15);
    background: rgba(17, 24, 39, 0.9);
}

.btn-gradient {
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: #fff;
    border: none;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: auto;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 50px rgba(234, 88, 12, 0.45);
}

.btn-gradient:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.25);
}

.btn-icon { display: inline-flex; }
.full-width { width: 100%; }

.form-status {
    text-align: center;
    margin-top: 0.75rem;
    min-height: 1.2em;
    font-weight: 700;
}

.privacy-note {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section-modern {
    position: relative;
    background: #0b1221;
    overflow: hidden;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .about-section-modern {
        padding: 7rem 0;
    }
}

.about-bg-blur {
    position: absolute;
    width: 18rem;
    height: 18rem;
    filter: blur(90px);
    opacity: 0.35;
    z-index: 0;
}

.about-bg-blur--left {
    top: 10%;
    left: -6rem;
    background: #547792;
}

.about-bg-blur--right {
    bottom: 8%;
    right: -6rem;
    background: #d98e18;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 3rem;
    }
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f97316;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
    margin-bottom: 0.75rem;
    color: #fff;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.about-body {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(84, 120, 146, 0.12);
    color: #e2e8f0;
    border: 1px solid rgba(84, 120, 146, 0.35);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-badge--green {
    background: rgba(22, 163, 74, 0.12);
    border-color: rgba(22, 163, 74, 0.35);
    color: #bbf7d0;
}

.about-badge--orange {
    background: rgba(234, 88, 12, 0.12);
    border-color: rgba(234, 88, 12, 0.35);
    color: #fed7aa;
}

.about-cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-visual {
    position: relative;
}

.about-visual__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.12), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(84, 120, 146, 0.18), transparent 60%);
    filter: blur(18px);
    z-index: 0;
}

.about-image-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 33, 0) 0%, rgba(12, 18, 33, 0.85) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.trust-card {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(145deg, rgba(14, 21, 36, 0.85), rgba(18, 27, 46, 0.85));
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.trust-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #e2e8f0;
    font-weight: 700;
}

.trust-detail {
    color: #94a3b8;
    margin-top: 0.35rem;
    line-height: 1.6;
}

/* CTA Section Update */
#cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

#cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(84, 120, 146, 0.15), transparent 60%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#cta h2 {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- AI Tools Page --- */
.ai-tools-hero {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: radial-gradient(circle at top, rgba(76, 29, 149, 0.25), transparent 55%), #0b1221;
    overflow: hidden;
}

.ai-tools-panel {
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ai-tools-panel__header {
    display: grid;
    gap: 0.4rem;
}

.ai-tools-panel__list {
    display: grid;
    gap: 1rem;
}

.ai-tools-panel__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: flex-start;
    color: #e2e8f0;
}

.panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.25));
    border: 1px solid rgba(249, 115, 22, 0.4);
    display: grid;
    place-items: center;
    color: #fbbf24;
}

.item-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--light-text);
}

.ai-tools-panel__footer {
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.ai-tools-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.ai-tools-section--tint {
    background: rgba(15, 23, 42, 0.6);
}

.ai-tools-section--dark {
    background: #0b1221;
}

.ai-tools-split {
    align-items: center;
}

.ai-tools-highlight {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: clamp(1.4rem, 3vw, 2rem);
    display: grid;
    gap: 1rem;
}

.ai-tools-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ai-tools-note {
    color: #cbd5e1;
    margin: 0;
}

.ai-tools-steps {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-bottom: 2.5rem;
}

.ai-tools-step {
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
}

.ai-tools-step .step-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.ai-tools-guarantees {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    color: #e2e8f0;
}

.guarantee-card h4 {
    margin-top: 0;
}

.ai-tools-usecases {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.usecase-card {
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
}

.usecase-card h3 {
    margin-top: 0;
}

.ai-tools-form-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    display: grid;
    gap: 0.75rem;
}

.section-intro {
    color: #cbd5e1;
    margin: 0;
}

.ai-tools-form-card {
    max-width: 760px;
    margin: 0 auto;
}
