/* ============================================================
   AudioSorcerer — Global Stylesheet
   Mobile-first responsive design
   Font: Rajdhani (headings) + DM Sans (body)
   Theme: Dark / Audio-Tech
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --black:        #0f162c;
    --surface:      #0f162c;
    --card:         #1d2839;
    --card-hover:   #243247;
    --blue:         #2563eb;
    --blue-bright:  #3b82f6;
    --blue-dim:     #1d4ed8;
    --text:         #e8eaf2;
    --muted:        #9ca3b4;
    --border:       rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --radius:       4px;
    --radius-lg:    6px;
    --transition:   0.2s ease;

    /* Spacing scale */
    --space-sm:  24px;
    --space-md:  48px;
    --space-lg:  72px;
    --space-xl:  110px;

    /* Section padding — mobile */
    --section-pad-x: 20px;
    --section-pad-y: 64px;
}

/* ── Breakpoints ───────────────────────────────────────────── */
/* sm:  480px  — large phones                                   */
/* md:  768px  — tablets                                        */
/* lg:  1024px — small desktops                                 */
/* xl:  1280px — large desktops                                 */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: transparent;
}

ul, ol {
    list-style: none;
}

/* ── Typography — Headings ─────────────────────────────────── */
.h-solid {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    line-height: 0.9;
    display: block;
}

.h-outline {
    font-family: var(--font-heading);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--blue-bright);
    letter-spacing: 2px;
    line-height: 0.9;
    display: block;
    filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 48px rgba(59, 130, 246, 0.4));
}

.h-outline-subtle {
    font-family: var(--font-heading);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--blue-bright);
    letter-spacing: 2px;
    line-height: 0.9;
    display: block;
    filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.5));
}

/* Mobile sizes */
.text-xl  { font-size: clamp(48px, 12vw, 136px); }
.text-lg  { font-size: clamp(36px, 8vw, 80px); }
.text-md  { font-size: clamp(28px, 6vw, 56px); }
.text-sm  { font-size: clamp(22px, 4vw, 28px); }

/* ── Section Labels ────────────────────────────────────────── */
.section-tag {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--blue-bright);
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 64px;
    }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-sm  { padding: 7px 18px; font-size: 14px; }
.btn-md  { padding: 10px 24px; font-size: 16px; }
.btn-lg  { padding: 14px 28px; font-size: 16px; }

@media (min-width: 768px) {
    .btn-lg { padding: 14px 34px; }
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--blue-bright);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 10px 24px;
}

.btn-ghost:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.hero .btn-outline {
    background: rgba(255, 255, 255, 0.08);
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(7, 9, 14, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 36px;
    width: auto;
    display: block;
}

.navbar-brand span {
    color: var(--blue-bright);
}

/* Hide desktop nav on mobile */
.navbar-links {
    display: none;
}

.navbar-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Hide sign in on mobile */
.navbar-actions .btn-ghost {
    display: none;
}

/* Hamburger — mobile only */
.navbar-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    margin-left: 14px;
    background: none;
    border: none;
}

.navbar-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile nav drawer */
.navbar-drawer {
    display: none;
    position: fixed;
    top: 49px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(16px);
    z-index: 99;
    flex-direction: column;
    padding: 32px 24px;
    gap: 8px;
    overflow-y: auto;
}

.navbar-drawer.open {
    display: flex;
}

.navbar-drawer a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.navbar-drawer a:hover {
    color: var(--text);
}

/* Tablet+ nav */
@media (min-width: 768px) {
    .navbar {
        padding: 16px 40px;
    }

    .navbar-links {
        display: flex;
        gap: 28px;
        align-items: center;
    }

    .navbar-links a {
        color: var(--muted);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: color var(--transition);
    }

    .navbar-links a:hover,
    .navbar-links a.active {
        color: var(--text);
    }

    .navbar-actions .btn-ghost {
        display: inline-block;
    }

    .navbar-hamburger {
        display: none;
    }

    .navbar-drawer {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .navbar {
        padding: 16px 52px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .navbar-links {
        gap: 36px;
    }
}

/* ── Section Layouts ───────────────────────────────────────── */
.section {
    padding: var(--section-pad-y) var(--section-pad-x);
}

@media (min-width: 768px) {
    .section {
        padding: 80px 40px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-xl) 52px;
    }
}

.section-black   { background: var(--black); }
.section-surface { background: var(--surface); }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Grid Panels ───────────────────────────────────────────── */
.panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

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

.panel-card {
    background: var(--card);
    padding: 28px 24px;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .panel-card {
        padding: 36px 28px;
    }
}

@media (min-width: 1024px) {
    .panel-card {
        padding: 40px 32px;
    }
}

.panel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.panel-card:hover {
    background: var(--card-hover);
}

.panel-card:hover::after {
    transform: scaleX(1);
}

/* ── Service Cards ─────────────────────────────────────────── */
.svc-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #243247;
    border-radius: var(--radius-lg);
}

.svc-card-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    position: relative;
}

@media (min-width: 768px) {
    .svc-card-img {
        height: 180px;
    }
}

.svc-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(15, 20, 32, 0) 0%,
            rgba(15, 20, 32, 0.6) 100%
    );
}

.svc-card:hover .svc-card-img {
    transform: scale(1.04);
}

.svc-card-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .svc-card-body {
        padding: 28px 32px 32px;
    }
}

.svc-num {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.svc-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .svc-name {
        font-size: 26px;
    }
}

.svc-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    flex: 1;
}

.svc-price {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--blue-bright);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.svc-card:hover .svc-price {
    color: #fff;
}

/* ── Why/Pillars ───────────────────────────────────────────── */
.why-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-inner {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.spectrum-wrap canvas {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    background: rgba(7, 9, 14, 0.5);
}

#spectrumCanvas {
    width: 100%;
    height: 240px;
    display: block;
}

@media (min-width: 768px) {
    #spectrumCanvas {
        height: 300px;
    }
}

.spectrum-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .pillars {
        gap: 32px;
        margin-top: 44px;
    }
}

.pillar {
    display: grid;
    grid-template-columns: 1px 1fr;
    gap: 20px;
    align-items: start;
}

@media (min-width: 768px) {
    .pillar {
        gap: 24px;
    }
}

.pillar-line {
    width: 1px;
    background: var(--blue-bright);
    height: 100%;
    min-height: 44px;
    opacity: 0.6;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .pillar-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

.pillar-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

@media (min-width: 768px) {
    .pillar-desc {
        font-size: 17px;
    }
}

/* ── Tracks / Sample Player ────────────────────────────────── */
.track-list {
    max-width: 900px;
    margin: 0 auto;
}

.track {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition);
    user-select: none;
}

@media (min-width: 768px) {
    .track {
        gap: 20px;
        padding: 18px 28px;
    }
}

.track:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.track:not(:first-child) {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.track:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border-bottom: 1px solid var(--border);
}

.track:hover { background: var(--card-hover); }

.track-idx {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--muted);
    width: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .track-idx {
        font-size: 16px;
        width: 24px;
    }
}

.track-play-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    font-size: 9px;
    color: var(--blue-bright);
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

@media (min-width: 768px) {
    .track-play-btn {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}

.track-play-btn:hover,
.track-play-btn.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.track-play-btn:focus {
    outline: none;
}

.track-info { flex: 1; min-width: 0; }

.track-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .track-title {
        font-size: 17px;
    }
}

.track-artist {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hide waveform on small phones */
.track-wave {
    display: none;
}

@media (min-width: 480px) {
    .track-wave {
        display: flex;
        flex: 1;
        align-items: center;
        height: 32px;
        gap: 2px;
    }
}

.track-wave span {
    display: inline-block;
    width: 3px;
    background: var(--blue);
    border-radius: 1px;
    opacity: 0.35;
    transition: opacity var(--transition);
}

.track.active .track-wave span {
    opacity: 1;
    animation: barAnim 0.7s ease-in-out infinite alternate;
}

.track.active .track-wave span:nth-child(2n)  { animation-delay: 0.12s; }
.track.active .track-wave span:nth-child(3n)  { animation-delay: 0.24s; }
.track.active .track-wave span:nth-child(4n)  { animation-delay: 0.06s; }
.track.active .track-wave span:nth-child(5n)  { animation-delay: 0.18s; }

@keyframes barAnim {
    from { height: 4px; }
    to   { height: 28px; }
}

.track-thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .track-thumb {
        width: 48px;
        height: 48px;
    }
}

.track-duration {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 1px;
    flex-shrink: 0;
    display: none;
}

@media (min-width: 480px) {
    .track-duration {
        display: block;
    }
}

/* ── Home Player ── */
.home-player {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: bottom 0.3s ease;
}

.home-player.active {
    bottom: 0;
}

.home-player-art {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.home-player-info {
    min-width: 0;
    flex-shrink: 0;
    width: 160px;
}

.home-player-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

.home-player-artist {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.home-player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.home-player-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.home-player-btn:hover {
    background: #3b82f6;
}

.home-player-skip {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}

.home-player-skip:hover {
    border-color: #2563eb;
    color: #fff;
}

.home-player-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.home-player-time {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--muted);
    flex-shrink: 0;
    width: 32px;
}

.home-player-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.home-player-fill {
    height: 100%;
    background: #2563eb;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.home-player-volume {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.home-player-vol-input {
    width: 70px;
    accent-color: #2563eb;
}

@media (max-width: 640px) {
    .home-player {
        padding: 10px 16px;
        gap: 10px;
    }

    .home-player-info {
        width: 120px;
    }

    .home-player-volume {
        display: none;
    }

    .home-player-skip {
        width: 28px;
        height: 28px;
    }

    .home-player-time {
        display: none;
    }
}

/* ── Testimonials ──────────────────────────────────────────── */
.testi-mark {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--blue-bright);
    line-height: 0.8;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

@media (min-width: 768px) {
    .testi-mark {
        font-size: 56px;
        margin-bottom: 20px;
    }
}

.testi-text {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .testi-text {
        margin-bottom: 28px;
    }
}

.testi-author {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .testi-author {
        font-size: 17px;
    }
}

.testi-stars {
    color: var(--blue-bright);
    font-size: 14px;
    margin-top: 6px;
    letter-spacing: 3px;
}

.google-rating-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.google-rating-inline-num {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.google-rating-inline-stars {
    color: #FBBC05;
    font-size: 16px;
    letter-spacing: 2px;
}

.google-rating-inline-label {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.google-rating-inline-link {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--blue-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color var(--transition);
    padding-left: 4px;
    border-left: 1px solid var(--border);
}

.google-rating-inline-link:hover {
    color: #fff;
}

/* ── Process Steps ─────────────────────────────────────────── */
.step-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--blue-bright);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

@media (min-width: 768px) {
    .step-num {
        font-size: 72px;
        margin-bottom: 20px;
    }
}

.step-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.step-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(11, 14, 23, 0.7);
    backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
    .stats-bar {
        display: flex;
    }
}

.stat {
    padding: 18px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex: 1;
    text-align: center;
}

@media (min-width: 640px) {
    .stat {
        padding: 20px 24px;
        border-bottom: none;
    }

    .stat:last-child {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .stat {
        padding: 24px 40px;
    }
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-num {
        font-size: 42px;
    }
}

.stat-num span { color: var(--blue-bright); }

.stat-label {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 10px;
    }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px 60px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 40px;
        min-height: 94vh;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 40px 52px 80px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            to bottom,
            rgba(7, 9, 14, 0.65) 0%,
            rgba(7, 9, 14, 0.60) 30%,
            rgba(7, 9, 14, 0.72) 60%,
            rgba(7, 9, 14, 0.92) 100%
    );
}

.hero-hex {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-hex canvas {
    width: 100%;
    height: 100%;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 500px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(37,99,235,0.09) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero-glow {
        width: 700px;
        height: 500px;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-eyebrow {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

.hero-title-wrap {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title-wrap {
        margin-bottom: 32px;
    }
}

.hero-sub {
    font-size: 16px;
    color: var(--text);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(7, 9, 14, 0.8);
}

@media (min-width: 768px) {
    .hero-sub {
        font-size: 17px;
        margin-bottom: 48px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 56px;
    }
}

@media (min-width: 768px) {
    .hero-actions {
        margin-bottom: 72px;
    }
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 80px 40px;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: var(--space-xl) 52px;
    }
}

.cta-section canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-sub {
    font-size: 15px;
    color: var(--muted);
    margin: 20px auto 36px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 460px;
}

@media (min-width: 768px) {
    .cta-sub {
        font-size: 17px;
        margin: 28px auto 44px;
    }
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 20px 48px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 56px 40px 48px;
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        padding: 72px 52px 56px;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--blue-bright);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-bright);
    opacity: 0.7;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all var(--transition);
}

.footer-social:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    background: rgba(59, 130, 246, 0.08);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-links a {
    font-size: 14px;
    color: var(--muted);
    transition: color var(--transition);
    line-height: 2;
    display: block;
}

.footer-col-links a:hover {
    color: var(--text);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 52px;
        text-align: left;
    }
}

.footer-bottom-copy {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 1px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text);
}

/* ── Footer Subscribe Banner ───────────────────────────────── */
.footer-subscribe {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 20px;
    background: linear-gradient(135deg, #1a3a6b 0%, #1e40af 50%, #1a3a6b 100%);
    position: relative;
    overflow: hidden;
}

.footer-subscribe::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

@media (min-width: 768px) {
    .footer-subscribe {
        padding: 52px 40px;
    }
}

@media (min-width: 1024px) {
    .footer-subscribe {
        padding: 52px 52px;
    }
}

.footer-subscribe-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .footer-subscribe-inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

.footer-subscribe-text {
    flex-shrink: 0;
}

.footer-subscribe-offer {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.footer-subscribe-offer::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #93c5fd;
    margin-left: 10px;
    vertical-align: middle;
}

.footer-subscribe-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

@media (min-width: 640px) {
    .footer-subscribe-form {
        flex-direction: row;
    }
}

.footer-subscribe-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    padding: 11px 16px;
    transition: border-color var(--transition);
    flex: 1;
    min-width: 0;
    backdrop-filter: blur(4px);
}

.footer-subscribe-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.footer-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 11px 24px;
    background: #fff;
    color: var(--blue);
    font-weight: 600;
    border: none;
}

.footer-subscribe-btn:hover {
    background: #e8eaf2;
    transform: translateY(-1px);
}

.footer-subscribe-error {
    font-size: 14px;
    color: #fca5a5;
    margin-top: 4px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility ───────────────────────────────────────────────── */
.text-blue   { color: var(--blue-bright); }
.text-muted  { color: var(--muted); }
.text-white  { color: #fff; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.form-control {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 10px 14px;
    transition: border-color var(--transition);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-bright);
}

.form-control::placeholder {
    color: var(--muted);
}

/* ── Error / Validation ────────────────────────────────────── */
.validation-message { color: #f87171; font-size: 14px; margin-top: 4px; }
.field-error .form-control { border-color: #f87171; }

/* ── Blazor Error UI ───────────────────────────────────────── */
#blazor-error-ui {
    background: #1a1a2e;
    border-top: 1px solid var(--border);
    color: var(--text);
    display: none;
    font-size: 16px;
    padding: 14px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#blazor-error-ui .dismiss { cursor: pointer; font-weight: 700; }

/* ── Mega Menu ─────────────────────────────────────────────── */
.nav-item-services {
    position: static;
}

.mega-menu {
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    background: rgba(7, 9, 14, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 32px 52px 40px;
    z-index: 999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-item-services:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--blue-bright);
}

.mega-shop-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: color var(--transition);
}

.mega-shop-link:hover { color: var(--blue-bright); }

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

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

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

.mega-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
    text-decoration: none;
    display: block;
}

.mega-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.mega-card-img {
    width: 100%;
    height: 130px;
    background-size: cover;
    background-position: center;
    background-color: var(--card);
    position: relative;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.mega-card:hover .mega-card-img {
    transform: scale(1.04);
}

.mega-card-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--blue-bright);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s;
}

.mega-card:hover .mega-card-arrow {
    opacity: 1;
    transform: scale(1);
}

.mega-card-body {
    padding: 14px 14px 14px;
    background: #0d1117;
}

.mega-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
    transition: color var(--transition);
}

.mega-card:hover .mega-card-name { color: #fff; }

.mega-card-desc {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.4;
}

/* Nav upload pill */
.nav-upload {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-bright);
    padding: 7px 14px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius);
    transition: all var(--transition);
    background: transparent;
    margin-left: 4px;
    display: inline-block;
}

.nav-upload:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
}

/* ── Nav Services Button ───────────────────────────────────── */
.nav-services {
    color: var(--muted) !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-services svg {
    transition: transform 0.2s;
    opacity: 0.4;
}

.nav-item-services:hover .nav-services {
    color: var(--text) !important;
}

.nav-item-services:hover .nav-services svg {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-item:last-child {
    display: flex;
    align-items: center;
}

/* Nav upload pill */
.nav-upload {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-bright);
    padding: 7px 14px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
    margin-left: 4px;
    display: inline-block;
}

.nav-upload:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
}

/* ── Section Background Image ──────────────────────────────── */
.section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 14, 0.85);
    z-index: 0;
}

.section-bg > *:not(.section-bg-overlay) {
    position: relative;
    z-index: 1;
}

/* ── Auth Pages ────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--black);
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

@media (min-width: 768px) {
    .auth-card {
        padding: 48px 44px;
    }
}

.auth-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 32px;
}

.auth-logo span {
    color: var(--blue-bright);
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.auth-sub {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.6;
}

.auth-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-forgot {
    text-align: right;
    margin-top: -8px;
    margin-bottom: 20px;
}

.auth-forgot a {
    font-size: 14px;
    color: var(--muted);
    transition: color var(--transition);
}

.auth-forgot a:hover {
    color: var(--blue-bright);
}

.auth-btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
}

.auth-switch {
    font-size: 16px;
    color: var(--muted);
    text-align: center;
    margin-top: 24px;
    font-weight: 300;
}

.auth-switch a {
    color: var(--blue-bright);
    transition: color var(--transition);
}

.auth-switch a:hover {
    color: #fff;
}

.auth-error {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 16px;
    color: #f87171;
    margin-bottom: 20px;
}

.auth-success {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 16px;
    color: #34d399;
    margin-bottom: 20px;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-page {
    min-height: unset;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-intro {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 24px;
    margin-bottom: 40px;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-detail-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--blue-bright);
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 17px;
    color: var(--text);
    font-weight: 400;
    transition: color var(--transition);
}

a.contact-detail-value:hover {
    color: var(--blue-bright);
}

.contact-socials {
    display: flex;
    gap: 10px;
}

.contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-top: 52px;
}

@media (min-width: 1024px) {
    .contact-form-wrap {
        margin-top: 52px;
    }
}

@media (min-width: 768px) {
    .contact-form-wrap {
        padding: 44px 40px;
    }
}

.contact-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-textarea {
    height: 140px;
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
}

.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-success-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.contact-success-sub {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-page {
    min-height: 100vh;
}

.legal-inner {
    max-width: 860px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 56px;
}

.legal-effective {
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.legal-content p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 14px;
}

.legal-content h4 {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    padding-left: 8px;
    margin-bottom: 6px;
}

.legal-content ul li::marker {
    color: var(--blue-bright);
}

.legal-content a {
    color: var(--blue-bright);
    transition: color var(--transition);
}

.legal-content a:hover {
    color: #93c5fd;
}

.legal-content strong {
    color: var(--text);
    font-weight: 500;
}

/* ── Nav Cart ──────────────────────────────────────────────── */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    color: var(--muted);
    transition: color var(--transition);
    margin-left: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.nav-cart:hover {
    color: var(--text);
}

.nav-cart:hover {
    color: var(--text);
}

.nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

/* ── Service Page ──────────────────────────────────────────── */
.svc-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .svc-hero {
        padding: 80px 40px;
        min-height: 94vh;
    }
}

@media (min-width: 1024px) {
    .svc-hero {
        padding: 40px 52px 80px;
    }
}

.svc-hero .section-tag {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.svc-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svc-hero .stats-bar {
    align-self: stretch;
}

.svc-hero-title {
    margin: 20px 0 28px;
    text-align: center;
    width: 100%;
}

.svc-hero-sub {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 36px;
    text-shadow: 0 1px 14px rgba(7, 9, 14, 0.9);
    text-align: center;
    width: 100%;
}

/* ── Service Detail ────────────────────────────────────────── */
.svc-detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .svc-detail-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

.svc-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    margin: 16px 0 24px;
}

.svc-detail-text {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}

.svc-includes-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.svc-includes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.svc-includes-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.svc-include-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    color: var(--blue-bright);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-includes-list li strong {
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.svc-includes-list li p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.svc-price-from {
    font-size: 11px;
    color: #6b7280;
    letter-spacing: 1px;
    margin-right: 4px;
    font-family: var(--font-heading);
}

/* ── Who Is This For ───────────────────────────────────────── */
.svc-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    border: none;
    background: transparent;
}

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

.svc-who-card {
    background: var(--card);
    padding: 36px 32px;
}

.svc-who-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--blue-bright);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.svc-who-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.svc-who-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

/* ── Order Configurator ────────────────────────────────────── */
.configurator {
    max-width: 1100px;
    margin: 0 auto;
}

.config-step {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.config-step:last-of-type {
    border-bottom: none;
}

.config-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.config-step-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 3px;
    flex-shrink: 0;
}

.config-step-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.config-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

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

.config-tier {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.config-tier:hover {
    border-color: rgba(59,130,246,0.3);
    background: var(--card-hover);
}

.config-tier.active {
    border-color: var(--blue-bright);
    background: rgba(59,130,246,0.08);
}

.config-tier-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.config-tier-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 300;
}

.config-tier-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 1px;
}

.config-tier.active .config-tier-price {
    color: #fff;
}

.config-tier-popular {
    position: relative;
    overflow: hidden;
}

.config-tier-badge {
    position: absolute;
    top: 20px;
    right: -28px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 32px;
    transform: rotate(35deg);
    white-space: nowrap;
}

.config-select-wrap {
    margin-top: 12px;
}

.config-select-wrap select {
    width: 100%;
    cursor: pointer;
}

/* ── Add-ons ───────────────────────────────────────────────── */
.config-addons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.config-addon {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.config-addon:hover {
    border-color: rgba(59,130,246,0.3);
    background: var(--card-hover);
}

.config-addon.active {
    border-color: var(--blue-bright);
    background: rgba(59,130,246,0.08);
}

.config-addon-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    flex-shrink: 0;
    transition: all var(--transition);
}

.config-addon.active .config-addon-check {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.config-addon-info { flex: 1; }

.config-addon-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.config-addon-desc {
    font-size: 15px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 300;
}

.config-addon-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* ── Order Summary ─────────────────────────────────────────── */
.config-summary {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 32px;
}

.config-summary-lines {
    margin-bottom: 24px;
}

.config-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
}

.config-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.config-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
}

.config-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.config-note {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
    font-weight: 300;
}

.config-added {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(52,211,153,0.08);
    border: 1px solid rgba(52,211,153,0.2);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 16px;
    color: #34d399;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.config-summary-empty {
    padding: 16px 0;
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    transition: color var(--transition);
    user-select: none;
}

.faq-item:hover .faq-question,
.faq-item.open .faq-question {
    color: #fff;
}

.faq-icon {
    font-size: 18px;
    color: var(--blue-bright);
    flex-shrink: 0;
    margin-left: 16px;
}

/* ── Problem / Solution ────────────────────────────────────── */
.svc-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .svc-problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.svc-problem, .svc-solution {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.svc-problem {
    background: rgba(248, 113, 113, 0.04);
    border-color: rgba(248, 113, 113, 0.15);
}

.svc-solution {
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.2);
}

.svc-problem-icon {
    font-size: 28px;
    color: #f87171;
    margin-bottom: 16px;
    font-weight: 700;
}

.svc-solution-icon {
    font-size: 28px;
    color: var(--blue-bright);
    margin-bottom: 16px;
    font-weight: 700;
}

.svc-problem-title, .svc-solution-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.svc-problem-title { color: #f87171; }
.svc-solution-title { color: var(--blue-bright); }

.svc-problem-list, .svc-solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.svc-problem-list li, .svc-solution-list li {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
}

.svc-problem-list li { color: var(--text); }
.svc-solution-list li { color: var(--text); }

.svc-problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f87171;
    font-size: 14px;
}

.svc-solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-bright);
    font-size: 14px;
}

/* ── Includes Grid ─────────────────────────────────────────── */
.svc-includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.svc-include-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-include-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.svc-include-card:hover {
    background: var(--card-hover);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.svc-include-card:hover::after {
    transform: scaleX(1);
}

.svc-include-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    margin-bottom: 20px;
}

.svc-include-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.svc-include-card-desc {
    font-size: 17px;
    color: #c8cdd8;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Who Is This For — with images ────────────────────────── */
.svc-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.svc-who-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    transition: all var(--transition);
}

.svc-who-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.svc-who-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.svc-who-card:hover .svc-who-img {
    transform: scale(1.04);
}

.svc-who-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,9,14,0) 0%, rgba(7,9,14,0.7) 100%);
}

.svc-who-body {
    padding: 24px 24px 28px;
}

.svc-who-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ── Process Steps ─────────────────────────────────────────── */
.svc-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

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

.svc-process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .svc-process-step {
        border-right: none;
    }

    .svc-process-step:last-child {
        border-right: 1px solid var(--border);
    }

    .svc-process-step:first-child {
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .svc-process-step:last-child {
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    }
}

.svc-process-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--blue-bright);
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.svc-process-connector {
    display: none;
}

@media (min-width: 768px) {
    .svc-process-connector {
        display: block;
        position: absolute;
        top: 52px;
        right: -1px;
        width: 1px;
        height: 40px;
        background: var(--blue-bright);
        opacity: 0.3;
        z-index: 2;
    }
}

.svc-process-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.svc-process-desc {
    font-size: 17px;
    color: #c8cdd8;
    line-height: 1.7;
    font-weight: 300;
}

/* ── Hero Actions ──────────────────────────────────────────── */
.svc-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

/* ── Config Header Sub ─────────────────────────────────────── */
.config-header-sub {
    font-size: 17px;
    color: var(--text);
    margin-top: 16px;
    font-weight: 300;
}

/* ── Samples Page ──────────────────────────────────────────── */
.samples-hero {
    text-align: center;
    padding-bottom: 60px;
}

.samples-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.samples-hero-title {
    margin: 16px 0 24px;
}

.samples-hero-sub {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Muso Stats ────────────────────────────────────────────── */
.samples-muso {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.samples-muso-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .samples-muso-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.samples-muso-title {
    margin: 16px 0 20px;
}

.samples-muso-title .h-solid,
.samples-muso-title .h-outline-subtle {
    font-size: clamp(36px, 5vw, 56px);
}

.samples-muso-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.samples-muso-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.samples-muso-stat {
    display: flex;
    flex-direction: column;
}

.samples-muso-stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.samples-muso-stat-label {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}

.samples-muso-img-wrap {
    display: flex;
    justify-content: center;
}

.samples-muso-img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* ── Genre Filters ─────────────────────────────────────────── */
.samples-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.samples-filter {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
}

.samples-filter:hover {
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--text);
}

.samples-filter.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ── Track Grid ────────────────────────────────────────────── */
.samples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.sample-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.sample-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.sample-card.playing {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 1px var(--blue-bright), 0 0 24px rgba(59, 130, 246, 0.2);
}

.sample-art-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.sample-art {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.sample-card:hover .sample-art {
    transform: scale(1.04);
}

.sample-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 14, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.sample-card:hover .sample-play-overlay,
.sample-card.playing .sample-play-overlay {
    opacity: 1;
}

.sample-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform var(--transition);
}

.sample-card:hover .sample-play-btn {
    transform: scale(1.1);
}

.sample-info {
    padding: 16px 18px 20px;
}

.sample-track {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sample-artist {
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 10px;
}

.sample-genre-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: 3px 8px;
    margin-bottom: 14px;
}

.sample-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sample-service {
    font-size: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3px 8px;
    font-weight: 400;
}

.sample-services-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.sample-note {
    font-size: 11px;
    color: var(--blue-bright);
    font-style: italic;
    margin-top: 8px;
    font-weight: 300;
}

/* ── Fixed Player ──────────────────────────────────────────── */
.samples-player {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(11, 14, 23, 0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    z-index: 500;
    transition: bottom 0.3s ease;
}

.samples-player.active {
    bottom: 0;
}

.samples-player.active {
    bottom: 0;
}

.player-art-wrap {
    flex-shrink: 0;
}

.player-art {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-color: var(--card);
    border: 1px solid var(--border);
}

.player-track-info {
    flex-shrink: 0;
    min-width: 160px;
}

.player-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.player-artist {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    white-space: nowrap;
}

.player-genre {
    font-size: 10px;
    color: var(--blue-bright);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.player-btn-main {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.player-btn-main:hover {
    background: var(--blue-bright);
    transform: scale(1.05);
}

.player-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-time {
    font-size: 11px;
    color: var(--muted);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 32px;
}

.player-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.player-progress-fill {
    height: 100%;
    background: var(--blue-bright);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.player-volume-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--muted);
}

.player-volume {
    width: 80px;
    accent-color: var(--blue-bright);
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.player-skip-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}

.player-skip-btn:hover {
    border-color: #2563eb;
    color: #fff;
}

#playerGenre {
    display: none;
}

/* ── Audio Restoration Quote ───────────────────────────────── */
.restoration-quote-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .restoration-quote-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.restoration-quote-title {
    margin: 16px 0 20px;
}

.restoration-quote-title .h-solid,
.restoration-quote-title .h-outline-subtle {
    font-size: clamp(36px, 5vw, 56px);
}

.restoration-quote-desc {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
}

.restoration-quote-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.restoration-quote-list li {
    font-size: 17px;
    color: #c8cdd8;
    font-weight: 300;
    line-height: 1.6;
}

.restoration-quote-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
}

.restoration-quote-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.restoration-quote-card-sub {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 28px;
}

.restoration-quote-btn {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
}

.restoration-quote-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--muted);
}

.restoration-quote-contact a {
    color: var(--blue-bright);
    transition: color var(--transition);
}

.restoration-quote-contact a:hover {
    color: #fff;
}

/* ── Blog Hero ── */
.blog-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
}

/* ── Blog Filters ── */
.blog-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 40px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-filters::-webkit-scrollbar {
    display: none;
}

.blog-post-hero {
    position: relative;
    padding: 100px 52px 80px;
    text-align: center;
}

.blog-post-hero-no-img {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.blog-post-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.blog-post-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.blog-post-cat {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: 4px 10px;
    text-decoration: none;
}

.blog-post-date {
    font-size: 14px;
    color: var(--muted);
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.blog-post-tag {
    font-size: 14px;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3px 10px;
}

/* ── Blog Post Layout ──────────────────────────────────────── */
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .blog-post-layout {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr 320px;
    }
}

.section-blog-content {
    background: var(--surface);
    padding: var(--section-pad-y) 0;
}

/* ── Blog Content Typography ───────────────────────────────── */
.blog-content {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 56px 0 24px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 36px 0 8px;
}

.blog-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #e8eaf2;
    margin: 28px 0 8px;
}

.blog-content h2 a,
.blog-content h3 a,
.blog-content h4 a {
    color: inherit;
    text-decoration: none;
}

.blog-content h2 a:hover,
.blog-content h3 a:hover,
.blog-content h4 a:hover {
    color: inherit;
}

.blog-content p {
    margin-bottom: 20px;
    color: #e8eaf2;
}

.blog-content a {
    color: var(--blue-bright);
    transition: color var(--transition);
}

.blog-content a:hover {
    color: #60a5fa;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    display: block;
}

.blog-content ul, .blog-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.blog-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 17px;
}

.blog-content blockquote {
    border-left: 3px solid var(--blue-bright);
    padding: 14px 20px;
    margin: 24px 0;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: #c8cdd8;
    font-style: italic;
}

.blog-content pre,
.blog-content code {
    background: #0f1420;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e8eaf2;
}

.blog-content pre {
    padding: 20px;
    overflow-x: auto;
    margin: 24px 0;
}

.blog-content code {
    padding: 2px 6px;
}

.blog-content p[id^="viewer-"] {
    margin-bottom: 20px;
}

.blog-content .button-icon {
    margin-left: 6px;
}

.as-toc {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--blue-bright);
    border-radius: 14px;
    padding: 24px 28px;
    margin: 32px 0;
}

.as-toc-title {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 16px;
}

.as-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.as-toc-item {
    font-size: 17px;
    color: var(--muted);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

.as-toc-item:hover {
    color: var(--blue-bright);
}

.as-toc-h3 {
    padding-left: 16px;
    font-size: 15px;
}

.as-toc-h4 {
    padding-left: 32px;
    font-size: 15px;
}

.as-legacy-content h2,
.as-legacy-content h3,
.as-legacy-content h4,
.as-text-block h2,
.as-text-block h3,
.as-text-block h4 {
    scroll-margin-top: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.as-legacy-content h2,
.as-text-block h2 {
    font-size: 32px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.9), 0 0 20px rgba(59, 130, 246, 0.7), 0 0 40px rgba(59, 130, 246, 0.5);
    margin: 56px 0 24px;
}

.as-legacy-content h3,
.as-text-block h3 {
    font-size: 24px;
}

.as-legacy-content h4,
.as-text-block h4 {
    font-size: 20px;
}

.as-text-block ul,
.as-legacy-content ul {
    list-style: none;
    padding-left: 1.5em;
    margin: 0 0 16px 0;
}

.as-text-block ul li,
.as-legacy-content ul li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 8px;
    font-size: 17px;
}

.as-text-block ul li::before,
.as-legacy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
    line-height: 1.3;
}

.as-text-block ol,
.as-legacy-content ol {
    list-style: none;
    padding-left: 1.5em;
    margin: 0 0 16px 0;
    counter-reset: ol-counter;
}

.as-text-block ol li,
.as-legacy-content ol li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 8px;
    font-size: 17px;
    counter-increment: ol-counter;
}

.as-text-block ol li::before,
.as-legacy-content ol li::before {
    content: counter(ol-counter) ".";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* ── Related Posts ─────────────────────────────────────────── */
.related-posts-section {
    padding: 80px 20px;
}

@media (max-width: 767px) {
    .related-posts-section {
        padding: 40px 20px;
    }
}

.related-posts-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.related-posts-header {
    text-align: center;
    margin-bottom: 48px;
}

.related-posts-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin: 8px 0 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.related-post-card {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}

.related-post-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.related-post-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(7,9,14,0.8));
}

.related-post-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue);
    padding: 4px 10px;
    border-radius: 4px;
}

.related-post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-post-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.related-post-excerpt {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
}

.blog-share-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    margin-right: 4px;
}

.blog-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid #243247;
    background: #1d2839;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.blog-share-btn:hover {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.related-post-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Blog Post Footer ──────────────────────────────────────── */
.blog-post-footer {
    display: flex;
    gap: 14px;
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
    .blog-post-footer {
        flex-direction: column;
    }
}

/* ── Highlights Card ───────────────────────────────────────── */
.as-notice {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 60px rgba(0,0,0,0.6), 0 4px 14px rgba(0,0,0,0.4);
    margin: 28px 0;
}

.as-notice-inner,
.as-notice-body {
    margin: 0 !important;
    padding: 0 !important;
}

.as-notice h3.as-notice-title {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: none;
}

.as-notice h3.as-notice-title::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 17l-6.2 4.3 2.4-7.4L2 9.4h7.6z'/%3E%3C/svg%3E") center/14px no-repeat;
    flex-shrink: 0;
}

.as-notice-content {
    background: var(--card);
    padding: 0;
}

.as-notice .as-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: notice-counter;
}

.as-notice .as-list li {
    padding: 20px 22px;
    border-right: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    counter-increment: notice-counter;
    position: static;
    color: var(--text);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 300;
}

.as-notice .as-list li:nth-child(2n) { border-right: none; }
.as-notice .as-list li:nth-last-child(-n+2) { border-bottom: none; }

/* ── Pros & Cons ───────────────────────────────────────────── */
.as-pros-cons {
    width: 100%;
    margin: 8px 0 28px 0;
}

.as-pros-cons-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.as-pros {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
    padding: 0;
    background: transparent;
    border: none;
}

.as-cons {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
    padding: 0;
    background: transparent;
    border: none;
}

.as-pros,
.as-cons {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
}

.as-pros-header {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    padding: 0;
}

.as-cons-header {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
    padding: 0;
}

.as-pros-label,
.as-cons-label {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-pros-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}

.as-cons-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}

.as-pros-list,
.as-cons-list {
    background: var(--card);
    padding: 16px 20px 16px 1px;
    flex: 1;
}

.as-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    counter-reset: none;
}

.as-list li {
    font-size: 17px;
    color: var(--text);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    position: static;
    font-weight: 300;
}

.as-list li::before { display: none; }

.as-notice .as-list li::before {
    content: "0" counter(notice-counter);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 36px;
    position: static;
    display: block;
}

.as-pros .as-list li::before,
.as-list.as-list-pros li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    position: static;
}

.as-cons .as-list li::before,
.as-list.as-list-cons li::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    position: static;
}

/* ── Product Table ─────────────────────────────────────────── */
.as-product-table {
    width: 100%;
    margin: 32px 0;
}

.as-product-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.as-product-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 0;
}

.as-product-card:hover {
    box-shadow: 0 0 0 1px rgba(59,130,246,0.3), 0 20px 60px rgba(0,0,0,0.6);
}

.as-product-body {
    padding: 20px 24px;
    background: #0b0e17;
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.as-product-body a {
    color: var(--text);
    text-decoration: none;
    pointer-events: none;
}

.as-product-body p {
    margin-bottom: 16px;
}

.as-product-img {
    flex-shrink: 0;
    width: 180px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.as-product-img img {
    width: 140px !important;
    height: 140px !important;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    display: block;
    margin: 0 !important;
    border: none !important;
}

.as-product-content {
    background: var(--card);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
}

.as-product-info { flex: 1; }

.as-product-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.as-product-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.4);
}

.as-product-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 8px 0;
}

.as-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.as-product-buttons {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: center;
}

.as-btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

.as-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37,99,235,0.6);
    color: #fff;
}

.as-btn-primary,
.as-btn-primary:visited {
    color: #fff !important;
}

.star-rating-wrap {
    position: relative;
    display: inline-block;
    font-size: 18px;
}

.star-rating-empty {
    color: #444e63;
}

.star-rating-filled {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #FBBC05;
}

/* ── WordPress Elements ────────────────────────────────────── */
.wp-block-spacer { display: block; }

.wp-block-ub-styled-box,
.ub-styled-box {
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.2);
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 80px;
}

.sidebar-widget {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

/* ── Subscribe Widget ──────────────────────────────────────── */
.sidebar-subscribe {
    background: var(--card);
    border: 1px solid var(--border);
}

.sidebar-subscribe-inner { padding: 24px 20px; }

.sidebar-subscribe-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-bright);
    display: block;
    margin-bottom: 10px;
}

.sidebar-subscribe-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.sidebar-subscribe-desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 16px;
}

.sidebar-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.sidebar-subscribe-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: #fff;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    box-sizing: border-box;
}

.sidebar-subscribe-input:focus {
    outline: none;
    border-color: var(--blue-bright);
}

.sidebar-subscribe-input::placeholder { color: var(--muted); }

.sidebar-subscribe-btn {
    width: 100%;
    padding: 11px;
    font-size: 14px;
}

.sidebar-subscribe-success {
    font-size: 14px;
    color: #34d399;
    margin-bottom: 8px;
}

.sidebar-subscribe-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin: 0;
}

/* ── Recent Posts ──────────────────────────────────────────── */
.sidebar-recent-list { display: flex; flex-direction: column; }

.sidebar-recent-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-recent-item:hover { background: rgba(255,255,255,0.03); }

.sidebar-recent-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.sidebar-recent-img-placeholder {
    background: linear-gradient(135deg, #0d1420 0%, #0f1a2e 100%);
}

.sidebar-recent-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.sidebar-recent-title {
    font-size: 15px;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}

.sidebar-recent-item:hover .sidebar-recent-title { color: var(--blue-bright); }
.sidebar-recent-date { font-size: 12px; color: var(--muted); }

/* ── Categories ────────────────────────────────────────────── */
.sidebar-cats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
}

.sidebar-cat-item {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 5px 14px;
    text-decoration: none;
    transition: all var(--transition);
}

.sidebar-cat-item:hover {
    color: var(--blue-bright);
    border-color: rgba(59,130,246,0.3);
    background: rgba(59,130,246,0.05);
}

/* ── Blog Search ────────────────────────────────────────────── */
.blog-search-wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto 32px;
    display: flex;
    gap: 8px;
}

.blog-search-input {
    flex: 1;
    background: #1d2839;
    border: 1px solid #243247;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.blog-search-input:focus {
    border-color: #2563eb;
}

.blog-search-input::placeholder {
    color: #6b7280;
}

.blog-search-btn {
    background: #2563eb;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.blog-search-btn:hover {
    background: #3b82f6;
}

.blog-search-results-label {
    margin-bottom: 24px;
    font-size: 16px;
    color: #94a3b8;
}

.blog-search-results-label strong {
    color: #fff;
}

.blog-search-results-label a {
    color: #2563eb;
    margin-left: 8px;
}

/* ── Blog Grid ─────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all var(--transition);
}

.blog-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-3px);
}

.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-img-placeholder {
    background: linear-gradient(135deg, #0d1420 0%, #0f1a2e 100%);
}

.blog-card-body { padding: 20px; }

.blog-card-cat {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.blog-card:hover .blog-card-title { color: var(--blue-bright); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.blog-card-read {
    color: var(--blue-bright);
    font-weight: 500;
}

.blog-loading, .blog-empty {
    text-align: center;
    color: var(--muted);
    padding: 60px 0;
    font-size: 16px;
}

/* ── Blog Pagination ───────────────────────────────────────── */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.blog-page-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.blog-page-btn:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
}

.blog-page-info { font-size: 14px; color: var(--muted); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
    .as-product-card { flex-direction: column; }
    .as-product-img img { width: 100%; height: 160px; }
    .as-product-buttons { width: 100%; }
    .as-btn-primary { width: 100%; text-align: center; }
    .as-pros-cons-inner { grid-template-columns: 1fr; }
    .as-notice .as-list { grid-template-columns: 1fr; }
}

/* ── Affiliatable Product Cards ────────────────────────────── */
.affiliatable-accordion-sorting {
    margin: 0 0 16px 0;
}

.cg-box-accord-one {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
    margin-bottom: 16px;
}

.cg-tbl-row {
    display: flex;
    align-items: stretch;
    background: #0f1420;
}

.cg-tbl-img-col {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    position: relative;
}

.cg-row-number {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cg-img-1 {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    display: block;
    margin: 0 !important;
    border: none !important;
}

.cg-tbl-desc-col {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cg-tbl-ribbon {
    margin-bottom: 8px;
}

.cg-tbl-ribbon small {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.4);
}

.cg-table-title {
    font-family: var(--font-heading) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    line-height: 1.3;
    display: block;
    margin-bottom: 8px;
}

.cg-table-title:hover {
    color: var(--blue-bright) !important;
}

.cg-tbl-ul {
    display: none;
}

.cg-tbl-btn-col {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

.cg-tbl-rate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aff-score {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

.aff-score::before {
    content: '★ ';
}

.cg-one-button,
.cg-btn {
    display: inline-block !important;
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(37,99,235,0.4) !important;
    border: none !important;
}

.cg-one-button:hover,
.cg-btn:hover {
    box-shadow: 0 6px 20px rgba(37,99,235,0.6) !important;
    color: #fff !important;
}

/* ── Accordion Body Text ───────────────────────────────────── */
.cg-box-accord-content {
    background: #0b0e17;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 24px;
}

.cg-text {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
}

.cg-text p {
    margin-bottom: 16px;
}

.cg-text a {
    color: var(--blue-bright);
}

/* ── Affiliatable Pros Cons ────────────────────────────────── */
.cg-pc-box-two {
    padding: 0 24px 20px;
    background: #0b0e17;
}

.cg-pc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cg-item-pros {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
}

.cg-item-cons {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.5);
}

.cg-pros-name {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.cg-cons-name {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.cg-item-pros ul,
.cg-item-cons ul {
    list-style: none;
    padding: 14px 20px;
    margin: 0;
    background: #0f1420;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cg-item-pros ul li,
.cg-item-cons ul li {
    font-size: 17px;
    color: var(--text);
    line-height: 1.5;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
}

.cg-item-pros ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    margin-top: 8px;
}

.cg-item-cons ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ── Comparison Table at Top ───────────────────────────────── */
.cg-table-four {
    display: none;
}

/* ── Remove leftover WordPress junk ───────────────────────── */
.cg-tbl-ul { display: none; }
.wp-block-ub-divider { display: none; }
.product-box-pros-cons { background: #0b0e17; }
.wp-block-heading {}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
    .cg-tbl-row { flex-direction: column; }
    .cg-tbl-img-col { width: 100%; }
    .cg-tbl-btn-col { width: 100%; }
    .cg-one-button { width: 100%; text-align: center; }
    .cg-pc-row { grid-template-columns: 1fr; }
}

/* ── Admin Shell ───────────────────────────────────────────── */
.admin-shell {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 32px;
    height: 60px;
    background: var(--surface);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-nav-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-right: auto;
}

.admin-badge {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--blue-bright);
    border: 1px solid var(--blue);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.admin-nav-links {
    display: flex;
    gap: 8px;
}

.admin-nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.admin-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.admin-nav-logout {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.admin-nav-logout:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.admin-main {
    flex: 1;
    padding: 40px 32px;
}

.admin-page-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.admin-stat-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
}

.admin-stat-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--blue-bright);
    line-height: 1;
    margin-bottom: 8px;
}

.admin-stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    font-family: var(--font-heading);
}

/* ── Admin Login ───────────────────────────────────────────── */
.admin-login-shell {
    min-height: 100vh;
    background: var(--black);
}

.admin-login-wrap {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-login-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-field label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    font-family: var(--font-heading);
}

.admin-input {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.admin-input:focus {
    border-color: var(--blue);
}

.admin-btn-primary {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.admin-btn-primary:hover {
    background: var(--blue-bright);
}

.admin-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 8px;
    padding: 14px 16px;
    color: #f87171;
    font-size: 14px;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.as-faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.as-faq-item {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
}

.as-faq-question {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.as-faq-question::-webkit-details-marker { display: none; }

.as-faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--blue-bright);
    transition: transform 0.2s;
}

.as-faq-item[open] .as-faq-question::after {
    transform: rotate(45deg);
}

.as-faq-answer {
    font-size: 17px;
    color: #c8cdd8;
    line-height: 1.8;
    font-weight: 300;
    padding: 16px 16px 20px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.as-faq-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.9), 0 0 20px rgba(59, 130, 246, 0.7), 0 0 40px rgba(59, 130, 246, 0.5);
    scroll-margin-top: 100px;
    margin-top: 56px;
    margin-bottom: 24px;
}

/* ── Admin Pages ───────────────────────────────────────────── */
.admin-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-shrink: 0;
}

.admin-toolbar {
    margin-bottom: 24px;
}

.admin-toolbar .admin-input {
    max-width: 400px;
}

.admin-back-link {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.admin-back-link:hover { color: #fff; }

.admin-table-wrap {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.admin-table-title {
    color: #fff !important;
    font-weight: 400;
    max-width: 400px;
}

.admin-table-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.admin-action-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: none;
    color: var(--text);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.admin-action-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.admin-action-btn.edit:hover { color: var(--blue-bright); border-color: var(--blue); }
.admin-action-btn.delete:hover { color: #f87171; border-color: #ef4444; }

.admin-status-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.admin-status-badge.published { background: rgba(16,185,129,0.15); color: #10b981; }
.admin-status-badge.draft { background: rgba(234,179,8,0.15); color: #eab308; }

.admin-editor-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.admin-editor-badge.blocks { background: rgba(37,99,235,0.15); color: var(--blue-bright); }
.admin-editor-badge.legacy { background: rgba(156,163,180,0.1); color: var(--text); }

/* ── Admin Edit Layout ── */
.admin-edit-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.admin-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 20px 0;
}

.admin-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.admin-card .admin-textarea {
    width: 100%;
    box-sizing: border-box;
}

.admin-field-hint {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
    display: block;
}

.admin-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
}

/* ── Block Editor ── */
.admin-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-block {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.admin-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-block-type {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}

.admin-block-controls {
    display: flex;
    gap: 6px;
}

.admin-block-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-block-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.admin-block-btn.danger:hover { color: #f87171; border-color: #ef4444; }
.admin-block-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.admin-block-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.admin-quill-container {
    background: var(--surface);
    border-radius: 0 0 8px 8px;
    min-height: 300px;
}

.admin-quill-container .ql-toolbar {
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px 8px 0 0;
    position: relative;
    z-index: 1;
}

.admin-quill-container .ql-container {
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px;
    min-height: 260px;
    font-size: 15px;
    color: var(--text);
}

.admin-quill-container .ql-editor {
    min-height: 260px;
    color: var(--text);
}

.ql-toolbar .ql-stroke { stroke: var(--text) !important; }
.ql-toolbar .ql-fill { fill: var(--text) !important; }
.ql-toolbar .ql-picker { color: var(--text) !important; }
.ql-toolbar button:hover .ql-stroke { stroke: #fff !important; }
.ql-toolbar button:hover .ql-fill { fill: #fff !important; }

.admin-quill-wrapper {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.admin-add-blocks {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.admin-add-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7280;
}

.admin-add-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: none;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.admin-add-btn:hover {
    color: var(--blue-bright);
    border-color: var(--blue);
}

/* ── Admin Modal ── */
.admin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.admin-modal {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 440px;
    width: 90%;
}

.admin-modal-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px 0;
}

.admin-modal-body {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.admin-modal-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.admin-btn-ghost {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: none;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.admin-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.admin-btn-danger {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: #dc2626;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.admin-btn-danger:hover { background: #ef4444; }

/* ── Admin Toast ── */
.admin-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 9999;
}

.admin-toast.success { background: #065f46; color: #10b981; border: 1px solid #10b981; }
.admin-toast.error { background: #7f1d1d; color: #f87171; border: 1px solid #ef4444; }

/* ── Admin FAQ ── */
.admin-faq-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin-bottom: 14px;
}

.admin-block-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.admin-block-preview-product {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.admin-block-preview-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-block-preview-num {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--blue-bright);
}

.admin-block-preview-name {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.admin-block-preview-label {
    flex: 1;
    font-size: 14px;
    color: var(--text);
}

.admin-block-preview-text {
    flex: 1;
    font-size: 14px;
    color: var(--text);
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-block-edit-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--blue);
    background: none;
    color: var(--blue-bright);
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s;
}

.admin-block-edit-btn:hover {
    background: var(--blue);
    color: #fff;
}

.admin-block-edit-mode {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Upload Page ───────────────────────────────────────────── */
.upload-prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.upload-prep-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
}

.upload-prep-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.upload-prep-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.upload-prep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-prep-list li {
    font-size: 14px;
    color: var(--text);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.upload-prep-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue-bright);
}

.upload-box {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px;
}

.upload-box-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
}

.upload-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    display: block;
    margin-bottom: 8px;
}

.upload-dropzone {
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 60px 24px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    margin-bottom: 24px;
}

.upload-dropzone.dragging {
    border-color: var(--blue);
    background: rgba(37,99,235,0.05);
}

.upload-dropzone-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.upload-dropzone-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.upload-dropzone-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.upload-dropzone-limit {
    font-size: 14px;
    color: #6b7280;
    margin-top: 14px;
}

.upload-queue {
    background: var(--surface);
    border-radius: 14px;
    padding: 20px;
}

.upload-queue-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.upload-queue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.upload-queue-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.upload-queue-name {
    font-size: 14px;
    color: #fff;
}

.upload-queue-size {
    font-size: 14px;
    color: #6b7280;
}

.upload-queue-status {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.upload-queue-status.pending { background: rgba(156,163,180,0.1); color: var(--text); }
.upload-queue-status.uploading { background: rgba(234,179,8,0.15); color: #eab308; }
.upload-queue-status.done { background: rgba(16,185,129,0.15); color: #10b981; }
.upload-queue-status.failed { background: rgba(239,68,68,0.15); color: #ef4444; }

.upload-no-project {
    text-align: center;
    padding: 80px 24px;
}

.upload-no-project-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.upload-no-project-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.upload-no-project-sub {
    font-size: 17px;
    color: var(--text);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ── Dashboard ─────────────────────────────────────────────── */
.dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 0 0;
}

.dashboard-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dashboard-tab {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 24px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.dashboard-tab:hover { color: #fff; }
.dashboard-tab.active { color: var(--blue-bright); border-bottom-color: var(--blue-bright); }

.dashboard-loading {
    color: var(--text);
    padding: 60px 0;
    text-align: center;
}

.dashboard-empty {
    text-align: center;
    padding: 80px 24px;
}

.dashboard-empty-icon { font-size: 64px; margin-bottom: 24px; }

.dashboard-empty-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.dashboard-empty-sub {
    font-size: 17px;
    color: var(--text);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Projects */
.dashboard-projects {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-project-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.dashboard-project-card.active {
    border-color: rgba(37,99,235,0.4);
}

.dashboard-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.dashboard-project-header:hover { background: rgba(255,255,255,0.02); }

.dashboard-project-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.dashboard-project-date {
    font-size: 14px;
    color: #6b7280;
}

.dashboard-project-chevron {
    font-size: 14px;
    color: #6b7280;
}

.dashboard-project-body {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-section-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.dashboard-file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.dashboard-file-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.dashboard-file-name {
    flex: 1;
    font-size: 14px;
    color: #fff;
}

.dashboard-file-size {
    font-size: 14px;
    color: #6b7280;
}

.dashboard-file-empty {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.dashboard-upload-area {
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.2s;
}

.dashboard-upload-area:hover { border-color: rgba(37,99,235,0.4); }

.dashboard-upload-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.dashboard-upload-text {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

.dashboard-upload-inner .btn {
    padding: 10px 24px;
    display: inline-block;
}

/* Messages */
.dashboard-messages {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.dashboard-message {
    padding: 14px 16px;
    border-radius: 14px;
    max-width: 80%;
}

.dashboard-message.admin {
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.2);
    align-self: flex-start;
}

.dashboard-message.client {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    align-self: flex-end;
}

.dashboard-message-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.dashboard-message-body {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.dashboard-message-input {
    display: flex;
    flex-direction: column;
}

/* Status badges */
.dashboard-status-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}

.status-waiting { background: rgba(234,179,8,0.15); color: #eab308; }
.status-received { background: rgba(59,130,246,0.15); color: #60a5fa; }
.status-progress { background: rgba(139,92,246,0.15); color: #a78bfa; }
.status-revision { background: rgba(239,68,68,0.15); color: #f87171; }
.status-approval { background: rgba(251,146,60,0.15); color: #fb923c; }
.status-complete { background: rgba(16,185,129,0.15); color: #10b981; }

/* Orders */
.dashboard-orders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-order-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
}

.dashboard-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dashboard-order-number {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.dashboard-order-date {
    font-size: 14px;
    color: #6b7280;
}

.dashboard-order-total {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-bright);
}

.dashboard-order-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-order-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text);
}

/* Account */
.dashboard-account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dashboard-account-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-account-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.dashboard-feedback {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.dashboard-feedback.success { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.dashboard-feedback.error { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* ── Cart Sidebar ──────────────────────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.cart-sidebar-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s;
}

.cart-sidebar-close:hover { color: #fff; }

.cart-sidebar-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
}

.cart-sidebar-empty-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 8px;
}

.cart-sidebar-empty-text {
    font-size: 17px;
    color: var(--text);
    margin: 0;
}

.cart-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-sidebar .btn {
    padding: 14px 24px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
}

.cart-item-info { flex: 1; }

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cart-item-tier {
    font-size: 14px;
    color: var(--blue-bright);
    margin-bottom: 6px;
}

.cart-item-addons {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-addon {
    font-size: 14px;
    color: #6b7280;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.2s;
}

.cart-item-remove:hover { color: #ef4444; }

.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.navbar-drawer-cart {
    background: none;
    border: none;
    color: inherit;
    font-size: inherit;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

@media (max-width: 480px) {
    .cart-sidebar { width: 100vw; }
}

/* ── Checkout ──────────────────────────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
    align-items: start;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}

.checkout-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.checkout-card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.checkout-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-discount {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.checkout-discount-msg {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.checkout-discount-msg.success { background: rgba(16,185,129,0.1); color: #10b981; border: 1px solid rgba(16,185,129,0.2); }
.checkout-discount-msg.error { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

.checkout-stripe-wrapper {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
}

.checkout-stripe-element { min-height: 24px; }

.checkout-secure {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 14px;
}

.checkout-secure i { margin-right: 6px; color: #10b981; }

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.checkout-summary-item-name {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2px;
}

.checkout-summary-item-tier {
    font-size: 14px;
    color: var(--blue-bright);
    margin-bottom: 4px;
}

.checkout-summary-addon {
    font-size: 14px;
    color: #6b7280;
}

.checkout-summary-item-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.checkout-summary-totals {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text);
}

.checkout-summary-row.discount { color: #10b981; }

.checkout-summary-row.total {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
}

.checkout-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text);
}

.checkout-trust-item i {
    color: var(--blue-bright);
    width: 16px;
    flex-shrink: 0;
}

/* ── Order Confirmation ── */
.confirmation-box {
    text-align: center;
    max-width: 560px;
    padding: 24px;
}

.confirmation-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 24px;
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.confirmation-sub {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.confirmation-details {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text);
}

.confirmation-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

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

/* ── Admin Order Expand ── */
.admin-order-expand {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
}

.admin-order-expand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.admin-order-expand-label {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 14px;
}

.admin-order-expand-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
}

/* ── YouTube Page ──────────────────────────────────────────── */
.yt-hero {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yt-hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 24px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.yt-hero-sub {
    font-size: 18px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.yt-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.yt-hero-stats {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    background: rgba(7,9,14,0.85);
    border-top: 1px solid rgba(59,130,246,0.3);
    border-bottom: 1px solid rgba(59,130,246,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px 10px rgba(59,130,246,0.2);
}

.yt-hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    gap: 8px;
    transition: background 0.2s;
}

.yt-hero-stat:hover {
    background: rgba(59,130,246,0.08);
}

.yt-hero-stat i {
    font-size: 24px;
    color: var(--blue-bright);
    margin-bottom: 4px;
}

.yt-hero-stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.yt-hero-stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
}

.yt-hero-stat-divider {
    width: 1px;
    background: rgba(59,130,246,0.2);
    align-self: stretch;
    margin: 16px 0;
}

.yt-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-danger {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-danger:hover { background: #cc0000; }

/* Video Grid */
.yt-video-section {
    border-top: 1px solid rgba(59,130,246,0.3);
    box-shadow: inset 0 20px 40px -10px rgba(59,130,246,0.15);
}

.yt-video-section .section-title {
    font-size: clamp(36px, 5vw, 64px);
}

.yt-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yt-video-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
}

.yt-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.yt-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Topics */
.yt-topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.yt-topic-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.2s;
}

.yt-topic-card:hover {
    border-color: rgba(59,130,246,0.3);
}

.yt-topic-icon {
    font-size: 28px;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

.yt-topic-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.yt-topic-desc {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

/* Partner Section */
.yt-partner-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

.yt-partner-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.yt-partner-desc {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.yt-audience-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 16px;
    margin-top: 32px;
}

.yt-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 8px;
}

.yt-audience-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
}

.yt-audience-item i {
    color: var(--blue-bright);
    width: 16px;
}

.yt-offering-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yt-offering-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #cbd5e1;
}

.yt-offering-item i {
    color: #10b981;
    width: 16px;
}

.yt-contact-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}

.yt-contact-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.yt-contact-sub {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .yt-partner-layout { grid-template-columns: 1fr; }
    .yt-video-grid { grid-template-columns: repeat(2, 1fr); }
    .yt-topics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .yt-video-grid { grid-template-columns: 1fr; }
    .yt-topics { grid-template-columns: 1fr; }
    .yt-stat { padding: 24px 24px; }
    .yt-stat-divider { display: none; }
}

/* ── Brands Section ── */
.yt-brands-section {
    background: #f8f9fa;
    padding: 48px 0;
}

.yt-brands-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 32px;
}

.yt-brands-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 60px;
}

.yt-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-brand-item img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.yt-brand-item:hover {
    opacity: 1;
}

.yt-brand-item img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.yt-brand-item:hover img {
    filter: grayscale(0%);
}

/* ── FAQ Page ──────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-group-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(59,130,246,0.2);
}

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

.faq-question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.4;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--blue-bright);
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    font-size: 17px;
    color: #c8cdd8;
    line-height: 1.8;
    font-weight: 300;
    padding-bottom: 20px;
    padding-top: 16px;
}

.faq-answer a {
    color: var(--blue-bright);
    text-decoration: none;
}

.faq-answer strong {
    color: #fff;
    font-weight: 700;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
}

.faq-cta p {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 20px;
}

/* ── Services Overview Page ── */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.services-overview-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.services-overview-card:hover {
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-4px);
}

.services-overview-img {
    height: 200px;
    position: relative;
}

.services-overview-img-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 1;
}

.services-overview-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

.services-overview-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.services-overview-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.services-overview-desc {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.services-overview-price {
    font-size: 17px;
    color: var(--text);
}

.services-overview-price strong {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--blue-bright);
    font-weight: 700;
}

.services-overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.services-overview-features span {
    font-size: 16px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.services-overview-features i {
    color: #10b981;
    font-size: 11px;
}

.services-overview-cta {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-top: auto;
    padding-top: 8px;
}

/* Why Cards */
.services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.services-why-icon {
    font-size: 32px;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

.services-why-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.services-why-desc {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-overview-grid { grid-template-columns: 1fr; }
    .services-why-grid { grid-template-columns: 1fr; }
}

/* ── About Page ── */
.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.about-section-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-body {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stat-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--blue-bright);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.about-gear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-gear-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
}

.about-gear-icon {
    font-size: 28px;
    color: var(--blue-bright);
    margin-bottom: 16px;
}

.about-gear-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.about-gear-desc {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.about-yt-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: start;
}

.about-yt-stat {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.about-yt-stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #ff0000;
    line-height: 1;
    margin-bottom: 8px;
}

.about-yt-stat-label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .about-story-layout { grid-template-columns: 1fr; }
    .about-yt-layout { grid-template-columns: 1fr; }
    .about-gear-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .about-gear-grid { grid-template-columns: 1fr; }
}

.as-table-wrap {
    overflow-x: auto;
    margin: 0 0 32px 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(99, 179, 255, 0.15);
    overflow: hidden;
}

.as-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 16px;
}

.as-table thead tr {
    background: linear-gradient(90deg, #0f2460, #1a4fbd, #0f2460);
}

.as-table th {
    padding: 18px 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-shadow: 0 0 20px rgba(99,179,255,0.6);
}

.as-table th:first-child {
    border-radius: 16px 0 0 0;
}

.as-table th:last-child {
    border-radius: 0 16px 0 0;
    border-right: none;
}

.as-table td {
    padding: 14px 24px;
    text-align: center;
    color: #94a3b8;
    border-right: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 15px;
    transition: all 0.2s;
}

.as-table td:first-child {
    font-weight: 700;
    color: #e2e8f0;
    background: rgba(37, 99, 235, 0.06);
}

.as-table td:last-child {
    border-right: none;
}

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

.as-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.as-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.as-table tbody tr:nth-child(odd) {
    background: #080e1c;
}

.as-table tbody tr:nth-child(even) {
    background: #0c1424;
}

.as-table tbody tr:hover td {
    background: #112044;
    color: #fff;
}

.as-table tbody tr:hover td:first-child {
    background: #112044;
}
