/* ================================================================
   NCraftsWorks — style.css
   Premium Dark Agency Landing Page
   ================================================================ */

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

:root {
  /* Colors */
  --bg-base:       #09090f;
  --bg-surface:    #0e0e1a;
  --bg-raised:     #141426;

  --purple:        #7c3aed;
  --purple-light:  #a78bfa;
  --pink:          #ec4899;
  --blue:          #3b82f6;
  --cyan:          #06b6d4;

  --grad-primary:  linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #3b82f6 100%);
  --grad-text:     linear-gradient(135deg, #a78bfa 0%, #ec4899 60%, #60a5fa 100%);
  --grad-glow:     linear-gradient(135deg, rgba(124,58,237,0.4) 0%, rgba(236,72,153,0.4) 100%);

  --text-primary:  #f0f0fa;
  --text-secondary: #9090b0;
  --text-muted:    #5a5a78;

  --border:        rgba(255,255,255,0.07);
  --border-bright: rgba(167,139,250,0.3);

  --glass-bg:      rgba(14,14,26,0.6);
  --glass-border:  rgba(255,255,255,0.06);

  /* Typography */
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  /* Spacing */
  --header-h:      72px;
  --section-py:    120px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

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

/* ── SCROLL PROGRESS ──────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-primary);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(167,139,250,0.6);
}

/* ── HEADER ───────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(9,9,15,0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo-n {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-w {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop nav */
#desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.ham-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
#mobile-menu:not([hidden]) { pointer-events: auto; }

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

#mobile-menu.menu-open .mobile-menu-backdrop { opacity: 1; }
#mobile-menu.menu-open .mobile-nav { transform: translateX(0); }

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--text-primary); padding-left: 8px; }

/* ── SECTION SHARED ───────────────────────────────────────────── */
.section { min-height: 100vh; position: relative; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--grad-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.centered { text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 64px;
}
.section-sub.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 0 24px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 36px rgba(124,58,237,0.55), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  background: rgba(124,58,237,0.1);
  border-color: var(--purple-light);
  box-shadow: 0 0 20px rgba(124,58,237,0.2);
  transform: translateY(-2px);
}

/* ── GLASS CARD ───────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── HERO SECTION ─────────────────────────────────────────────── */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--header-h) 32px 80px;
  overflow: hidden;
}

/* Aurora background */
.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: rgba(124,58,237,0.22);
  top: -10%; left: -10%;
  animation-duration: 14s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: rgba(236,72,153,0.18);
  top: 20%; right: -5%;
  animation-duration: 10s;
  animation-delay: -4s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: rgba(59,130,246,0.15);
  bottom: -5%; left: 25%;
  animation-duration: 16s;
  animation-delay: -8s;
}
.orb-4 {
  width: 300px; height: 300px;
  background: rgba(6,182,212,0.12);
  top: 50%; right: 20%;
  animation-duration: 11s;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

/* Grain texture */
.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--purple-light);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.badge-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-line { display: block; color: var(--text-primary); }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(14,14,26,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-plus { color: var(--purple-light); }
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--purple-light);
  border-radius: 2px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── ABOUT SECTION ────────────────────────────────────────────── */
.about-section {
  padding: var(--section-py) 0;
  background: var(--bg-base);
  min-height: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 16px;
}

.about-text {}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 480px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--purple-light);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.tag:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(167,139,250,0.4);
}

.about-card {
  padding: 36px 32px;
}
.about-card-icon {
  font-size: 1.4rem;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.process-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.05em;
  padding-top: 3px;
  flex-shrink: 0;
}
.process-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.process-list p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── PRICING SECTION ──────────────────────────────────────────── */
.pricing-section {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
  min-height: auto;
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--pink), transparent);
  opacity: 0.3;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.pricing-card {
  padding: 36px 30px 32px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(167,139,250,0.15);
}

.pricing-card--featured {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 0 40px rgba(124,58,237,0.12), 0 0 0 1px rgba(124,58,237,0.3);
  transform: scale(1.03);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 60px rgba(124,58,237,0.2), 0 20px 60px rgba(0,0,0,0.35);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

.card-header {}
.plan-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
  line-height: 1;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding-top: 10px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.price-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.feat-check {
  color: var(--purple-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.feat-disabled {
  color: var(--text-muted) !important;
  opacity: 0.5;
}
.feat-disabled span { color: inherit; }

.buy-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

/* ── CONTACT SECTION ──────────────────────────────────────────── */
.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-py) 0;
  min-height: 70vh;
  background: var(--bg-base);
}

.contact-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.c-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 12s ease-in-out infinite;
}
.c-orb-1 {
  width: 700px; height: 700px;
  background: rgba(124,58,237,0.28);
  top: -20%; left: -15%;
  animation-duration: 15s;
}
.c-orb-2 {
  width: 600px; height: 600px;
  background: rgba(236,72,153,0.22);
  bottom: -20%; right: -10%;
  animation-duration: 11s;
  animation-delay: -5s;
}
.c-orb-3 {
  width: 400px; height: 400px;
  background: rgba(59,130,246,0.18);
  top: 30%; right: 30%;
  animation-duration: 18s;
  animation-delay: -9s;
}

.contact-container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Selected package notice */
.selected-package {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-light);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 40px;
  animation: fadeInDown 0.5s var(--ease-out);
}
.pkg-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--purple-light);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-label {
  margin-bottom: 28px;
}
.label-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: 100px;
}

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 48px;
  transition: all 0.25s var(--ease);
  word-break: break-all;
}
.contact-email:hover {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(167,139,250,0.4));
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.social-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.social-icon {
  width: 16px; height: 16px;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  background: var(--bg-base);
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-made {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 96px; }
  .about-grid { gap: 48px; }
  .pricing-grid { gap: 16px; }
  .pricing-card--featured { transform: scale(1.02); }
  .pricing-card--featured:hover { transform: scale(1.02) translateY(-6px); }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-body { max-width: 100%; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .pricing-card--featured { transform: none; order: -1; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --section-py: 72px;
  }
  .header-inner { padding: 0 20px; }
  #desktop-nav { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 20px; }

  .hero-section { padding: var(--header-h) 20px 64px; }
  .hero-stats {
    gap: 24px;
    padding: 20px 24px;
  }
  .stat-divider { height: 28px; }

  .contact-email {
    font-size: clamp(1.1rem, 5vw, 2rem);
  }

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

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  .hero-badge { font-size: 0.72rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .orb, .c-orb { animation: none; }
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-wheel { animation: none; }
  .badge-dot { animation: none; }
  html { scroll-behavior: auto; }
}
