/* ═══════════════════════════════════════════════════════════
   WOLFIE - Mobile-First Premium CSS
   Galben principal · Albastru accent · Dark luxury
═══════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Primary: Golden Yellow */
  --gold:          #f5c842;
  --gold-dim:      #c99900;
  --gold-deep:     #a07800;
  --gold-glow:     rgba(245, 200, 66, 0.38);
  --gold-soft:     rgba(245, 200, 66, 0.09);
  --gold-border:   rgba(245, 200, 66, 0.22);

  /* Accent: Ice Blue */
  --blue:          #4fc3f7;
  --blue-dim:      #0288d1;
  --blue-glow:     rgba(79, 195, 247, 0.30);
  --blue-soft:     rgba(79, 195, 247, 0.08);
  --blue-border:   rgba(79, 195, 247, 0.20);

  /* Backgrounds */
  --bg:            #080c14;
  --bg-2:          #0b1120;
  --surface:       rgba(255, 255, 255, 0.04);

  /* Glass */
  --glass-border:  rgba(255, 255, 255, 0.07);
  --glass-blur:    clamp(16px, 3vw, 24px);
  --glass-shadow:  0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);

  /* Text */
  --text:          #edf2f9;
  --text-muted:    #8898b0;
  --text-dim:      #3d4e66;

  /* Typography */
  --font:          'Inter', system-ui, sans-serif;
  --font-display:  'Montserrat', 'Inter', sans-serif;

  /* Spacing */
  --section-py:    clamp(72px, 12vw, 140px);
  --px:            clamp(20px, 6vw, 48px);
  --max-w:         1180px;

  /* Radius */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   26px;

  /* Nav height */
  --nav-h:  68px;

  /* Transitions - slow, cinematic */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:        0.25s ease;
  --t-med:         0.55s var(--ease-out-expo);
  --t-slow:        0.9s  var(--ease-out-expo);
  --t-xslow:       1.2s  var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(245,200,66,0.8), 0 0 20px rgba(245,200,66,0.4);
  transition: width 0.1s ease-out;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 12, 20, 0.5); /* semi-transparent dark background */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10001; /* Above scroll progress bar */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 100px;
  height: auto;
  animation: preloader-pulse 2s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(245, 200, 66, 0.4));
}

@keyframes preloader-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(245, 200, 66, 0.4));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 25px rgba(245, 200, 66, 0.8));
  }
}

/* Sticky Top Offer Banner */
.top-offer-banner {
  position: relative;
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold);
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 101;
  letter-spacing: 0.02em;
}
.top-offer-banner a {
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.top-offer-banner a:hover {
  color: var(--gold);
}

::selection {
  background: var(--gold-glow);
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── Ambient Canvas ──────────────────────────────────────── */
#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ════════════════════════════════════════════════════════
   GLASS CARD
════════════════════════════════════════════════════════ */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition:
    transform    var(--t-slow),
    box-shadow   var(--t-slow),
    border-color var(--t-med);
}

/* Glass shimmer overlay */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.055) 0%,
    transparent 55%
  );
  pointer-events: none;
}

/* Hover lift - slow & elegant */
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 36px 80px rgba(0,0,0,0.65),
    0 0 0 1px var(--gold-border),
    0 0 70px rgba(245,200,66,0.08);
  border-color: var(--gold-border);
}

/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    transform    var(--t-med),
    box-shadow   var(--t-med),
    background   var(--t-fast),
    border-color var(--t-fast);
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::after  { background: rgba(255,255,255,0.07); }
.btn:active        { transform: scale(0.97); }
.btn svg { transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }

/* Primary - Gold */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: #0d0900;
  box-shadow: 0 4px 22px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px var(--gold-glow);
  transform: translateY(-3px);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 4px 22px var(--gold-glow); }
  50% { box-shadow: 0 4px 45px rgba(245, 200, 66, 0.4); }
  100% { box-shadow: 0 4px 22px var(--gold-glow); }
}
.btn-glow {
  animation: pulse-glow 2.5s infinite alternate;
}

/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-3px);
}

/* WhatsApp */
.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  color: #fff;
  font-size: 1rem;
  padding: 18px 28px;
  box-shadow: 0 4px 28px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  box-shadow: 0 8px 48px rgba(37, 211, 102, 0.55);
  transform: translateY(-4px);
}

/* Alpha - deeper gold */
.btn-alpha {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #0d0900;
  box-shadow: 0 4px 22px var(--gold-glow);
}
.btn-alpha:hover {
  box-shadow: 0 8px 44px var(--gold-glow);
  transform: translateY(-3px);
}

.btn-primary:active,
.btn-alpha:active {
  transform: translateY(1px);
}

/* Shimmer Effect */
.btn-primary, .btn-alpha, .btn-wa {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-alpha::after, .btn-wa::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: none;
}
.btn-primary:hover::after, .btn-alpha:hover::after, .btn-wa:hover::after {
  animation: shimmer 0.75s ease-out forwards;
}

@keyframes shimmer {
  100% { left: 200%; }
}

/* Glow */
.btn-glow { box-shadow: 0 0 28px var(--gold-glow), 0 4px 20px rgba(245,200,66,0.18); }
.btn-glow:hover { box-shadow: 0 0 50px var(--gold-glow), 0 8px 40px rgba(245,200,66,0.35); }

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

/* Sizes */
.btn-lg   { padding: 16px 34px; font-size: 0.925rem; }
.btn-full { width: 100%; }

/* ════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
════════════════════════════════════════════════════════ */
.text-gold {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.07rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.section-head { text-align: center; margin-bottom: clamp(44px, 8vw, 88px); }
.section-head .section-sub { max-width: 580px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
════════════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity  var(--t-slow),
    transform var(--t-slow);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal--delay-1 { transition-delay: 0.12s; }
.scroll-reveal--delay-2 { transition-delay: 0.24s; }
.scroll-reveal--delay-3 { transition-delay: 0.36s; }
.scroll-reveal--delay-4 { transition-delay: 0.48s; }
.scroll-reveal--delay-5 { transition-delay: 0.60s; }

/* Hero inline reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal--delay-1 { animation-delay: 0.15s; animation-fill-mode: both; }
.reveal--delay-2 { animation-delay: 0.30s; animation-fill-mode: both; }
.reveal--delay-3 { animation-delay: 0.45s; animation-fill-mode: both; }
.reveal--delay-4 { animation-delay: 0.60s; animation-fill-mode: both; }

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

/* ════════════════════════════════════════════════════════
   NAVIGATION - Mobile first
════════════════════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

#navbar.scrolled {
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(245,200,66,0.10);
  box-shadow: 0 6px 40px rgba(0,0,0,0.45);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(245, 200, 66, 0.4)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 0 16px rgba(245, 200, 66, 0.8)) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
  transform: scale(1.05);
}
.logo-mark {
  color: var(--gold);
  transition: filter var(--t-med);
  filter: drop-shadow(0 0 6px rgba(245,200,66,0.5));
}
.nav-logo:hover .logo-mark { filter: drop-shadow(0 0 14px rgba(245,200,66,0.8)); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--text);
}

.nav-links { display: none; }
.nav-cta   { display: none; }

.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(8,12,20,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--t-slow);
  border-top: 1px solid rgba(245,200,66,0.08);
}
.mobile-menu.open {
  clip-path: inset(0 0 0% 0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 var(--px);
  width: 100%;
  max-width: 360px;
}
.mobile-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: var(--r-md);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
a.mobile-link:not(.btn):hover {
  color: var(--gold);
  background: var(--gold-soft);
}

/* ════════════════════════════════════════════════════════
   HERO - Mobile first
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: orbDrift 12s ease-in-out infinite;
}
.hero-orb--1 {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: radial-gradient(circle, rgba(245,200,66,0.13), transparent 68%);
  top: -15%;
  left: -15%;
  animation-duration: 14s;
}
.hero-orb--2 {
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  background: radial-gradient(circle, rgba(79,195,247,0.09), transparent 68%);
  top: 35%;
  right: -10%;
  animation-delay: -5s;
  animation-duration: 16s;
}
.hero-orb--3 {
  width: min(280px, 60vw);
  height: min(280px, 60vw);
  background: radial-gradient(circle, rgba(245,200,66,0.07), transparent 68%);
  bottom: 5%;
  left: 35%;
  animation-delay: -9s;
  animation-duration: 11s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0)    scale(1);    }
  33%       { transform: translate(28px, -36px) scale(1.06); }
  66%       { transform: translate(-18px, 22px) scale(0.94); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 10vw, 96px) var(--px);
  padding-bottom: 110px; /* Spațiu dedicat pentru liniuța de scroll */
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,200,66,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(0.7); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8vw, 5.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  word-wrap: break-word;
}

.hero-sub {
  font-size: clamp(0.97rem, 2.5vw, 1.18rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.82;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-actions .btn { width: 100%; }

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}
.stat-sfx {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
  align-self: center;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
}
.scroll-cue__line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ════════════════════════════════════════════════════════
   SERVICES - Mobile first
════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  transition: all var(--t-med);
}

/* Spotlight Hover Effect for Cards */
.spotlight-card {
  position: relative;
  overflow: hidden;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(245,200,66,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.spotlight-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 0 80px rgba(245,200,66,0.06), var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.svc-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: box-shadow var(--t-med), background var(--t-med);
}
.svc-icon-box--gold {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.svc-icon-box--blue {
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  color: var(--blue);
}
.service-card:hover .svc-icon-box--gold {
  background: rgba(245,200,66,0.15);
  box-shadow: 0 0 28px rgba(245,200,66,0.22);
}
.service-card:hover .svc-icon-box--blue {
  background: rgba(79,195,247,0.14);
  box-shadow: 0 0 28px rgba(79,195,247,0.18);
}

.svc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.svc-desc {
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.865rem;
  color: var(--text-muted);
}
.svc-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.52rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   LAUNCH OFFER BANNER
════════════════════════════════════════════════════════ */
.launch-offer {
  padding: clamp(40px, 7vw, 72px) 0;
  position: relative;
  z-index: 1;
}

.launch-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 32px);
  padding: clamp(28px, 5vw, 52px);
  background: rgba(245,200,66,0.04);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  animation: offerPulse 2.5s infinite alternate;
}

@keyframes offerPulse {
  0% { box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 0 rgba(245,200,66,0); }
  100% { box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 25px rgba(245,200,66,0.15); }
}

.launch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,200,66,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.launch-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.launch-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-bottom: 28px;
}
.launch-desc strong { color: var(--text); }

/* Progress side */
.launch-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
}

.launch-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.launch-progress-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.launch-progress-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.launch-progress-count strong { color: var(--gold); }

.launch-progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.launch-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(245,200,66,0.5);
  transition: width 1.5s var(--ease-out-expo);
}

.launch-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.slot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: var(--text-dim);
  transition: all var(--t-med);
}
.slot--taken {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
  box-shadow: 0 0 10px rgba(245,200,66,0.3);
}

.launch-slots-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.launch-slots-note strong { color: var(--gold); }

/* ════════════════════════════════════════════════════════
   PORTFOLIO PORTAL
════════════════════════════════════════════════════════ */
.portfolio {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 52px;
}

/* ── Portal card ── */
.portal-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-slow);
}
.portal-card:hover { transform: translateY(-6px); }

/* Browser window chrome */
.portal-window {
  position: relative;
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-bottom: none;
  aspect-ratio: 4 / 3;
}

.portal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}
.portal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.portal-dot:nth-child(1) { background: rgba(255, 95, 87, 0.7); }
.portal-dot:nth-child(2) { background: rgba(255, 189, 46, 0.7); }
.portal-dot:nth-child(3) { background: rgba(39, 201, 63, 0.7); }
.portal-url {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-left: 6px;
  font-family: var(--font);
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
}

/* Preview area */
.portal-preview {
  position: absolute;
  inset: 36px 0 0 0;
  overflow: hidden;
  transition: filter var(--t-slow);
}
.portal-card:hover .portal-preview { filter: brightness(0.4); }

.portal-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: object-position 5s ease-in-out;
}
.portal-card:hover .portal-screenshot {
  object-position: bottom;
}

/* Preview backgrounds (CSS mockup themes) */
.portal-preview--1 { background: linear-gradient(160deg, #0d1b2a 0%, #1a2a1a 100%); }
.portal-preview--2 { background: linear-gradient(160deg, #0f0d1f 0%, #1a1030 100%); }
.portal-preview--3 { background: linear-gradient(160deg, #0a1628 0%, #0d2040 100%); }
.portal-preview--4 { background: linear-gradient(160deg, #1a1208 0%, #2a1a08 100%); }
.portal-preview--5 { background: linear-gradient(160deg, #0f1a10 0%, #1a2812 100%); }
.portal-preview--6 { background: linear-gradient(160deg, #150e2a 0%, #0e1a30 100%); }

/* Hover overlay */
.portal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 10;
}
.portal-card:hover .portal-overlay { opacity: 1; }

.portal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0d0900;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  border-radius: var(--r-md);
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.portal-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px var(--gold-glow);
}

/* Mock UI elements inside previews */
.mock-hero {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
}
.mock-line--title { height: 14px; width: 60%; background: rgba(245,200,66,0.35); }
.mock-line--sub   { width: 80%; }
.mock-line--btn   { width: 28%; height: 22px; background: rgba(245,200,66,0.25); border-radius: 8px; margin-top: 4px; }

.mock-nav-strip {
  height: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mock-cards-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.mock-card {
  flex: 1;
  height: 52px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.mock-img-block {
  height: 70px;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(245,150,30,0.1));
  border-radius: 8px;
}

.mock-dashboard-layout {
  display: flex;
  height: 100%;
  gap: 8px;
  padding: 12px;
}
.mock-sidebar {
  width: 56px;
  background: rgba(79,195,247,0.08);
  border-radius: 8px;
  flex-shrink: 0;
}
.mock-sidebar--alt { background: rgba(245,200,66,0.08); }
.mock-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-stats-row { display: flex; gap: 6px; }
.mock-stat {
  flex: 1;
  height: 32px;
  background: rgba(79,195,247,0.12);
  border-radius: 6px;
}
.mock-stat--alt { background: rgba(245,200,66,0.12); }
.mock-chart {
  flex: 1;
  background: rgba(79,195,247,0.06);
  border-radius: 6px;
  border: 1px solid rgba(79,195,247,0.12);
}
.mock-table {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}
.mock-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.mock-product {
  height: 50px;
  background: rgba(39,201,63,0.08);
  border-radius: 6px;
  border: 1px solid rgba(39,201,63,0.1);
}

/* Portal card variants */
.portal-card--real .portal-info { border-color: var(--gold-border); }
.portal-card--real:hover .portal-window { border-color: var(--gold-border); }

.portal-card--slot { opacity: 0.75; }
.portal-card--slot:hover { opacity: 1; transform: translateY(-4px); }

.portal-window--slot { border-style: dashed; }

.portal-dot--dim { background: rgba(255,255,255,0.08) !important; }
.portal-url--dim { color: var(--text-dim); font-style: italic; }

.portal-preview--slot {
  background: rgba(255,255,255,0.02);
  border: none;
}
.slot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slot-plus {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--text-dim);
  line-height: 1;
}
.slot-text {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.portal-info--slot { background: rgba(255,255,255,0.02); }
.portal-cat--dim {
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  border-color: rgba(255,255,255,0.08);
}
.portal-card--slot:hover .portal-info--slot { border-color: var(--gold-border); background: var(--gold-soft); }
.portal-card--slot:hover .portal-cat--dim { color: var(--gold); border-color: var(--gold-border); background: var(--gold-soft); }

/* Portfolio CTA bottom */
.portal-info {
  padding: 20px 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: border-color var(--t-med), background var(--t-med);
}
.portal-card:hover .portal-info {
  border-color: var(--gold-border);
  background: rgba(245,200,66,0.04);
}

.portal-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  margin-bottom: 10px;
}
.portal-cat--blue  { background: var(--blue-soft);  color: var(--blue);  border-color: var(--blue-border); }
.portal-cat--green { background: rgba(39,201,63,0.08); color: #27c93f; border-color: rgba(39,201,63,0.2); }

.portal-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.portal-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Portfolio CTA bottom */
.portfolio-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: clamp(32px, 5vw, 48px);
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}
.portfolio-bottom__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
   WHY WOLFIE - Mobile first
════════════════════════════════════════════════════════ */
.why {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(245,200,66,0.04) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 80px);
}

.why-body {
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 36px;
  font-size: 0.98rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-pt {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.why-pt__icon {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  border-radius: var(--r-sm);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-pt strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.93rem;
  margin-bottom: 3px;
}
.why-pt p {
  color: var(--text-muted);
  font-size: 0.855rem;
  line-height: 1.72;
}

/* Floating cards */
.why-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.float-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--glass-shadow);
  transition: transform var(--t-slow), border-color var(--t-med);
}
.float-card:hover { border-color: var(--gold-border); }

.float-card--1 { animation: floatA 8s ease-in-out infinite; }
.float-card--2 { animation: floatA 10s ease-in-out infinite; animation-delay: -3s; }
.float-card--3 { animation: floatA 9s  ease-in-out infinite; animation-delay: -6s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-card__icon { font-size: 1.4rem; flex-shrink: 0; }
.float-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.93rem;
}
.float-card__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════
   PRICING - Mobile first
════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pricing-card { padding: clamp(28px, 5vw, 44px); }

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.pricing-tier--alpha { color: var(--gold); }

.feat-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0d0900;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
  box-shadow: 0 3px 18px var(--gold-glow);
}

.alpha-crown {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 8px;
  animation: crownFloat 3.5s ease-in-out infinite;
}
@keyframes crownFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.pricing-original {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -4px;
}
.pricing-original s {
  color: var(--text-dim);
  font-size: 1.1rem;
  font-weight: 500;
}
.discount-badge {
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-price-row {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
}
.pricing-cur {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 6px;
}
.pricing-cur--alpha { color: var(--gold); }
.pricing-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-num--alpha {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-tag-line {
  color: var(--text-muted);
  font-size: 0.855rem;
  font-style: italic;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}
.pricing-tag-line--alpha { color: rgba(245,200,66,0.7); }

.pricing-feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.pricing-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.feat--on::before  { content: '✦'; color: var(--gold); font-size: 0.52rem; flex-shrink: 0; }
.feat--off::before { content: '✗'; color: var(--text-dim); flex-shrink: 0; }
.feat--off         { opacity: 0.45; }
.feat--alpha::before { color: var(--gold); }

/* Featured card */
.pricing-card--featured {
  background: rgba(245,200,66,0.055);
  border-color: var(--gold-border);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.6),
    0 0 0 1px var(--gold-border),
    0 0 80px rgba(245,200,66,0.08);
}
.pricing-card--featured::before {
  background: linear-gradient(135deg, rgba(245,200,66,0.09) 0%, transparent 55%);
}
.pricing-card--featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.68),
    0 0 0 1px rgba(245,200,66,0.38),
    0 0 100px rgba(245,200,66,0.12);
}
.pricing-card--featured .pricing-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Alpha card */
.pricing-card--alpha {
  background: rgba(245,200,66,0.03);
  border-color: rgba(245,200,66,0.16);
}
.pricing-card--alpha::before {
  background: linear-gradient(135deg, rgba(245,200,66,0.07) 0%, transparent 55%);
}
.pricing-card--alpha:hover {
  border-color: rgba(245,200,66,0.32);
  box-shadow:
    0 36px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(245,200,66,0.28),
    0 0 70px rgba(245,200,66,0.08);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
  color: var(--text-muted);
  font-size: 0.855rem;
}
.pricing-note a:hover {
  text-decoration: underline;
}

/* Complex Banner */
.complex-banner {
  margin-top: 40px;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(79, 195, 247, 0.04);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-md);
}
.complex-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.complex-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.complex-btn {
  align-self: flex-start;
  border-color: var(--blue-border);
  color: var(--blue);
}
.complex-btn:hover {
  background: rgba(79, 195, 247, 0.1);
  color: var(--blue);
}

.link-accent {
  color: var(--gold);
  font-weight: 600;
  transition: opacity var(--t-fast);
}
.link-accent:hover { opacity: 0.75; text-decoration: underline; }

/* ════════════════════════════════════════════════════════
   MAINTENANCE - Mobile first
════════════════════════════════════════════════════════ */
.maintenance {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse 70% 40% at 50% 50%, rgba(79,195,247,0.04) 0%, transparent 70%);
}

.maint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.maint-card { padding: clamp(28px, 5vw, 40px); }

/* Icon */
.maint-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: box-shadow var(--t-med), background var(--t-med);
}
.maint-icon--gold {
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.maint-icon--blue {
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  color: var(--blue);
}
.maint-card:hover .maint-icon--gold {
  background: rgba(245,200,66,0.15);
  box-shadow: 0 0 28px rgba(245,200,66,0.22);
}
.maint-card:hover .maint-icon--blue {
  background: rgba(79,195,247,0.14);
  box-shadow: 0 0 28px rgba(79,195,247,0.18);
}

/* Tier label */
.maint-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.maint-tier--premium { color: var(--gold); }

/* Price */
.maint-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 4px;
}
.maint-cur {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.maint-cur--gold { color: var(--gold); }
.maint-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.maint-num--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.maint-per {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-left: 2px;
}

.maint-tagline {
  color: var(--text-muted);
  font-size: 0.855rem;
  font-style: italic;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.maint-tagline--gold { color: rgba(245,200,66,0.7); }

.maint-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.maint-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.865rem;
  color: var(--text-muted);
}

/* Featured card */
.maint-card--featured {
  background: rgba(245,200,66,0.055);
  border-color: var(--gold-border);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.6),
    0 0 0 1px var(--gold-border),
    0 0 80px rgba(245,200,66,0.08);
}
.maint-card--featured::before {
  background: linear-gradient(135deg, rgba(245,200,66,0.09) 0%, transparent 55%);
}
.maint-card--featured:hover {
  transform: translateY(-10px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.68),
    0 0 0 1px rgba(245,200,66,0.38),
    0 0 100px rgba(245,200,66,0.12);
}

/* Premium card */
.maint-card--premium {
  background: rgba(245,200,66,0.03);
  border-color: rgba(245,200,66,0.16);
}
.maint-card--premium::before {
  background: linear-gradient(135deg, rgba(245,200,66,0.07) 0%, transparent 55%);
}
.maint-card--premium:hover {
  border-color: rgba(245,200,66,0.32);
}

/* Info strip */
.maint-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  margin-top: 8px;
}
.maint-strip__item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.maint-strip__icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.maint-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.maint-strip__item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════
   CONTACT - Mobile first
════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0 0;
  position: relative;
  z-index: 1;
}

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

/* ── WhatsApp Card ── */
.wa-card {
  padding: clamp(32px, 6vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.wa-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
}
.wa-icon {
  color: #25d366;
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 18px rgba(37,211,102,0.5));
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(37,211,102,0.5)); }
  50%       { filter: drop-shadow(0 0 32px rgba(37,211,102,0.8)); }
}
.wa-icon-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,0.25);
  animation: ringExpand 3s ease-in-out infinite;
}
@keyframes ringExpand {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 0.15; }
}

.wa-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.wa-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-bottom: 28px;
}

.wa-number {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: rgba(37,211,102,0.06);
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: var(--r-md);
  width: 100%;
  transition: border-color var(--t-med), background var(--t-med);
}
.wa-number:hover {
  background: rgba(37,211,102,0.10);
  border-color: rgba(37,211,102,0.32);
}
.wa-number__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(37,211,102,0.7);
}
.wa-number__val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}
.wa-number__val:hover { color: #25d366; }

.wa-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
  width: 100%;
}

.contact-aside { display: flex; flex-direction: column; gap: 18px; }

.contact-info-card,
.contact-social-card { padding: 28px; }

.aside-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--glass-border);
}
.cinfo-item:last-child { border-bottom: none; padding-bottom: 0; }

.cinfo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cinfo-lbl {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}
.cinfo-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t-fast);
}
.cinfo-val:hover { color: var(--gold); }

.social-links { display: flex; flex-direction: column; gap: 10px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--t-med);
}
.social-link:hover {
  background: var(--gold-soft);
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateX(5px);
}

/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq {
  position: relative;
  z-index: 2;
  margin-top: var(--section-py);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.faq-item:hover {
  border-color: var(--gold-border);
}
.faq-q {
  padding: 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.3s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item[open] .faq-q {
  color: var(--gold);
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer {
  margin-top: 80px;
  padding: 48px 0 28px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-nav a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.footer-contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  font-family: var(--font-mono);
}
.footer-contact-links a {
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.footer-contact-links a:hover {
  color: var(--gold);
}
.dot-sep {
  color: var(--text-dim);
  opacity: 0.5;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  width: 100%;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legal-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0d0900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px var(--gold-glow);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.back-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top[hidden] {
  display: flex !important;
  opacity: 0;
  pointer-events: none;
}
.back-top:hover {
  box-shadow: 0 8px 36px var(--gold-glow);
  transform: translateY(-4px);
}

/* ════════════════════════════════════════════════════════
   ── BREAKPOINT: Tablet  min-width: 640px ──
════════════════════════════════════════════════════════ */
@media (min-width: 640px) {

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-actions .btn { width: auto; }

  .hero-stats {
    flex-direction: row;
    gap: 36px;
  }
  .stat-sep {
    width: 1px;
    height: 44px;
    align-self: center;
  }

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

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

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

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

  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ════════════════════════════════════════════════════════
   ── BREAKPOINT: Desktop  min-width: 1024px ──
════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* Nav */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }
  .nav-cta { display: inline-flex; margin-left: 12px; padding: 10px 20px; }
  .hamburger { display: none; }

  .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    letter-spacing: 0.02em;
    transition: color var(--t-fast), background var(--t-fast);
  }
  .nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }

  /* Services - 3 columns */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Pricing - 3 columns, featured elevated */
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }

  .pricing-card--featured {
    transform: translateY(-14px) scale(1.03);
  }
  .complex-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .complex-btn { align-self: center; }
  .pricing-card--featured:hover {
    transform: translateY(-22px) scale(1.04);
  }

  /* Why */
  .why-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .why-cards-col { display: flex; flex-direction: column; gap: 18px; }

  /* Launch card - 2 col */
  .launch-card { grid-template-columns: 1.3fr 0.8fr; align-items: center; }

  /* Portfolio - 2-col then 3-col at wider */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  /* Maintenance - 3 columns */
  .maint-grid { grid-template-columns: repeat(3, 1fr); }

  .maint-card--featured {
    transform: translateY(-14px) scale(1.03);
  }
  .maint-card--featured:hover {
    transform: translateY(-22px) scale(1.04);
  }

  .maint-strip { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1.4fr 1fr; }

  /* Back top further right */
  .back-top { right: 32px; bottom: 32px; }
}

/* ════════════════════════════════════════════════════════
   ── BREAKPOINT: Wide  min-width: 1280px ──
════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .why-cards-col {
    position: relative;
    height: 340px;
  }
  .float-card { position: absolute; min-width: 220px; }
  .float-card--1 { top: 0;    left: 5%; }
  .float-card--2 { top: 38%;  left: 28%; }
  .float-card--3 { bottom: 0; right: 0; }
}
