:root {
    --color-bg: #0a0a0f;
    /* Deep charcoal black */
    --color-bg-alt: #0d0d14;
    --color-surface: rgba(18, 18, 28, 0.75);
    /* Darker frosted glass */
    --color-surface-strong: rgba(14, 14, 22, 0.95);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-highlight: rgba(255, 255, 255, 0.18);
    --color-text: #f0f2ff;
    --color-muted: rgba(200, 205, 230, 0.7);
    --color-accent: #00b4ff;
    /* Cyber Blue */
    --color-accent-alt: #ff6b2c;
    /* Electric Orange */
    --color-accent-glow: rgba(0, 180, 255, 0.4);
    --color-accent-alt-glow: rgba(255, 107, 44, 0.4);
    --gradient-primary: linear-gradient(135deg, #00b4ff 0%, #ff6b2c 100%);
    --gradient-accent: linear-gradient(135deg, #00b4ff 0%, #00d4aa 100%);
    --gradient-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --max-width: 1240px;
    --header-height: 96px;
    --transition-base: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: radial-gradient(circle at 15% -10%, var(--color-accent-glow), transparent 40%),
        radial-gradient(circle at 85% 10%, var(--color-accent-alt-glow), transparent 45%),
        var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.7;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.has-js.animates {
    scroll-behavior: smooth;
}

body.has-js.animates .hero-content>* {
    opacity: 0;
    transform: translateY(32px);
}

body.has-js.animates .site-header {
    opacity: 0;
    transform: translateY(-40px);
}

body.no-js .reveal,
body.no-js .hero-content>*,
body.no-js .site-header {
    opacity: 1 !important;
    transform: none !important;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

a:hover,
a:focus {
    color: var(--color-accent-alt);
}

a:focus-visible {
    outline: 2px solid var(--color-accent-alt);
    outline-offset: 4px;
}

ul,
ol {
    list-style: none;
}

p+p {
    margin-top: 1.25rem;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 3rem;
    /* Increased padding */
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 32px);
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text);
    color: #000;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-size: 0.95rem;
    z-index: 10000;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 9000;
    will-change: transform, background;
    /* Hardware acceleration hint */
    transition: background 0.4s ease, transform 0.4s ease, padding 0.4s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 15, 0.7);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity var(--transition-base), border-color var(--transition-base);
    z-index: -1;
}

.site-header.is-scrolled {
    background: rgba(3, 4, 10, 0.85);
    /* Darker scroll state */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    height: calc(var(--header-height) - 16px);
    /* Shrink on scroll */
}

.site-header.is-scrolled::after {
    opacity: 0;
    /* Let the main header background take over */
}

.primary-nav.is-open::before {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand img {
    height: 52px;
    /* Slightly larger for better presence */
    width: auto;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    /* Transparent glass effect */
    backdrop-filter: blur(8px);
    /* Blur the background behind it */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Subtle highlight border */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    /* Softer, deeper shadow */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover img,
.brand:focus img {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    /* Brighter on hover */
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.15);
    /* Glow on hover */
}

.brand-wordmark {
    font-weight: 700;
    letter-spacing: 0.05em;
    /* Tighter tracking */
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 18px;
    margin: 0 auto;
    background: var(--color-text);
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    /* Thinner underline */
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.header-cta {
    padding: 0.8rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--color-text);
    color: var(--color-bg);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-cta:hover,
.header-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

main {
    padding-top: calc(var(--header-height) + 40px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    /* More breathing room */
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#interactive-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.65;
    pointer-events: none;
}

.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.8);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, var(--color-accent-glow), transparent 40%),
        radial-gradient(circle at 80% 20%, var(--color-accent-alt-glow), transparent 45%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.4) 10%, rgba(10, 10, 15, 0.92) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    /* Wider text area */
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-alt);
    margin-bottom: -0.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff 20%, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: var(--color-muted);
    font-size: 1.25rem;
    /* Larger body text */
    max-width: 90%;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(106, 17, 203, 0.5);
    transform: translateY(-3px);
}

.btn-surface {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-surface:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn[disabled],
button[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.hero-meta {
    display: grid;
    gap: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-badges span {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.hero-banner {
    position: relative;
    margin-top: 1.25rem;
    padding: 1.65rem 2.1rem;
    border-radius: 26px;
    border: 1px solid var(--color-border-highlight);
    background: linear-gradient(135deg, rgba(20, 24, 50, 0.6), rgba(10, 14, 32, 0.4));
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: -60% -40% auto;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 65%);
    opacity: 0.45;
    animation: heroBannerPulse 6s ease-in-out infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: auto -35% -80%;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 215, 201, 0.55) 0%, rgba(0, 215, 201, 0) 65%);
    opacity: 0.35;
    animation: heroBannerPulse 7s ease-in-out infinite reverse;
}

.hero-banner-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.85;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 1.35rem;
}

.hero-banner-top {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-banner-badge {
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    background: rgba(5, 6, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.24);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.hero-banner-text {
    font-size: 1.02rem;
    color: rgba(233, 236, 255, 0.9);
}

.hero-banner-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.4rem;
}

.hero-banner-metrics>div {
    padding: 0.5rem 0;
}

.hero-banner-metrics strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--color-text);
}

.hero-banner-metrics span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.92rem;
    color: rgba(233, 236, 255, 0.75);
}

@keyframes heroBannerPulse {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.45;
    }

    50% {
        transform: translate3d(15px, 12px, 0) scale(1.08);
        opacity: 0.8;
    }
}

.hero-metrics dt {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-alt);
}

.hero-metrics dd {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.impact {
    background: rgba(10, 14, 32, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.impact-intro {
    display: grid;
    gap: 1.5rem;
}

.impact-lede {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.impact-audit {
    padding: 1.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    gap: 1rem;
}

.impact-audit h3 {
    font-size: 1.1rem;
}

.impact-audit ul {
    display: grid;
    gap: 0.6rem;
    color: rgba(233, 236, 255, 0.8);
    font-size: 0.95rem;
}

.impact-metrics {
    display: grid;
    gap: 1.5rem;
}

.impact-card {
    padding: 1.9rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: grid;
    gap: 0.9rem;
    max-width: 320px;
}

.impact-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.impact-label {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(233, 236, 255, 0.65);
}

.impact-value {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: var(--color-accent-alt);
}

.impact-caption {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.section {
    padding: 8rem 0;
    /* Significant increase in whitespace */
}

.section-heading {
    max-width: 760px;
    margin-bottom: 4.5rem;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.45em;
    font-size: 0.8rem;
    color: var(--color-accent-alt);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-lede {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.partners {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(8, 12, 30, 0.55);
    backdrop-filter: blur(16px);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.service-card {
    position: relative;
    padding: 2.5rem 2.25rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    min-height: 340px;
    display: grid;
    gap: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--color-muted);
    font-size: 0.98rem;
}

.service-card ul {
    display: grid;
    gap: 0.55rem;
    color: rgba(233, 236, 255, 0.8);
    font-size: 0.92rem;
}

.service-index {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.35);
}

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

.package-card {
    position: relative;
    display: grid;
    gap: 1.4rem;
    padding: 2.5rem 2.25rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: 0 25px 45px rgba(8, 12, 30, 0.35);
    backdrop-filter: blur(18px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.package-card:hover,
.package-card:focus-within {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.package-card.highlight {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(5, 6, 15, 0.6));
    border: 1px solid rgba(108, 92, 231, 0.3);
    box-shadow: 0 25px 50px rgba(108, 92, 231, 0.15);
}

.package-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.package-header h3 {
    font-size: 1.4rem;
}

.package-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.package-price span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(233, 236, 255, 0.65);
}

.package-tagline {
    color: var(--color-muted);
    font-size: 0.98rem;
}

.package-features {
    display: grid;
    gap: 0.55rem;
    padding-left: 1rem;
    color: rgba(233, 236, 255, 0.85);
    font-size: 0.92rem;
}

.package-features li {
    position: relative;
    padding-left: 0.75rem;
}

.package-features li::before {
    content: '•';
    position: absolute;
    left: -0.75rem;
    color: var(--color-accent-alt);
}

.package-card .btn {
    justify-self: flex-start;
}

.pricing-footnote {
    margin-top: 3rem;
    text-align: center;
    color: rgba(233, 236, 255, 0.7);
    font-size: 0.95rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Audience Grid - Two column layout */
.audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.audience-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.audience-industries span {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 180, 255, 0.12);
    border: 1px solid rgba(0, 180, 255, 0.25);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.audience-industries span:hover {
    background: rgba(0, 180, 255, 0.2);
    border-color: var(--color-accent);
}

/* Pricing Two Column Grid */
.pricing-two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    background: var(--gradient-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 20px var(--color-accent-glow);
    z-index: 10;
}

/* Package Ownership Section */
.package-ownership {
    margin-top: auto;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.2);
    display: grid;
    gap: 0.25rem;
}

.package-ownership strong {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.package-ownership span {
    color: var(--color-muted);
    font-size: 0.85rem;
}

/* Highlighted Package Card */
.package-card.highlight {
    border-color: rgba(0, 180, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 60px var(--color-accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.package-card.highlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: var(--gradient-primary);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 900px) {

    .audience-grid,
    .pricing-two-col,
    .pricing-three-col {
        grid-template-columns: 1fr;
    }
}

/* 3-Column Pricing Grid */
.pricing-three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .pricing-three-col {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Add-Ons Section */
.addons-section {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.addons-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.addons-subtitle {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

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

.addon-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.addon-item:hover {
    background: rgba(0, 180, 255, 0.08);
    border-color: rgba(0, 180, 255, 0.2);
    transform: translateY(-2px);
}

.addon-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 700;
}

.addon-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.addon-desc {
    color: var(--color-muted);
    font-size: 0.8rem;
}

/* Comparison Table */
.comparison-section {
    margin-top: 4rem;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table thead th {
    background: rgba(0, 180, 255, 0.05);
    font-weight: 700;
    color: var(--color-text);
    padding: 1.25rem 1.25rem;
    font-size: 1rem;
}

.comparison-table thead th:first-child {
    border-radius: 18px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 18px 0 0;
}

.table-price {
    display: block;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-top: 0.25rem;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: bold;
}

.comparison-table .dash {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1rem;
}


.social-spotlight {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(9, 12, 28, 0.6);
}

.social-slider-wrapper {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 2.5rem 3.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) inset;
}

.social-slider {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-areas: "stack";
}

.social-campaign {
    grid-area: stack;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.social-campaign.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.campaign-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.campaign-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 1s ease;
}

.social-campaign.is-active .campaign-media img {
    transform: scale(1.02);
}

.mock-caption {
    position: absolute;
    inset: auto 1.5rem 1.5rem 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(5, 6, 15, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 0.4rem;
}

.mock-caption span {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(233, 236, 255, 0.65);
}

.mock-caption p {
    font-size: 0.95rem;
    color: var(--color-text);
}

.campaign-body {
    display: grid;
    gap: 1.2rem;
}

.campaign-body h3 {
    font-size: 1.75rem;
}

.campaign-body p {
    color: var(--color-muted);
    font-size: 1rem;
}

.campaign-stats {
    display: grid;
    gap: 0.75rem;
}

.campaign-stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.campaign-stats strong {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(233, 236, 255, 0.65);
}

.campaign-stats span {
    font-size: 0.98rem;
    color: var(--color-text);
}

.campaign-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.campaign-tags span {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.social-controls {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.social-dots {
    display: flex;
    gap: 0.8rem;
}

.social-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-dot.is-active {
    background: var(--color-accent-alt);
    transform: scale(1.4);
}

.case-study-slider {
    position: relative;
    min-height: 520px;
}

.case-study {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: stretch;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(10, 14, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.case-study.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.case-study figure {
    position: relative;
    overflow: hidden;
}

.case-study figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 15, 0.1) 0%, rgba(5, 6, 15, 0.5) 100%);
}

.case-study img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.2s ease;
}

.case-study.is-active img {
    transform: scale(1.02);
}

.case-study-body {
    padding: 2.5rem;
    display: grid;
    gap: 1.25rem;
}

.case-study-body h3 {
    font-size: 1.8rem;
}

.case-study-body p {
    color: var(--color-muted);
}

.case-study-body ul {
    display: grid;
    gap: 0.7rem;
    color: rgba(233, 236, 255, 0.85);
    font-size: 0.95rem;
}

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.slider-controls {
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-arrow span {
    display: block;
    width: 16px;
    height: 16px;
    border-top: 2px solid var(--color-text);
    border-right: 2px solid var(--color-text);
    transform: rotate(45deg);
}

.slider-arrow.prev span {
    transform: rotate(225deg);
}

.slider-arrow:hover,
.slider-arrow:focus {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dot.is-active {
    background: var(--color-accent-alt);
    transform: scale(1.4);
}

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

.capability-group {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(14px);
    display: grid;
    gap: 1.1rem;
}

.capability-group h3 {
    font-size: 1.25rem;
}

.capability-group ul {
    display: grid;
    gap: 0.6rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-muted);
}

.testimonial-track {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 12, 28, 0.8);
    backdrop-filter: blur(16px);
    display: grid;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.6;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--color-muted);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.is-active {
    background: var(--color-accent);
    transform: scale(1.1);
}

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

.insight-card {
    padding: 2.25rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    display: grid;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.insight-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.insight-tag {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--color-accent-alt);
}

.insight-card h3 {
    font-size: 1.35rem;
}

.insight-card p {
    color: var(--color-muted);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 600;
}

.link-arrow::after {
    content: '?';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.cta-banner {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.4), rgba(0, 215, 201, 0.35));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner-content {
    display: grid;
    gap: 1.3rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.contact-intro {
    display: grid;
    gap: 1.3rem;
}

.contact-meta {
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.contact-form {
    display: grid;
    gap: 1.2rem;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-row {
    display: grid;
    gap: 0.5rem;
}

label {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
    outline: none;
}

textarea {
    resize: vertical;
}

.form-footnote {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-status {
    min-height: 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(233, 236, 255, 0.65);
}

.form-status.success {
    color: #44f1d5;
}

.form-status.error {
    color: #ff8a8a;
}

.contact-form .form-status {
    margin-top: 0.5rem;
}

/* Pill Button Radio Group */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill-btn {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}

.pill-btn:hover {
    background: rgba(0, 180, 255, 0.1);
    border-color: rgba(0, 180, 255, 0.3);
    color: var(--color-text);
}

input[type="radio"]:checked+.pill-btn {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.2), rgba(255, 107, 44, 0.2));
    border-color: var(--color-accent);
    color: var(--color-text);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    gap: 0.6rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s ease;
}

.checkbox-item:hover {
    background: rgba(0, 180, 255, 0.05);
    border-color: rgba(0, 180, 255, 0.2);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.checkbox-item:has(input:checked) {
    background: rgba(0, 180, 255, 0.08);
    border-color: rgba(0, 180, 255, 0.25);
}

.footer-form .form-status {
    margin-top: 0.75rem;
}

.site-footer {
    padding: 4rem 0 2.5rem;
    background: #020205;
    /* Darker footer */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 1rem;
}

.footer-brand p {
    color: var(--color-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.footer-links h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-links ul {
    display: grid;
    gap: 0.5rem;
    color: rgba(233, 236, 255, 0.75);
}

.footer-form {
    display: grid;
    gap: 0.75rem;
}

.footer-form input {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
}

.footer-form .btn {
    justify-content: center;
}

.footer-base {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(233, 236, 255, 0.55);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 255, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.bento-item:hover .bento-bg {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 2, 5, 0.95), rgba(2, 2, 5, 0.3));
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.bento-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bento-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bento-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-val {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent-secondary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(233, 236, 255, 0.7);
    line-height: 1.6;
}

/* VIP Access / Resource */
.vip-access {
    padding: 2rem 0;
}

.vip-card {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.05), rgba(255, 107, 44, 0.05));
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 255, 0.5), transparent);
}

.vip-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.vip-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vip-content p {
    font-size: 1.1rem;
    color: rgba(233, 236, 255, 0.8);
    margin-bottom: 2rem;
}

.inline-signup {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto;
}

.inline-signup .input-group {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.inline-signup input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0 1.5rem;
    color: #fff;
    font-family: inherit;
    min-width: 0;
}

.inline-signup .btn {
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }

    .bento-item {
        min-height: 300px;
    }

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

    .inline-signup .input-group {
        flex-direction: column;
    }

    .inline-signup .btn {
        width: 100%;
        justify-content: center;
    }
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .case-study {
        grid-template-columns: 1fr;
    }

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

    .impact-metrics {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .social-campaign {
        grid-template-columns: 1fr;
    }

    .campaign-media {
        min-height: 320px;
    }

    .case-study figure {
        min-height: 320px;
    }

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .impact-grid {
        gap: 2.5rem;
    }

    .social-slider-wrapper {
        padding: 2rem 1.75rem 3rem;
    }

    .campaign-stats li {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-nav {
        position: fixed;
        inset: var(--header-height) 1.5rem auto 1.5rem;
        background: rgba(8, 12, 30, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 1.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .primary-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(8, 12, 30, 0.9);
        border-radius: inherit;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .primary-nav>* {
        position: relative;
        z-index: 2;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-cta {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-metrics {
        flex-wrap: wrap;
    }

    .section {
        padding: 5rem 0;
    }

    .package-card.highlight {
        transform: none;
    }

    .package-card:hover,
    .package-card:focus-within {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .social-controls {
        gap: 1rem;
    }

    .social-slider-wrapper {
        padding: 1.75rem 1.5rem 2.5rem;
    }

    .hero {
        padding: 6rem 0 5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-grid {
        gap: 1.75rem;
    }

    .package-card {
        padding: 2.1rem;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .slider-controls {
        gap: 1rem;
    }

    .slider-arrow {
        width: 46px;
        height: 46px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .insight-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .impact-card {
        max-width: none;
    }
}

/* Centered Footer Redesign */
.site-footer.is-centered {
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logo img {
    display: block;
    /* Ensure no inline spacing */
}

.footer-cta-text {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.footer-nav-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-group a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-group a:hover {
    color: var(--color-accent);
}

.footer-newsletter-centered {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 3rem;
    width: 100%;
    max-width: 500px;
}

.footer-newsletter-centered p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-form-centered {
    display: flex;
    gap: 0.5rem;
}

.footer-form-centered input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0 1.5rem;
    color: #fff;
    height: 48px;
    min-width: 0;
    /* Fix flex issue */
}

.footer-form-centered .btn {
    padding: 0 2rem;
    height: 48px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

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

@media (max-width: 768px) {
    .footer-cta-text {
        font-size: 1.5rem;
    }

    .footer-nav-group {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-form-centered {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* UI/UX Pro Max Enhancements */

/* 1. Global Glow Effect */
.bento-item,
.process-card,
.vip-card,
.package-card {
    position: relative;
    isolation: isolate;
}

.bento-item::before,
.process-card::before,
.vip-card::before,
.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
}

/* Hover state for glow */
.bento-item:hover::before,
.process-card:hover::before,
.vip-card:hover::before,
.package-card:hover::before {
    opacity: 1;
}

/* 2. Process Section Enhancements */
.process-grid {
    position: relative;
    padding-top: 2rem;
}

/* Connecting line (Desktop only) */
@media (min-width: 861px) {
    .process-grid::after {
        content: '';
        position: absolute;
        top: 6rem;
        /* Align with numbers */
        left: 2rem;
        right: 2rem;
        height: 1px;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0.0),
                rgba(255, 255, 255, 0.1) 20%,
                rgba(255, 255, 255, 0.1) 80%,
                rgba(255, 255, 255, 0.0) 100%);
        z-index: -1;
    }
}

.process-card {
    background: rgba(12, 12, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.step-num {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

/* 3. Featured Work / Bento Tweaks */
.bento-content {
    background: linear-gradient(to top, rgba(5, 5, 10, 0.95), rgba(5, 5, 10, 0.3) 70%, transparent);
    padding: 2.5rem;
}

.bento-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bento-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.005);
}

.bento-bg {
    transition: transform 0.8s ease-out;
    /* Smoother zoom */
}

/* 4. VIP Section Polish */
.vip-card {
    background: radial-gradient(circle at center, rgba(20, 20, 30, 0.8), rgba(5, 5, 10, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 60px rgba(0, 180, 255, 0.03);
}

.vip-content h2 {
    text-shadow: 0 0 30px rgba(0, 180, 255, 0.2);
}

/* 5. General Typography & Layout */
.section-title {
    letter-spacing: -0.02em;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .partner-logos {
        gap: 1.5rem;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }
}