:root {
    --accent: #00f2ff;
    --accent-hover: #ffffff;
    --bg: #030303;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-focus: #00f2ff;

    --font-main: 'Inter', sans-serif;
    --font-accent: 'Unbounded', sans-serif;

    /* Neon Glows */
    --glow-cyan: 0 0 20px rgba(0, 242, 255, 0.3);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3);
    --glow-yellow: 0 0 20px rgba(250, 204, 21, 0.3);

    /* Spacing Standards */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 2rem;
    /* 32px */
    --spacing-xl: 4rem;
    /* 64px */
    --spacing-xxl: 8rem;
    /* 128px */
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-accent);
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- Globals --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Optional: nice shadow for the container */
}

/* Ensure tables inside the wrapper behave well */
.table-responsive table {
    width: 100%;
    min-width: 600px;
    /* Force scroll on small screens */
    border-collapse: collapse;
}

.grad-multi {
    background: linear-gradient(to right, #00f2ff, #a855f7, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Background Canvas --- */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* --- Navigation Core --- */
.main-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: var(--font-accent);
    color: white;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo span {
    color: #22d3ee;
}

/* --- Desktop Menu Styles --- */
.nav-links-wrapper {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-main);
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #22d3ee;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* Level 2 Dropdown */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    /* Space from parent */
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Pseudo-element to bridge gap between parent and submenu */
.submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    position: relative;
}

.submenu-item a {
    display: block;
    padding: 10px 20px;
    color: #d1d5db;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.submenu-item a:hover {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    padding-left: 25px;
    /* Slide effect */
}

/* Level 3 Nested Dropdown */
.nested-submenu {
    position: absolute;
    top: -10px;
    /* Align top with parent item */
    left: 100%;
    margin-left: 10px;
    /* Space from parent level */
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Pseudo-element to bridge gap between submenu and nested submenu */
.nested-submenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background: transparent;
}

.submenu-item:hover .nested-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Arrow indicators */
.has-submenu>a,
.has-nested>a {
    position: relative;
    padding-right: 20px;
}

.has-submenu>a::after,
.has-nested>a::after {
    content: '›';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 1.2em;
    line-height: 0;
    transition: transform 0.3s;
}

.has-nested>a::after {
    transform: translateY(-50%) rotate(0deg);
    /* Right arrow for nested */
    right: 15px;
}

/* --- Mobile Menu Core --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.mobile-only {
    display: none;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        /* Show burger */
    }

    .desktop-only {
        display: none;
        /* Hide top CTA */
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
        text-align: center;
        border-top: 1px solid var(--border-light);
        padding-top: 20px;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: black;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }

    .nav-links-wrapper.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0 20px;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
    }

    /* Mobile Submenus (Accordion style) */
    .submenu,
    .nested-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        min-width: 100%;
        border: none;
        transition: max-height 0.4s ease;
        margin: 0;
    }

    .submenu::before,
    .nested-submenu::before {
        display: none;
        /* No gaps logic on mobile */
    }

    .nested-submenu {
        background: rgba(0, 0, 0, 0.3);
        padding-left: 15px;
        /* Indent nested items */
    }

    .nav-item.open>.submenu,
    .submenu-item.open>.nested-submenu {
        max-height: 1000px;
        /* Arbitrary large height for animation */
        margin-top: 10px;
    }

    .submenu-item a,
    .nested-submenu li a {
        padding: 15px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    /* Rotate arrows on open */
    .nav-item.open>a::after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .submenu-item.open>a::after {
        transform: translateY(-50%) rotate(90deg);
    }

    /* Burger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

.btn-contact {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: #22d3ee;
    color: black;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.tag-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #22d3ee;
    margin-bottom: var(--spacing-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
    }

    50% {
        opacity: 0.6;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-text {
    max-width: 50rem;
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

/* --- Buttons --- */
.btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-white {
    background: white;
    color: black;
}

.btn-white:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* --- Sections --- */
.section-py {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .section-header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

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

.page-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.header-desc {
    max-width: 25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: left;
}

@media (min-width: 768px) {
    .header-desc {
        text-align: right;
    }
}

/* --- Cards (Glass) --- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;

    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Audit Section --- */
.audit-grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

.service-card {
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: var(--spacing-lg);
}

.service-card.cyan {
    border-color: #22d3ee;
}

.service-card.purple {
    border-color: #a855f7;
}

.service-card:hover.cyan {
    box-shadow: var(--glow-cyan);
}

.service-card:hover.purple {
    box-shadow: var(--glow-purple);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box.cyan {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.icon-box.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.card-meta {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.text-cyan {
    color: #22d3ee;
}

.text-purple {
    color: #a855f7;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    text-transform: uppercase;
    word-wrap: break-word;
}

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

.card-desc {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.service-list {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.list-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: #d1d5db;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.dot.cyan {
    background: #22d3ee;
    box-shadow: 0 0 5px #22d3ee;
}

.dot.purple {
    background: #a855f7;
    box-shadow: 0 0 5px #a855f7;
}

.dot.pink {
    background: #ec4899;
    box-shadow: 0 0 5px #ec4899;
}

.dot.yellow {
    background: #facc15;
    box-shadow: 0 0 5px #facc15;
}

.dot.green {
    background: #4ade80;
    box-shadow: 0 0 5px #4ade80;
}

.dot.white {
    background: white;
    box-shadow: 0 0 5px white;
}

.btn-card {
    width: 100%;
    text-transform: uppercase;
    padding: 1rem;
    border: 1px solid;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-card.white {
    border-color: white;
    color: white;
}

.btn-card.white:hover {
    background: white;
    color: black;
}

.btn-card.purple {
    border-color: #a855f7;
    color: #a855f7;
}

.btn-card.purple:hover {
    background: #a855f7;
    color: white;
    box-shadow: var(--glow-purple);
}

/* --- Spectrum --- */
.spectrum-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.spectrum-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

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

.spectrum-left {
    min-width: 30%;
}

.spectrum-right {
    flex-grow: 1;
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .spectrum-right {
        grid-template-columns: 1fr 1fr;
    }
}

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

.spectrum-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: var(--spacing-md);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.spectrum-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.text-green {
    color: #4ade80;
}

.text-pink {
    color: #f472b6;
}

.border-r-cyan {
    border-right: 1px solid rgba(34, 211, 238, 0.3);
}

/* --- AI Section --- */
.ai-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .ai-section {
        flex-direction: row;
        align-items: center;
    }
}

.ai-content {
    flex: 1;
}

.ai-visuals {
    flex: 1;
}

.ai-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

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

.ai-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.ai-column.offset {
    margin-top: var(--spacing-lg);
}

.ai-img-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.ai-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(1);
}

.ai-img-wrapper:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.img-h-sm {
    height: 12rem;
}

.img-h-md {
    height: 16rem;
}

.img-h-auto {
    height: auto;
}

.ai-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(100%);
    transition: 0.3s;
}

.ai-img-wrapper:hover .ai-caption {
    transform: translateY(0);
}

.special-offer {
    padding: var(--spacing-md);
    border-left: 4px solid #f472b6;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: var(--spacing-lg);
}

.offer-label {
    color: #f472b6;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- Stats --- */
.stats-section {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    text-align: center;
}

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

.stat-item {
    padding: var(--spacing-md);
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-accent);
}

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

.stat-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* --- Process --- */
.process-grid {
    display: grid;
    gap: var(--spacing-md);
}

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

.process-card {
    position: relative;
    padding: var(--spacing-lg);
}

.process-bg-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    line-height: 1;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-transform: uppercase;
}

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

/* --- Tech Stack --- */
.tech-center {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

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

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid transparent;
    padding: var(--spacing-lg);
}

.tech-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
    font-weight: 700;
    transition: 0.3s;
}

.tech-val {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.tech-card:hover .tech-val {
    transform: scale(1.1);
    text-shadow: 0 0 10px currentColor;
}

.tech-card:hover .tech-label {
    opacity: 1;
}

.bc-cyan {
    border-bottom-color: #22d3ee;
    color: #22d3ee;
}

.bc-yellow {
    border-bottom-color: #facc15;
    color: #facc15;
}

.bc-green {
    border-bottom-color: #4ade80;
    color: #4ade80;
}

.bc-orange {
    border-bottom-color: #fb923c;
    color: #fb923c;
}

.bc-blue {
    border-bottom-color: #60a5fa;
    color: #60a5fa;
}

.bc-purple {
    border-bottom-color: #c084fc;
    color: #c084fc;
}

.bc-sky {
    border-bottom-color: #38bdf8;
    color: #38bdf8;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

.price-card {
    padding: var(--spacing-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Fix for badge visibility */
}

.price-header {
    margin-bottom: var(--spacing-lg);
}

.price-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-val {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-accent);
}

.price-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-list {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #a855f7;
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 99px;
    box-shadow: 0 0 10px #a855f7;
}

.border-top-cyan {
    border-top: 1px solid rgba(34, 211, 238, 0.5);
}

.border-top-yellow {
    border-top: 1px solid rgba(250, 204, 21, 0.5);
}

.border-full-purple {
    border: 2px solid rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.05);
}

/* --- Accordion --- */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

details.glass-card {
    padding: 0;
}

details>summary {
    padding: var(--spacing-lg);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details>summary::-webkit-details-marker {
    display: none;
}

.acc-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.3s;
}

details:hover .acc-title {
    color: var(--accent);
}

.toggle-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

details[open] .toggle-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: black;
}

.acc-body {
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.acc-body p {
    margin-bottom: 1rem;
}

/* --- Footer --- */
.site-footer {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    gap: var(--spacing-xxl);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

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

.footer-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-val {
    font-size: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-val:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.input-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    outline: none;
    transition: 0.3s;
}

.input-field:focus {
    border-color: var(--accent);
}

.btn-submit {
    padding: 1rem 3rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: max-content;
}

.btn-submit:hover {
    background: var(--accent);
    color: black;
    box-shadow: var(--glow-cyan);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.75rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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