:root {
/* Fonts */
--font-primary: 'Aldrich', 'Orbitron', sans-serif;
--font-secondary: 'Exo 2', 'Rajdhani', sans-serif;
--font-accent: 'Orbitron', sans-serif;

/* Accent palette (purple -> red neon) mapped to legacy --teal-* names */
--teal-50: #fff1f2;   /* rose 50 */
--teal-100: #ffe4e6;  /* rose 100 */
--teal-200: #fecdd3;  /* rose 200 */
--teal-300: #fda4af;  /* rose 300 */
--teal-400: #fb7185;  /* rose 400 */
--teal-500: #f43f5e;  /* rose 500 */
--teal-600: #e11d48;  /* rose 600 */
--teal-700: #be123c;  /* rose 700 */
--teal-800: #9f1239;  /* rose 800 */
--teal-900: #881337;  /* rose 900 */
--teal-950: #4c0519;  /* rose 950 */

--violet-300: #d8b4fe;
--violet-400: #c084fc;
--violet-500: #a855f7;
--violet-600: #9333ea;
--violet-700: #7e22ce;
--dark-900: #070510;
--dark-800: #111111;
--dark-700: #1a1a1a;
--dark-600: #222222;
--dark-500: #2a2a2a;
--dark-400: #333333;
--dark-300: #444444;
--dark-200: #666666;
--dark-100: #888888;
--white: #ffffff;
--gray-50: #fafafa;
--gray-100: #f5f5f5;
--gray-200: #e5e5e5;
--gray-300: #d4d4d4;
--gray-400: #a3a3a3;
--gray-500: #737373;
--gray-600: #525252;
--gray-700: #404040;
--radius: 8px;
--radius-lg: 12px;
--radius-xl: 16px;
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
--electric: #fff1f2;
--electric-dim: rgba(255, 228, 230, 0.88);
/* Buttons: keep purple-led, rose as accent (not neon-solid) */
--accent-grad: linear-gradient(135deg, rgba(126, 34, 206, 0.95) 0%, rgba(168, 85, 247, 0.88) 45%, rgba(244, 63, 94, 0.65) 100%);
--accent-grad-hover: linear-gradient(135deg, rgba(168, 85, 247, 0.95) 0%, rgba(244, 63, 94, 0.68) 55%, rgba(225, 29, 72, 0.6) 100%);
--accent-grad-soft: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(244, 63, 94, 0.18), rgba(8, 5, 18, 0.92));
--glass: rgba(12, 8, 28, 0.65);
--glass-border: rgba(167, 139, 250, 0.22);
--scroll-progress: 0; /* 0..1 */
--scroll-dir: 1; /* -1 up, 1 down */
--scroll-velocity: 0; /* 0..1 */
/* Planet disk + canvas roots — same pigment (rgb components for rgba) */
--planet-root-rgb: 2, 1, 6;
}

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

/* Scrollbar: hidden at top, visible after scroll */
html {
    scrollbar-width: none; /* Firefox (hide at top) */
    scrollbar-color: transparent transparent;
}

html.page-scrolled {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(244, 63, 94, 0.55) rgba(8, 5, 18, 0.65);
}

/* Chromium/WebKit */
::-webkit-scrollbar {
    width: 0px; /* hidden at top */
}

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

::-webkit-scrollbar-thumb {
    background: transparent;
    border: 0;
    border-radius: 999px;
}

html.page-scrolled::-webkit-scrollbar {
    width: 10px;
}

html.page-scrolled::-webkit-scrollbar-track {
    background: rgba(8, 5, 18, 0.55);
}

html.page-scrolled::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.45), rgba(244, 63, 94, 0.7));
    border: 1px solid rgba(244, 63, 94, 0.22);
}

html.page-scrolled::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.6), rgba(244, 63, 94, 0.88));
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  background-color: #030208;
    background-image:
        radial-gradient(ellipse 120% 70% at 50% -15%, rgba(147, 51, 234, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 85% 55% at 100% 35%, rgba(244, 63, 94, 0.1) 0%, transparent 52%),
        radial-gradient(ellipse 65% 50% at 0% 75%, rgba(168, 85, 247, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse 90% 55% at 55% 105%, rgba(225, 29, 72, 0.05) 0%, transparent 58%),
        radial-gradient(ellipse 160% 100% at 50% 100%, rgba(2, 6, 18, 0.85) 0%, transparent 62%),
        linear-gradient(180deg, #05030c 0%, #030208 42%, #04030a 100%);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Futuristic HUD grid */
.tech-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(167, 139, 250, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 20%, transparent 72%);
    animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 48px 48px, 48px 48px; }
}

/* Distant galactic haze + star-field depth (under planet, over grid) */
.deep-space {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            162deg,
            transparent 18%,
            rgba(15, 23, 42, 0.22) 46%,
            rgba(30, 27, 75, 0.08) 50%,
            rgba(15, 23, 42, 0.18) 54%,
            transparent 82%
        ),
        radial-gradient(ellipse 110% 55% at 50% -8%, rgba(2, 6, 23, 0.55) 0%, transparent 58%),
        radial-gradient(ellipse 70% 45% at 8% 72%, rgba(59, 130, 246, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse 55% 40% at 94% 28%, rgba(88, 28, 135, 0.05) 0%, transparent 42%),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    mix-blend-mode: normal;
}

/* Galaxy vignette + canvas (stars, streaks & lightning) */
.galaxy-vignette {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Slightly lighter void behind planet so the disk silhouette reads */
    background: radial-gradient(
        ellipse 94% 74% at 50% 46%,
        transparent 14%,
        rgba(12, 10, 28, 0.35) 38%,
        rgba(var(--planet-root-rgb), 0.5) 54%,
        rgba(1, 0, 5, 0.98) 100%
    );
}

/* Planet disk — still black / shadowy, higher presence (was nearly invisible at ~0.38 opacity) */
.galaxy-vignette::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(60vw, 740px);
    aspect-ratio: 1 / 1;
    transform:
        translate(
            -50%,
            calc(-50% + (var(--scroll-dir) * var(--scroll-velocity) * 5px) + (var(--scroll-progress) * 3px))
        )
        scale(calc(1 + (var(--scroll-velocity) * 0.012)));
    border-radius: 50%;
    background:
        /* Thin atmospheric limb — defines the circle without brightening the body */
        radial-gradient(circle at 50% 50%, transparent 56%, rgba(55, 48, 95, 0.14) 72%, rgba(25, 22, 48, 0.22) 82%, rgba(8, 6, 18, 0.35) 92%, transparent 100%),
        radial-gradient(circle at 26% 22%, rgba(210, 208, 235, 0.018) 0%, rgba(var(--planet-root-rgb), 0) 26%),
        radial-gradient(circle at 72% 68%, rgba(var(--planet-root-rgb), 0.92) 0%, rgba(var(--planet-root-rgb), 0.42) 32%, transparent 58%),
        radial-gradient(circle at 44% 46%, rgba(var(--planet-root-rgb), 0.62) 0%, transparent 52%),
        radial-gradient(circle at 58% 58%, rgba(var(--planet-root-rgb), 0.52) 0%, transparent 48%),
        repeating-linear-gradient(-16deg, rgba(200, 198, 230, 0.008) 0 9px, rgba(var(--planet-root-rgb), 0.14) 9px 20px),
        radial-gradient(circle at 50% 52%, rgba(var(--planet-root-rgb), 0.98) 0%, rgba(var(--planet-root-rgb), 1) 46%, rgba(0, 0, 3, 1) 100%);
    opacity: calc(0.68 + (var(--scroll-progress) * 0.04) + (var(--scroll-velocity) * 0.06));
    filter: blur(calc(0.22px + (var(--scroll-velocity) * 0.16px)));
    box-shadow:
        inset calc(-92px + (var(--scroll-dir) * var(--scroll-velocity) * 40px)) 0 160px rgba(var(--planet-root-rgb), 0.88),
        inset 14px 0 56px rgba(210, 208, 235, 0.012),
        0 0 calc(52px + (var(--scroll-velocity) * 36px)) rgba(12, 8, 32, 0.75),
        0 0 calc(120px + (var(--scroll-velocity) * 24px)) rgba(var(--planet-root-rgb), 0.35),
        0 36px 120px rgba(0, 0, 0, 0.55);
    transition: transform 140ms ease-out, opacity 140ms ease-out, filter 140ms ease-out, box-shadow 140ms ease-out;
}

.galaxy-vignette::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(64vw, 800px);
    aspect-ratio: 1 / 1;
    transform:
        translate(-50%, -50%)
        rotate(calc((var(--scroll-progress) * 18deg) + (var(--scroll-dir) * var(--scroll-velocity) * 4deg)));
    border-radius: 50%;
    border: 1px solid rgba(120, 110, 180, 0.12);
    background:
        repeating-conic-gradient(
            from calc(var(--scroll-progress) * 1turn),
            rgba(var(--planet-root-rgb), 0.26) 0deg 3deg,
            transparent 3deg 12deg
        );
    mask: radial-gradient(circle at center, transparent 54%, black 60%, transparent 72%);
    -webkit-mask: radial-gradient(circle at center, transparent 54%, black 60%, transparent 72%);
    box-shadow:
        inset 0 0 56px rgba(var(--planet-root-rgb), 0.65),
        0 0 calc(28px + (var(--scroll-velocity) * 36px)) rgba(20, 16, 45, 0.5);
    opacity: calc(0.16 + (var(--scroll-velocity) * 0.08) + (var(--scroll-progress) * 0.04));
    transition: transform 140ms ease-out, opacity 140ms ease-out, box-shadow 140ms ease-out;
}

/* Lightning-style root tendrils (canvas) */
#planet-roots {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Wind Canvas - fixed behind everything */
#wind {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 5, 16, 0.88);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(192, 132, 252, 0.5) 20%, rgba(224, 242, 255, 0.35) 50%, rgba(192, 132, 252, 0.5) 80%, transparent 100%);
    opacity: 0.65;
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 12px;
    height: 68px;
    background: rgba(7, 5, 16, 0.88);
    z-index: 1001;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(7, 5, 16, 0.92);
    border-bottom-color: rgba(168, 85, 247, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

/* Member auth (injected by pluto1-auth.js) */
.nav-auth-li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-left: 0.25rem;
}

.nav-auth-link,
.nav-auth-btn {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    background: rgba(12, 8, 20, 0.55);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-auth-link:hover {
    color: var(--white);
    border-color: rgba(167, 139, 250, 0.35);
}

.nav-auth-btn {
    cursor: pointer;
    color: var(--gray-300);
    font-family: var(--font-accent);
}

.nav-auth-root {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.review-member-hint {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.55;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(167, 139, 250, 0.22);
    background: rgba(30, 20, 45, 0.45);
    margin-bottom: 1rem;
}

.review-member-hint code {
    font-size: 0.78rem;
    color: #e9d5ff;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* Brand image icon (provided artwork) */
.logo-icon {
    width: 43px;
    height: 43px;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.pluto1-icon {
    border-radius: 10px;
    box-shadow:
        0 0 0 1px rgba(224, 242, 255, 0.08),
        0 0 22px rgba(192, 132, 252, 0.22),
        0 0 52px rgba(147, 51, 234, 0.16);
    animation: iconZap 2.1s ease-in-out infinite;
}

@keyframes iconZap {
    0%, 100% { filter: saturate(1.05) brightness(1) drop-shadow(0 0 10px rgba(224, 242, 255, 0.18)); }
    48% { filter: saturate(1.1) brightness(1.02) drop-shadow(0 0 14px rgba(192, 132, 252, 0.3)); }
    52% { filter: saturate(1.2) brightness(1.08) drop-shadow(0 0 22px rgba(224, 242, 255, 0.35)); }
    55% { filter: saturate(1.1) brightness(1.02) drop-shadow(0 0 12px rgba(147, 51, 234, 0.22)); }
}

@keyframes electricFlicker {
    0%, 100% { filter: brightness(1); }
    10% { filter: brightness(1.4); }
    12% { filter: brightness(0.9); }
    15% { filter: brightness(1.6); }
    22% { filter: brightness(1.05); }
    35% { filter: brightness(1.35); }
    60% { filter: brightness(1.1); }
}

.logo .logo-accent {
    color: var(--teal-400);
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-left: 0.35rem;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .logo-tagline {
        display: none;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
  font-family: var(--font-accent);
  color: var(--gray-400);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover {
    color: var(--teal-400);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-400);
    transition: width 0.3s var(--ease-out);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--white);
    transition: all 0.3s var(--ease-out);
    border-radius: 1px;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(88, 28, 135, 0.15) 0%, transparent 55%),
        linear-gradient(180deg, rgba(7, 5, 16, 0.35) 0%, rgba(7, 5, 16, 0.82) 100%);
    z-index: 1;
}

/* Blend hero -> next section so it doesn't look cut off */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 5, 16, 0) 0%, rgba(7, 5, 16, 0.55) 55%, rgba(7, 5, 16, 0.85) 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: -10%;
    right: -5%;
    animation: glowFloat1 12s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: #5b21b6;
    bottom: -5%;
    left: -5%;
    animation: glowFloat2 15s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 720px;
    padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--accent-grad-soft);
  border: 1px solid rgba(244, 63, 94, 0.22);
  padding: 0.55rem 1.15rem;
  border-radius: 4px;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--electric);
  margin-bottom: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeInDown 0.8s var(--ease-out) forwards;
  box-shadow:
    0 0 32px rgba(168, 85, 247, 0.14),
    0 0 38px rgba(244, 63, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.hero-badge span {
  color: var(--electric);
  text-shadow:
    0 0 14px rgba(224, 242, 255, 0.32),
    0 0 22px rgba(192, 132, 252, 0.22);
}

.hero-badge .badge-icon {
    animation: iconZap 2.1s ease-in-out infinite;
}

/* legacy: badgeGlow replaced by iconZap */

.hero-badge svg {
    width: 48px;
    height: 24px;
    color: var(--teal-400);
}

.badge-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(265deg);
}

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

.hero-title {
  font-family: var(--font-primary);
  /* Big, but not overpowering on desktop */
  font-size: clamp(2.15rem, 4.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.title-line {
    display: block;
    animation: titleReveal 0.9s var(--ease-out) forwards;
    opacity: 0;
}

.title-line:first-child {
    animation-delay: 0.15s;
    color: var(--white);
}

.title-accent {
    background: linear-gradient(135deg, var(--electric), var(--teal-300), var(--teal-400), var(--teal-200));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 0.9s var(--ease-out) 0.3s forwards, shimmer 4s linear infinite;
    filter: drop-shadow(0 0 24px rgba(167, 139, 250, 0.35));
}

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

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
  opacity: 0;
}

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

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.65s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal-300);
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.45);
}

.stat-suffix {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--teal-400);
}

.stat-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  color: var(--gray-600);
  margin-top: 0.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.5), transparent);
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.35);
}

/* Side Scroll Progress Bar removed */

/* Hero Scroll Indicator (bottom center) */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: fadeInUp 0.8s var(--ease-out) 1s forwards;
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(167, 139, 250, 0.5);
  border-radius: 13px;
  position: relative;
  background: rgba(7, 5, 16, 0.6);
  backdrop-filter: blur(4px);
  box-shadow: 
    0 0 20px rgba(167, 139, 250, 0.4),
    0 0 40px rgba(147, 51, 234, 0.3),
    inset 0 0 20px rgba(167, 139, 250, 0.1);
  animation: scrollGlow 3s ease-in-out infinite;
}

@keyframes scrollGlow {
  0%, 100% {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 
      0 0 20px rgba(167, 139, 250, 0.4),
      0 0 40px rgba(147, 51, 234, 0.3),
      inset 0 0 20px rgba(167, 139, 250, 0.1);
  }
  50% {
    border-color: rgba(192, 132, 252, 0.8);
    box-shadow: 
      0 0 30px rgba(192, 132, 252, 0.6),
      0 0 60px rgba(147, 51, 234, 0.5),
      inset 0 0 30px rgba(192, 132, 252, 0.2);
  }
}

.scroll-indicator::before,
.scroll-indicator::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: linear-gradient(180deg, var(--teal-400), var(--electric));
  border-radius: 1px;
  opacity: 0.6;
  animation: electricSpark 1.5s ease-in-out infinite;
}

.scroll-indicator::before {
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0s;
}

.scroll-indicator::after {
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0.75s;
}

@keyframes electricSpark {
  0%, 100% {
    opacity: 0.3;
    height: 6px;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
  }
  50% {
    opacity: 0.8;
    height: 10px;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.8);
  }
}

.scroll-dot {
  width: 4px;
  height: 10px;
  background: linear-gradient(180deg, var(--teal-300), var(--teal-500), var(--electric));
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 
    0 0 12px rgba(167, 139, 250, 0.8),
    0 0 24px rgba(147, 51, 234, 0.5);
}

@keyframes scrollBounce {
  0%, 100% { 
    top: 6px; 
    opacity: 1;
    height: 10px;
  }
  50% { 
    top: 20px; 
    opacity: 0.6;
    height: 14px;
  }
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(167, 139, 250, 0.5);
  border-radius: 13px;
  position: relative;
  background: rgba(7, 5, 16, 0.6);
  backdrop-filter: blur(4px);
  box-shadow: 
    0 0 20px rgba(167, 139, 250, 0.4),
    0 0 40px rgba(147, 51, 234, 0.3),
    inset 0 0 20px rgba(167, 139, 250, 0.1);
  animation: scrollGlow 3s ease-in-out infinite;
}

.scroll-indicator::before,
.scroll-indicator::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: linear-gradient(180deg, var(--teal-400), var(--electric));
  border-radius: 1px;
  opacity: 0.6;
  animation: electricSpark 1.5s ease-in-out infinite;
}

.scroll-indicator::before {
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0s;
}

.scroll-indicator::after {
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 0.75s;
}

@keyframes electricSpark {
  0%, 100% {
    opacity: 0.3;
    height: 6px;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
  }
  50% {
    opacity: 0.8;
    height: 10px;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.8);
  }
}

@keyframes scrollGlow {
  0%, 100% {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 
      0 0 20px rgba(167, 139, 250, 0.4),
      0 0 40px rgba(147, 51, 234, 0.3),
      inset 0 0 20px rgba(167, 139, 250, 0.1);
  }
  50% {
    border-color: rgba(192, 132, 252, 0.8);
    box-shadow: 
      0 0 30px rgba(192, 132, 252, 0.6),
      0 0 60px rgba(147, 51, 234, 0.5),
      inset 0 0 30px rgba(192, 132, 252, 0.2);
  }
}

.scroll-dot {
  width: 4px;
  height: 10px;
  background: linear-gradient(180deg, var(--teal-300), var(--teal-500), var(--electric));
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 
    0 0 12px rgba(167, 139, 250, 0.8),
    0 0 24px rgba(147, 51, 234, 0.5);
}

@keyframes scrollBounce {
  0%, 100% { 
    top: 6px; 
    opacity: 1;
    height: 10px;
  }
  50% { 
    top: 20px; 
    opacity: 0.6;
    height: 14px;
  }
}

/* Buttons */
.btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--accent-grad);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow:
        0 0 0 1px rgba(255, 228, 230, 0.10),
        0 10px 28px rgba(0, 0, 0, 0.38),
        0 0 38px rgba(168, 85, 247, 0.12),
        0 0 28px rgba(244, 63, 94, 0.08);
    animation: btnGradientShift 5s ease infinite;
}

@keyframes btnGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    background: var(--accent-grad-hover);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 228, 230, 0.18),
        0 14px 38px rgba(0, 0, 0, 0.46),
        0 0 52px rgba(168, 85, 247, 0.16),
        0 0 34px rgba(244, 63, 94, 0.12);
}

.btn-outline {
    background: rgba(12, 8, 28, 0.4);
    color: var(--gray-300);
    border: 1px solid rgba(244, 63, 94, 0.22);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: rgba(244, 63, 94, 0.45);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(244, 63, 94, 0.18), 0 0 30px rgba(168, 85, 247, 0.14), inset 0 0 22px rgba(244, 63, 94, 0.06);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal-300);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-300), var(--electric), var(--teal-400));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  animation: electricText 3s linear infinite;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.5));
}

@keyframes electricText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-400), var(--electric), var(--teal-400), transparent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.6), 0 0 24px rgba(147, 51, 234, 0.4);
  animation: electricPulse 2s ease-in-out infinite;
}

@keyframes electricPulse {
  0%, 100% { 
    opacity: 0.6; 
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.6), 0 0 24px rgba(147, 51, 234, 0.4);
  }
  50% { 
    opacity: 1; 
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.9), 0 0 40px rgba(147, 51, 234, 0.6), 0 0 60px rgba(192, 132, 252, 0.4);
  }
}

.section-tag::after {
    animation-delay: 1.2s;
}



.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--teal-200), var(--electric));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: electricText 4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.4)) drop-shadow(0 0 40px rgba(147, 51, 234, 0.3));
}

.section-line {
    width: 72px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--teal-600), var(--electric-dim), var(--teal-400), transparent);
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.5);
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.75; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.25); }
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Sections - semi-transparent so wind shows through */
.services {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(7, 5, 16, 0.5);
}

.services::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 120px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 5, 16, 0.85) 0%, rgba(7, 5, 16, 0.5) 55%, rgba(7, 5, 16, 0.25) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}

/* Four membership cards - always 4 columns on desktop */
.memberships-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem;
}

@media (max-width: 1200px) {
  .memberships-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .memberships-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}

.service-card {
  background: linear-gradient(145deg, rgba(18, 12, 32, 0.92), rgba(10, 6, 20, 0.88));
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 4px 18px 4px 18px;
  padding: 1.5rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(1.15);
}

.popular-card .popular-badge,
.best-value .value-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  color: var(--white);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.5);
  z-index: 3;
}

.best-value .value-badge {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.price-sub {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  font-weight: 500;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-700), var(--electric-dim), var(--teal-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 2;
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.45);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(224, 242, 255, 0.06) 48%, transparent 62%);
    background-size: 220% 100%;
    opacity: 0;
    pointer-events: none;
    animation: cardSheen 4.5s ease-in-out infinite paused;
}

.purchasable-card {
    cursor: pointer;
}

.card-actions {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.9rem;
    position: relative;
    z-index: 3;
}

.card-buy-btn,
.card-inquire-btn {
    flex: 1;
    border-radius: 10px;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.65rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.22s ease;
}

.card-buy-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #f0fdf4;
    border: 1px solid rgba(134, 239, 172, 0.35);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.24);
}

.card-buy-btn:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.33);
}

.card-inquire-btn {
    background: rgba(12, 8, 28, 0.45);
    color: var(--gray-200);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.card-inquire-btn:hover {
    color: var(--white);
    border-color: rgba(226, 232, 240, 0.35);
}

.card-hover-buy {
    display: none !important;
}

.service-card:hover::after {
    opacity: 1;
    animation-play-state: running;
}

@keyframes cardSheen {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.45);
    box-shadow:
        0 0 0 1px rgba(224, 242, 255, 0.06),
        0 0 28px rgba(147, 51, 234, 0.22),
        0 0 60px rgba(88, 28, 135, 0.15),
        0 16px 40px rgba(0, 0, 0, 0.45);
    background: linear-gradient(145deg, rgba(22, 14, 40, 0.95), rgba(12, 8, 24, 0.92));
}

.service-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.5);
}

.service-card:hover h3 {
    color: var(--teal-300);
    text-shadow: 0 0 12px rgba(147, 51, 234, 0.4);
}

.service-card:hover .service-icon-wrap {
  background: rgba(147, 51, 234, 0.14);
  transform: scale(1.08);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.2);
}

.popular-card {
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.best-value {
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.service-card:hover .service-svg {
    color: var(--teal-300);
    filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.4));
}

.service-card:hover .price-range {
    background: rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.15);
}

.service-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.service-svg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.4s var(--ease-out);
}

.service-card:hover .service-svg-img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(265deg);
}

.service-card:hover .price-range {
    background: rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.15);
}

.service-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-badge {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    background: rgba(147, 51, 234, 0.12);
    color: #d8b4fe;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    border: 1px solid rgba(168, 85, 247, 0.25);
    letter-spacing: 0.05em;
}

.badge-labels {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.badge-labels span {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 500;
    width: 62px;
}

.service-svg {
    width: 24px;
    height: 24px;
    color: var(--teal-400);
    transition: color 0.3s ease;
}

.service-card:hover .service-svg {
    color: var(--teal-300);
}

.service-card h3 {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.price-range {
  display: inline-block;
  font-family: var(--font-accent);
  background: rgba(147, 51, 234, 0.08);
  color: var(--teal-400);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(147, 51, 234, 0.12);
  letter-spacing: 0.05em;
}

/* Pricing */
.pricing-info {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(7, 5, 16, 0.5);
}

.pricing-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-card {
  background: linear-gradient(155deg, rgba(18, 12, 34, 0.9), rgba(10, 6, 22, 0.88));
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 6px 20px 6px 20px;
  padding: 1.5rem;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card:hover {
    border-color: rgba(192, 132, 252, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(147, 51, 234, 0.12), 0 12px 36px rgba(0, 0, 0, 0.35);
    background: linear-gradient(155deg, rgba(24, 16, 42, 0.95), rgba(12, 8, 26, 0.92));
}

.pricing-card.highlight {
    border-color: rgba(192, 132, 252, 0.38);
    background: linear-gradient(155deg, rgba(26, 14, 48, 0.95), rgba(14, 8, 30, 0.9));
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.12);
}

.pricing-icon {
  width: 48px;
  height: 48px;
  background: rgba(147, 51, 234, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pricing-icon svg {
    width: 20px;
    height: 20px;
    color: var(--teal-400);
}

.pricing-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0 0.5rem;
  letter-spacing: 0.04em;
  min-height: 2.5rem;
}

.pricing-card p {
  color: var(--gray-500);
  margin: 0 auto 0.75rem;
  line-height: 1.5;
  font-size: 0.875rem;
  max-width: 90%;
}

.pricing-card .addon-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-400);
  margin: 0.75rem 0 0.5rem;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
}

.pricing-card .addon-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-card ul li {
    color: var(--gray-400);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
}

.pricing-card p {
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.65;
    font-size: 0.9rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    color: var(--gray-400);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
}

.pricing-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  color: var(--teal-400);
  line-height: 1;
}

/* Inquiry */
.inquiry {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(7, 5, 16, 0.5);
}

.inquiry-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.inquiry-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    background:
        radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 30% 40%, rgba(224, 242, 255, 0.04) 0%, transparent 45%);
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(165deg, rgba(16, 10, 32, 0.92), rgba(8, 5, 18, 0.9));
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 8px 24px 8px 24px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(224, 242, 255, 0.04), 0 24px 64px rgba(0, 0, 0, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--teal-300);
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group label .optional {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    color: var(--gray-600);
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    padding: 0.75rem 0.875rem;
    background: rgba(34, 34, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2), 0 0 12px rgba(147, 51, 234, 0.15);
  background: rgba(42, 42, 42, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: var(--gray-700);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-group select option {
    background: var(--dark-600);
    color: var(--white);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--gray-300);
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-weight: 500;
  background: rgba(147, 51, 234, 0.05);
}

.checkbox-label:hover {
  background: rgba(147, 51, 234, 0.12);
  border-color: rgba(147, 51, 234, 0.2);
  color: var(--teal-300);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--teal-500);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label:has(input:checked) {
    background: rgba(147, 51, 234, 0.08);
    border-color: rgba(147, 51, 234, 0.2);
    color: var(--teal-300);
}

/* Payment */
.payment {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(7, 5, 16, 0.5);
}

.payment .section-header {
    text-align: center;
}

.payment .section-line {
    margin-left: auto;
    margin-right: auto;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 340px));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    justify-items: stretch;
}

@media (max-width: 1100px) {
  .payment-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 960px;
  }
}

@media (max-width: 900px) {
  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 340px));
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .payment-methods {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
  }
}

.payment-card {
  background: linear-gradient(145deg, rgba(18, 12, 32, 0.92), rgba(10, 6, 20, 0.88));
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(1.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-400), var(--teal-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}

.payment-card:hover::before {
  transform: scaleX(1);
}

.payment-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 
    0 0 0 1px rgba(224, 242, 255, 0.06),
    0 20px 60px rgba(147, 51, 234, 0.3),
    0 0 100px rgba(88, 28, 135, 0.2);
  background: linear-gradient(145deg, rgba(22, 14, 40, 0.95), rgba(12, 8, 24, 0.92));
}

.payment-card h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.payment-card:hover h3 {
  color: var(--teal-300);
  text-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

.payment-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 90%;
}





.payment-card:hover {
    border-color: rgba(192, 132, 252, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(147, 51, 234, 0.18), 0 12px 36px rgba(0, 0, 0, 0.35);
    background: linear-gradient(160deg, rgba(24, 16, 44, 0.95), rgba(12, 8, 26, 0.92));
}

.payment-card:hover .payment-icon {
    transform: scale(1.06);
    border-color: rgba(147, 51, 234, 0.35);
    box-shadow: 0 0 16px rgba(147, 51, 234, 0.2);
}

.payment-card:hover .payment-icon svg {
    filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.4));
}

.payment-card:hover h3 {
    color: var(--teal-300);
    text-shadow: 0 0 12px rgba(147, 51, 234, 0.4);
}

.payment-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}



.payment-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.payment-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(167, 139, 250, 0.1);
}

.payment-logos .card-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.payment-logos .card-logo:hover {
  opacity: 1;
}

.payment-logos .visa-logo,
.payment-logos .mastercard-logo,
.payment-logos .paypal-logo,
.payment-logos .cashapp-logo {
  filter: none;
}

.visa-container,
.mastercard-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.625rem;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.08);
  flex-shrink: 0;
}

.visa-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: italic;
}

.stripe-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.08);
  flex-shrink: 0;
}

.stripe-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.visa-logo {
  height: 22px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.mastercard-logo {
  height: 26px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.payment-logos .card-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.payment-logos .card-logo:hover {
  opacity: 1;
}

.payment-logos .paypal-logo {
  height: 24px;
  filter: none;
}

.payment-logos .cashapp-logo {
  height: 26px;
  filter: none;
}

/* Contact */
.contact {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: rgba(7, 5, 16, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(145deg, rgba(18, 12, 32, 0.92), rgba(10, 6, 20, 0.88));
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(12px) saturate(1.15);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-400), var(--teal-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 
    0 0 0 1px rgba(224, 242, 255, 0.06),
    0 20px 60px rgba(147, 51, 234, 0.3),
    0 0 100px rgba(88, 28, 135, 0.2);
  background: linear-gradient(145deg, rgba(22, 14, 40, 0.95), rgba(12, 8, 24, 0.92));
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.4);
}

.contact-card:hover .contact-icon svg {
  color: var(--teal-300);
  filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.6));
}

.contact-card:hover h3 {
  color: var(--teal-300);
  text-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
}

.contact-card:hover p {
  color: var(--teal-300);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-400);
  transition: all 0.4s var(--ease-out);
}

.contact-card h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.contact-card p {
  font-family: var(--font-secondary);
  color: var(--teal-400);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.25rem;
}

.contact-card {
    background: linear-gradient(165deg, rgba(20, 14, 38, 0.88), rgba(10, 6, 22, 0.9));
    border: 1px solid rgba(167, 139, 250, 0.14);
    border-radius: 6px 18px 6px 18px;
    padding: 1.75rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    display: block;
    backdrop-filter: blur(12px);
    position: relative;
}



.contact-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.15), 0 0 40px rgba(147, 51, 234, 0.05), 0 8px 24px rgba(0, 0, 0, 0.25);
    background: rgba(14, 10, 26, 0.85);
}

.contact-card:hover .contact-icon {
    transform: scale(1.06);
    border-color: rgba(147, 51, 234, 0.35);
    box-shadow: 0 0 16px rgba(147, 51, 234, 0.2);
}

.contact-card:hover .contact-icon svg {
    filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.4));
}

.contact-card:hover h3 {
    color: var(--teal-300);
    text-shadow: 0 0 12px rgba(147, 51, 234, 0.4);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.875rem;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}

.contact-card:hover .contact-icon {
    transform: scale(1.06);
    border-color: rgba(147, 51, 234, 0.25);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--teal-400);
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.375rem;
    letter-spacing: 0.04em;
}

.contact-card p {
    font-family: 'Rajdhani', sans-serif;
    color: var(--teal-400);
    font-size: 1.05rem;
    font-weight: 500;
}

.copy-hint {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    color: var(--gray-600);
    margin-top: 0.375rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .copy-hint {
    opacity: 1;
}

/* Footer */
.footer {
    background: rgba(4, 2, 10, 0.92);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.footer-brand-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 0.75rem;
}

.footer-content > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Orbitron', sans-serif;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    transition: color 0.25s ease;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--teal-400);
}

.footer-copy {
    font-family: 'Orbitron', sans-serif;
    color: var(--dark-300);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.footer-logo span {
    color: var(--teal-400);
}

.footer-content > p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-location {
    color: var(--teal-400);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--teal-400);
}

.footer-copy {
    color: var(--dark-300);
    font-size: 0.8rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Responsive */
@media (min-width: 769px) and (max-width: 1000px) {
  .pricing-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pricing-content {
    grid-template-columns: 1fr;
  }

    .hero-title {
        font-size: clamp(2.4rem, 8.8vw, 4.2rem);
    }

    .hero-badge svg {
        width: 36px;
        height: 18px;
    }
}

@media (max-width: 768px) {
  .booking-form {
    padding: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .pricing-content {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(14, 10, 26, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 1.5rem 1.5rem;
        gap: 0;
        transition: right 0.35s var(--ease-out);
        border-left: 1px solid var(--dark-500);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 0.85rem;
    }

    .nav-auth-li {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-auth-li .nav-auth-link,
    .nav-auth-li .nav-auth-btn {
        display: block;
        padding: 1rem 0;
        border: none;
        background: transparent;
        text-align: left;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-badge {
        margin-bottom: 1.25rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.6rem;
    }

    .badge-mark {
        width: 22px;
        height: 22px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .stat-divider {
        width: 1px;
        height: 24px;
    }

    .stat-number, .stat-suffix {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.55rem;
    }

    .hero-scroll {
        bottom: 1.25rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .services, .pricing-info, .inquiry, .payment, .contact {
        padding: 3.5rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon-wrap {
        width: 38px;
        height: 38px;
        margin-bottom: 0.75rem;
    }

    .service-svg {
        width: 20px;
        height: 20px;
    }

    .service-card h3 {
        font-size: 0.8rem;
    }

    .service-card p {
        font-size: 0.825rem;
        margin-bottom: 0.625rem;
    }

    .price-range {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .service-badges {
        gap: 0.375rem;
    }

    .service-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .badge-labels span {
        font-size: 0.65rem;
        width: 52px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.375rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }

    .booking-form {
        padding: 1.25rem;
    }

    .payment-methods {
        grid-template-columns: minmax(0, 400px);
        justify-content: center;
        gap: 0.75rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .visa-logo {
    height: 16px;
    width: auto;
  }

  .mastercard-logo {
    height: 20px;
    width: auto;
  }

  .payment-logos {
    gap: 0.75rem;
  }

  .visa-container,
  .mastercard-container {
    padding: 0.25rem 0.5rem;
    background: rgba(167, 139, 250, 0.08);
  }

  .scroll-indicator {
    width: 22px;
    height: 36px;
  }

  .scroll-dot {
    width: 3px;
    height: 8px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 10.5vw, 2.2rem);
  }

  /* Smaller badge + smaller text on mobile */
  .hero-badge {
    padding: 0.32rem 0.55rem;
    font-size: 0.52rem;
    gap: 0.45rem;
    border-radius: 3px;
  }

  .hero-badge span {
    letter-spacing: 0.08em;
  }

  .badge-mark {
    width: 18px;
    height: 18px;
  }

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

  .hero-stats {
    gap: 0.75rem;
  }

  .stat-number, .stat-suffix {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-card {
    padding: 1.25rem;
  }

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

  .booking-form {
    padding: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.675rem 0.75rem;
    font-size: 0.9rem;
  }

  .btn-full {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: clamp(1.125rem, 6vw, 1.5rem);
  }

  .footer-links {
    flex-direction: column;
    gap: 0.625rem;
  }

  .footer-links a {
    font-size: 0.7rem;
  }
}

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

    .hero-badge {
        font-size: 0.55rem;
        gap: 0.375rem;
    }

    .hero-badge svg {
        width: 28px;
        height: 14px;
    }

    .stat-number, .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-grid {
        animation: none;
    }

    .section-tag::before,
    .section-tag::after,
    .pricing-card::before,
    .payment-card::after,
    .contact-card::before {
        animation: none;
    }

    .section-line,
    .btn-primary,
    .hero-badge .badge-icon,
    .service-card::after {
        animation: none;
    }

    .title-accent {
        animation: titleReveal 0.9s var(--ease-out) 0.3s forwards;
    }
}
