/* ===========================
   GUREY AI - VANILLA CSS
   Complete Design System
   =========================== */

/* ===========================
   1. CSS VARIABLES & RESET
   =========================== */
:root {
    /* Colors */
    --color-bg-main: #0F140F;
    --color-bg-surface: #1F2E1F;
    --color-primary: #2FFF00;
    --color-text: #E0E6E0;
    --color-text-muted: #9ca3af;
    --color-text-dim: #6b7280;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-red: #ef4444;
    --color-yellow: #eab308;

    /* Semantic Colors (Required by Design System) */
    --color-text-on-primary: #050505;
    --color-success: #2FFF00;
    --color-error: #FF4D4D;
    --color-warning: #FFD000;

    /* Typography */
    --font-heading: 'Roboto', system-ui, sans-serif;
    --font-body: 'Roboto', system-ui, sans-serif;
    --font-mono: 'Inter', monospace;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-32: 8rem;
    --space-40: 10rem;

    /* Border Radius (Design System: 12-16px range) */
    --radius-sm: 0.75rem;
    --radius-md: 0.875rem;
    --radius-lg: 1rem;
    --radius-xl: 1rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

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

::selection {
    background-color: var(--color-primary);
    color: var(--color-black);
}

/* ===========================
   2. TYPOGRAPHY
   =========================== */
h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
}

.hero-heading {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: var(--space-8);
    color: var(--color-white);
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

.body-text {
    font-size: 1rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 5rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

/* ===========================
   3. ANIMATIONS
   =========================== */
@keyframes shine {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
}

@keyframes beam {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.shiny-text {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 60%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: rgba(255, 255, 255, 0.9);
    animation: shine 3s ease-in-out infinite;
}

.animate-gradient-text {
    background: linear-gradient(to right, var(--color-primary), var(--color-text), var(--color-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Border Beam */
.border-beam {
    position: relative;
}

.border-beam::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    background-size: 200% 100%;
    animation: beam 2s linear infinite;
    pointer-events: none;
}

/* Fade Up */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   4. LAYOUT COMPONENTS
   =========================== */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-lg {
    max-width: 64rem;
    margin: 0 auto;
}

.section {
    padding: var(--space-32) var(--space-6);
}

.grid-2 {
    display: grid;
    gap: var(--space-8);
}

.grid-4 {
    display: grid;
    gap: var(--space-8);
}

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

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

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   5. NAVBAR (PILL DESIGN)
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: var(--space-4) var(--space-6);
    pointer-events: none;
    transition: padding 0.4s ease;
}

.navbar.scrolled {
    padding: var(--space-2) var(--space-6);
}

.navbar-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(15, 20, 15, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

/* Scrolled State */
.navbar.scrolled .navbar-container {
    max-width: 60rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(47, 255, 0, 0.2);
    padding: 0.625rem 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(47, 255, 0, 0.1);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo-img {
    height: 1.5rem;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(47, 255, 0, 0.2));
}

.navbar-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
}

.navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
    }
}

.navbar-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav a:hover {
    color: var(--color-white);
}

.navbar-nav a:hover::after {
    width: 100%;
}

/* Desktop CTA */
.navbar-cta {
    display: none;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .navbar-cta {
        display: inline-flex;
    }
}

.navbar-cta:hover {
    background-color: var(--color-primary);
    color: var(--color-black);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(47, 255, 0, 0.4);
}

.navbar-cta iconify-icon {
    font-size: 1rem;
}

/* Hamburger */
.navbar-hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    z-index: 110;
}

@media (min-width: 1024px) {
    .navbar-hamburger {
        display: none;
    }
}

.navbar-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.navbar-hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-primary);
}

.navbar-hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.navbar-hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-nav a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu.is-active .mobile-menu-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-nav a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-nav a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-nav a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-nav a:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu-nav a:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.mobile-menu-cta {
    margin-top: 2rem !important;
    font-size: 1.25rem !important;
    padding: 1rem 2.5rem !important;
    background-color: var(--color-primary) !important;
    color: var(--color-black) !important;
    border-radius: 999px !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}



/* ===========================
   6. HERO SECTION
   =========================== */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: var(--space-32);
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 90vh;
    justify-content: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 100vw;
    background-color: rgba(47, 255, 0, 0.1);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(47, 255, 0, 0.3);
    background-color: rgba(47, 255, 0, 0.05);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-8);
    box-shadow: 0 0 15px -3px rgba(47, 255, 0, 0.2);
}

.hero-badge-dot {
    position: relative;
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
}

.hero-badge-dot-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot-solid {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 0.5rem;
    width: 0.5rem;
    background-color: var(--color-primary);
}

.hero-title-gradient-white {
    background: linear-gradient(to bottom right, #ffffff, #ffffff, #6b7280);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-gradient-green {
    background: linear-gradient(to right, var(--color-primary), var(--color-text));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto var(--space-12);
    line-height: 1.75;
    font-weight: 300;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-subtitle-highlight {
    color: var(--color-text);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-cta-group {
        flex-direction: row;
        width: auto;
    }
}

.hero-transition {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    font-style: italic;
    margin-top: var(--space-8);
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   7. BUTTONS
   =========================== */
.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background-color: var(--color-primary);
    color: var(--color-text-on-primary);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px -5px rgba(47, 255, 0, 0.4);
}

.btn-primary iconify-icon {
    transition: transform 0.2s ease;
}

.btn-primary:hover iconify-icon {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: background-color 0.2s ease;
    backdrop-filter: blur(4px);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-secondary {
        width: auto;
    }
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(47, 255, 0, 0.3);
}

.btn-outline iconify-icon {
    transition: transform 0.2s ease;
}

.btn-outline:hover iconify-icon {
    transform: translateX(4px);
}

.btn-cta-large {
    position: relative;
    overflow: hidden;
    background-color: #B0FC51;
    color: #000000;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px -5px rgba(176, 252, 81, 0.3);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-large:hover {
    box-shadow: 0 0 35px -5px rgba(176, 252, 81, 0.4);
    transform: translateY(-4px);
}

.cta-subtext {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===========================
   8. CARDS
   =========================== */
.card-spotlight {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-surface);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

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

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

.card {
    padding: 2.5rem 3rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.card:hover {
    border-color: rgba(47, 255, 0, 0.2);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8);
}

.card-icon-red {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--color-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 20px -5px rgba(239, 68, 68, 0.2);
}

.card-icon-yellow {
    background-color: rgba(234, 179, 8, 0.1);
    color: var(--color-yellow);
    border: 1px solid rgba(234, 179, 8, 0.2);
    box-shadow: 0 0 20px -5px rgba(234, 179, 8, 0.2);
}

.card-icon-green {
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    background-color: rgba(47, 255, 0, 0.1);
    border: 1px solid rgba(47, 255, 0, 0.2);
    color: var(--color-primary);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.card-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.card-list-item-icon {
    color: var(--color-red);
    margin-top: 0.125rem;
}

/* Solution Cards */
.solution-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.solution-card-content {
    padding: 2.5rem 3rem;
    padding-bottom: 0;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

.solution-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.solution-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-white);
}

.solution-card-desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-8);
    line-height: 1.75;
}

.lead-score-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: 2.5rem;
    padding-left: var(--space-2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-score-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lead-score-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lead-score-label-a {
    color: var(--color-primary);
}

.lead-score-label-bc {
    color: var(--color-text-muted);
}

.lead-score-label-d {
    color: var(--color-error);
}

.lead-score-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.lead-score-text strong {
    color: var(--color-white);
}

.solution-demo {
    margin: 0 2.5rem 2.5rem;
    height: 8rem;
    background-color: rgba(15, 20, 15, 0.8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.solution-demo-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(47, 255, 0, 0.05), transparent);
}

.solution-demo-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-bg-surface);
    border: 1px solid rgba(47, 255, 0, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.solution-demo-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse 2s infinite;
}

.solution-demo-score {
    font-family: monospace;
    color: var(--color-primary);
}

.solution-card-cta {
    padding: 0 2.5rem 3rem;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item iconify-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Why Choose Cards */
.why-card {
    padding: 2.5rem 3rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-card iconify-icon {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: var(--space-6);
    display: block;
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.why-card-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ===========================
   9. SECTIONS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.section-label {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-subtitle {
    color: var(--color-text-muted);
}

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

.section-bg-dark {
    background-color: rgba(0, 0, 0, 0.2);
}

.section-bg-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

/* Pain Points Section */
.pain-section {
    padding: var(--space-32) var(--space-6);
    position: relative;
    z-index: 10;
}

/* Solutions Section */
.solutions-section {
    padding: var(--space-32) var(--space-6);
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Why Implement AI Section */
.why-ai-section {
    padding: var(--space-32) var(--space-6);
}

.why-ai-grid {
    display: grid;
    gap: var(--space-16);
    align-items: center;
}

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

.why-ai-graphic {
    position: relative;
}

.why-ai-graphic-box {
    position: relative;
    background-color: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 40px -10px rgba(47, 255, 0, 0.15);
}

.why-ai-glow-green {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(47, 255, 0, 0.1);
    filter: blur(80px);
    border-radius: 50%;
}

.why-ai-glow-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(59, 130, 246, 0.05);
    filter: blur(80px);
    border-radius: 50%;
}

.why-ai-cards {
    position: relative;
    z-index: 10;
    display: grid;
    gap: var(--space-6);
    width: 100%;
    max-width: 18rem;
}

.comparison-card {
    background-color: var(--color-bg-main);
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comparison-card-ai {
    border-color: rgba(47, 255, 0, 0.5);
    box-shadow: 0 25px 50px -12px rgba(47, 255, 0, 0.1);
    transform: scale(1.1);
}

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

.comparison-card-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.comparison-card-label-human {
    color: var(--color-text-dim);
}

.comparison-card-label-ai {
    color: var(--color-primary);
}

.comparison-card-header iconify-icon {
    font-size: 1rem;
}

.comparison-progress-bar {
    height: 0.375rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.comparison-progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
}

.comparison-progress-fill-red {
    width: 20%;
    background-color: var(--color-red);
}

.comparison-progress-fill-green {
    width: 98%;
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

.comparison-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.comparison-stats-slow {
    color: var(--color-error);
}

.comparison-stats-fast {
    color: var(--color-primary);
    font-family: monospace;
}

.why-ai-content {
    order: -1;
}

@media (min-width: 768px) {
    .why-ai-content {
        order: 1;
    }

    .why-ai-graphic {
        order: 0;
    }
}

.why-ai-title {
    margin-bottom: var(--space-8);
    line-height: 1.2;
}

.why-ai-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-ai-item {
    display: flex;
    gap: var(--space-6);
}

.why-ai-item-number {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    font-family: monospace;
    font-size: 1.125rem;
    transition: border-color 0.2s ease;
}

.why-ai-item:hover .why-ai-item-number {
    border-color: var(--color-primary);
}

.why-ai-item-title {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    transition: color 0.2s ease;
}

.why-ai-item:hover .why-ai-item-title {
    color: var(--color-primary);
}

.why-ai-item-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Process Section */
.process-section {
    padding: var(--space-32) var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.process-header {
    margin-bottom: var(--space-20);
}

.process-step {
    position: relative;
}

.process-step-number {
    font-size: 3rem;
    font-family: monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-6);
    transition: color 0.5s ease;
}

.process-step:hover .process-step-number {
    color: rgba(47, 255, 0, 0.2);
}

.process-step-line {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
    position: relative;
    overflow: hidden;
}

.process-step-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    transform: translateX(-100%);
    transition: transform 0.7s ease-in-out;
}

.process-step:hover .process-step-line::after {
    transform: translateX(0);
}

.process-step-title {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step-text {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* CTA Section */
.cta-section {
    padding: var(--space-40) var(--space-6);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(47, 255, 0, 0.05);
    z-index: 0;
}

.cta-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(47, 255, 0, 0.5), transparent);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: var(--space-12);
    font-weight: 300;
}

/* ===========================
   10. FOOTER
   =========================== */
.footer {
    padding: var(--space-12) var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-bg-main);
    text-align: center;
}

@media (min-width: 768px) {
    .footer {
        text-align: left;
    }
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo-img {
    height: 1.25rem;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer-copyright {
    color: var(--color-text-dim);
    font-size: 0.75rem;
}

.footer-social {
    display: flex;
    gap: var(--space-6);
}

.footer-social a {
    color: var(--color-text-dim);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--color-white);
}

/* ===========================
   11. UTILITIES
   =========================== */
.text-center {
    text-align: center;
}

.shadow-glow {
    box-shadow: 0 0 40px -10px rgba(47, 255, 0, 0.15);
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media (min-width: 768px) {
    .md-order-1 {
        order: 1;
    }

    .md-order-2 {
        order: 2;
    }
}

/* ===========================
   12. FORM SECTION
   =========================== */
.form-section {
    padding: var(--space-32) var(--space-6);
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    background-color: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(47, 255, 0, 0.3), transparent);
}

@media (min-width: 768px) {
    .form-wrapper {
        padding: 4rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.form-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: var(--space-4);
    font-weight: 300;
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group-full {
    grid-column: 1 / -1;
    margin-top: var(--space-2);
}

/* Labels */
.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.required {
    color: var(--color-primary);
    font-weight: 600;
}

/* Inputs */
.form-input,
.form-select,
.form-textarea {
    background-color: var(--color-bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: var(--color-text);
    font-family: var(--font-body);
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-dim);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(47, 255, 0, 0.1);
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    background-color: var(--color-bg-main);
}

.form-select option {
    background-color: var(--color-bg-main);
    color: var(--color-text);
    padding: 0.5rem;
}

.form-select option[disabled] {
    color: var(--color-text-dim);
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-dim);
    pointer-events: none;
    transition: color 0.2s ease;
}

.select-wrapper:hover .select-icon {
    color: var(--color-text);
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Error States */
.form-error {
    font-size: 0.75rem;
    color: var(--color-red);
    display: none;
    margin-top: var(--space-1);
}

.input-error {
    border-color: var(--color-red) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.input-error:focus {
    border-color: var(--color-red) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Error Banner */
.form-error-banner {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 1rem 1.25rem;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--space-6);
}

.form-error-banner iconify-icon {
    color: var(--color-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Submit Wrapper */
.form-submit-wrapper {
    margin-top: var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.form-submit-btn {
    width: 100%;
    max-width: 20rem;
}

.form-submit-btn.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-submit-btn.btn-loading::after {
    animation: none;
}

/* Microcopy */
.form-microcopy {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-align: center;
    font-style: italic;
}

/* Success State */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-16) var(--space-8);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(47, 255, 0, 0.1);
    border: 2px solid rgba(47, 255, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(47, 255, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(47, 255, 0, 0);
    }
}

.form-success-icon iconify-icon {
    color: var(--color-primary);
}

.form-success-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.form-success-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 28rem;
    line-height: 1.75;
}

/* ===========================
   13. ACCESSIBILITY
   =========================== */

/* ===========================
   14. CHATBOT — PREMIUM DESIGN
   =========================== */

/* Custom scrollbar for chat thread */
.chat-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.chat-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.chat-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(47, 255, 0, 0.15);
    border-radius: 9999px;
}

.chat-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(47, 255, 0, 0.3);
}

/* AI bubble — light card */
.chat-bubble-ai {
    max-width: 82%;
    background: #F0F3F0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #1C2A1C;
    font-size: 0.8125rem;
    line-height: 1.6;
    padding: 0.625rem 0.875rem;
    border-radius: 1rem;
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* User bubble — neon green */
.chat-bubble-user {
    max-width: 78%;
    background: #2FFF00;
    color: #050505;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.625rem 0.875rem;
    border-radius: 1rem;
    border-bottom-right-radius: 0.25rem;
    box-shadow: 0 1px 8px rgba(47, 255, 0, 0.25);
}

/* Typing pulse animation */
@keyframes chatPulse {

    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ---- Markdown rendering inside AI bubbles ---- */
.chat-bubble-ai>*:first-child {
    margin-top: 0 !important;
}

.chat-bubble-ai>*:last-child {
    margin-bottom: 0 !important;
}

.chat-bubble-ai p {
    margin: 0 0 0.5rem 0;
}

.chat-bubble-ai p:last-child {
    margin-bottom: 0;
}

.chat-bubble-ai strong,
.chat-bubble-ai b {
    font-weight: 700;
    color: #0F140F;
}

.chat-bubble-ai em,
.chat-bubble-ai i {
    font-style: italic;
}

.chat-bubble-ai ul {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0.4rem 0 0.5rem 0;
}

.chat-bubble-ai ol {
    list-style: decimal;
    padding-left: 1.1rem;
    margin: 0.4rem 0 0.5rem 0;
}

.chat-bubble-ai li {
    margin-bottom: 0.2rem;
}

.chat-bubble-ai code {
    background: rgba(15, 20, 15, 0.08);
    padding: 0.15rem 0.35rem;
    border-radius: 0.25rem;
    font-family: 'Inter', monospace;
    font-size: 0.78rem;
    color: #1A4A1A;
}

.chat-bubble-ai pre {
    background: #0F140F;
    color: #2FFF00;
    padding: 0.75rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 0.5rem 0;
    font-size: 0.78rem;
    line-height: 1.5;
}

.chat-bubble-ai pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.chat-bubble-ai h1,
.chat-bubble-ai h2,
.chat-bubble-ai h3,
.chat-bubble-ai h4 {
    color: #0F140F;
    font-weight: 700;
    margin: 0.75rem 0 0.35rem 0;
    line-height: 1.3;
}

.chat-bubble-ai h1 {
    font-size: 1rem;
}

.chat-bubble-ai h2 {
    font-size: 0.9375rem;
}

.chat-bubble-ai h3 {
    font-size: 0.875rem;
}

.chat-bubble-ai h4 {
    font-size: 0.8125rem;
}

.chat-bubble-ai a {
    color: #1A7A00;
    text-decoration: underline;
}

.chat-bubble-ai blockquote {
    border-left: 3px solid rgba(47, 255, 0, 0.4);
    padding-left: 0.75rem;
    margin: 0.5rem 0;
    color: #3a4a3a;
    font-style: italic;
}

.chat-bubble-ai hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================
   15. SITE FOOTER
   =========================== */
.site-footer {
    background-color: var(--color-bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-16) var(--space-6) var(--space-8) var(--space-6);
    color: var(--color-text-muted);
}

.footer-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo-img {
    height: 1.75rem;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    color: var(--color-text-muted);
}

.footer-socials {
    display: flex;
    gap: var(--space-4);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.05);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 255, 0, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    width: 100%;
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        max-width: 40rem;
    }
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-column a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 80rem;
    margin: 0 auto;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--color-text-dim);
    text-align: center;
}
