/* ================================================================
   NK Digital Solutions — style.css
   Dark Premium / Modern Agency — Spark-inspired
   ================================================================ */

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #0A0F1C;
  --bg2:       #0D1220;
  --bg3:       #111827;

  --glass:     rgba(255,255,255,0.05);
  --glass-h:   rgba(255,255,255,0.08);
  --border:    rgba(255,255,255,0.10);
  --border-h:  rgba(255,255,255,0.20);

  --a1:        #4F8CFF;
  --a2:        #8B5CF6;
  --grad:      linear-gradient(135deg, #4F8CFF, #8B5CF6);
  --grad-text: linear-gradient(120deg, #6BA4FF 0%, #A78BFA 100%);
  --glow-b:    rgba(79,140,255,0.22);
  --glow-p:    rgba(139,92,246,0.22);

  --t1:        #E5E7EB;
  --t2:        #9CA3AF;
  --t3:        #4B5563;
  --t-dim:     #6B7280;

  --r:         14px;
  --r-lg:      20px;
  --r-xl:      28px;
  --hh:        68px;

  --ease:      cubic-bezier(.4,0,.2,1);
  --tr:        0.25s var(--ease);
  --tr-lg:     0.55s var(--ease);

  --fh:        'Inter', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fh);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 48px); }
.container-sm { max-width: 760px; }

section[id] { scroll-margin-top: calc(var(--hh) + 12px); }

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: sticky;
  top: 0; z-index: 300;
  height: var(--hh);
  background: linear-gradient(
  to bottom,
  rgba(10, 15, 28, 0.55),
  rgba(10, 15, 28, 0.15)
);

  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 0 28px; /* ← pushes everything inward from edges */
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;

  margin-left: -24px;   /* pulls logo left */
  padding-top: 20px;    /* moves logo down slightly */
}

.logo-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; letter-spacing: -0.5px;
  color: #fff;
  box-shadow: 0 4px 14px var(--glow-b);
  flex-shrink: 0;
}
.logo-mark.sm { width: 28px; height: 28px; font-size: 10px; border-radius: 7px; }
.logo-text { font-weight: 700; font-size: 15.5px; color: var(--t1); letter-spacing: -0.2px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 12px; }
.nav-link {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;

  padding: 8px 14px;
  border-radius: 20px;

  transition: all .25s ease;

  /* subtle permanent casing */
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}


.nav-link:hover {
  color: #eaf1ff;

  border: 1px solid rgba(120,140,255,0.35);
  background: rgba(120,140,255,0.12);

  box-shadow:
    0 4px 16px rgba(90,120,255,0.28),
    inset 0 0 12px rgba(120,140,255,0.25);
}


.nav-link.active {
  color: white;

  border: 1px solid rgba(120,140,255,0.55);
  background: rgba(120,140,255,0.18);

  box-shadow:
    0 6px 20px rgba(120,140,255,0.35),
    inset 0 0 16px rgba(120,140,255,0.35);
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.02) 40%,
    rgba(255,255,255,0.12)
  );

  opacity: 0.25;
}




/* Header actions */
.header-end { display: flex; align-items: center; gap: 8px; }

.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--t2);
  font-size: 12.5px; font-weight: 600;
  transition: all var(--tr);
}
.lang-btn:hover { border-color: var(--a1); color: var(--a1); }
.lang-btn svg { flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 5px; border-radius: 7px;
}
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--t2); border-radius: 2px;
  transition: all var(--tr);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: var(--hh) 0 0 0;
  background: rgba(10,15,28,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 290;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity var(--tr), transform var(--tr);
}
.mobile-nav:not([hidden]) { opacity: 1; transform: translateY(0); }
.mobile-nav[hidden] { display: none; }
.mob-link {
  font-size: clamp(22px, 5vw, 34px); font-weight: 700;
  color: var(--t2);
  padding: 8px 28px; border-radius: 12px;
  transition: color var(--tr), background var(--tr);
}
.mob-link:hover { color: var(--t1); background: var(--glass); }
.mob-cta {
  margin-top: 12px;
  background: var(--grad);
  color: #fff !important;
  padding: 12px 36px;
  box-shadow: 0 6px 24px var(--glow-b);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.1px;
  transition: all var(--tr);
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 11px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 20px var(--glow-b);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(79,140,255,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--t1);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--a1); color: var(--a1); transform: translateY(-2px); box-shadow: 0 6px 20px var(--glow-b); }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-alt { background: var(--bg3); }

/* Section header */
.sh {
  text-align: center;
  max-width: 620px; margin: 0 auto 56px;
}
.sh h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--t1);
  margin-bottom: 14px; line-height: 1.1;
}
.sh p { color: var(--t2); font-size: 15.5px; line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--a1);
  margin-bottom: 12px;
}

.inline-link {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ================================================================
   GLASS CARDS
   ================================================================ */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr), background var(--tr);
}
.glass-card:hover {
  border-color: var(--border-h);
  background: var(--glass-h);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(79,140,255,0.1);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: max(88vh, 620px);
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) 0 0;
  text-align: center;
}

/* ── Geometric diagonal lines (Spark-style) ── */
.geo {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}

.geo-line {
  position: absolute;
  background: rgba(255,255,255,0.055);
  border-radius: 1px;
  transform-origin: center center;
}

/* Left V-shape */
.gl-1 { width: 2px; height: 65vh; top: 0; left: 12%; transform: rotate(25deg); transform-origin: top center; }
.gl-2 { width: 2px; height: 50vh; top: 0; left: 6%;  transform: rotate(15deg); transform-origin: top center; }
/* Right V-shape */
.gl-3 { width: 2px; height: 65vh; top: 0; right: 12%; transform: rotate(-25deg); transform-origin: top center; }
.gl-4 { width: 2px; height: 50vh; top: 0; right: 6%;  transform: rotate(-15deg); transform-origin: top center; }

/* Intersection dots */
.geo-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  animation: dotPulse 3s ease-in-out infinite;
}
.gd-1 { left: 14.5%; top: 42%; animation-delay: 0s; }
.gd-2 { left: 22%;   top: 18%; width: 7px; height: 7px; animation-delay: 0.5s; }
.gd-3 { right: 14.5%; top: 42%; animation-delay: 1s; }
.gd-4 { right: 22%;  top: 18%; width: 7px; height: 7px; animation-delay: 1.5s; }
.gd-5 { left: 50%; top: 0;    width: 6px; height: 6px; transform: translateX(-50%); animation-delay: 2s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── Ambient orbs ── */
.orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(110px); }
.o1 { width: 650px; height: 650px; background: rgba(79,140,255,0.14); top: -200px; left: -200px; animation: orbDrift 16s ease-in-out infinite; }
.o2 { width: 500px; height: 500px; background: rgba(139,92,246,0.13); bottom: 200px; right: -150px; animation: orbDrift 20s ease-in-out infinite reverse; }
.o3 { width: 350px; height: 350px; background: rgba(79,140,255,0.09); bottom: -100px; left: 30%; animation: orbDrift 12s ease-in-out infinite; animation-delay: -4s; }

@keyframes orbDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(25px,-20px) scale(1.05); }
  66%       { transform: translate(-15px,18px) scale(0.96); }
}

/* ── Hero content ── */
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  max-width: 860px;
  padding: 0 clamp(18px, 5vw, 48px);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-size: 12.5px; font-weight: 500;
  color: var(--t2);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.5s 0.05s forwards;
  transition: border-color var(--tr), color var(--tr);
}
.hero-badge:hover { border-color: rgba(79,140,255,0.4); color: var(--t1); }
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--a1);
  box-shadow: 0 0 6px var(--a1);
}

/* ── Mixed-weight headline (Spark-style) ── */
.hero-h1 {
  font-size: clamp(36px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero-h1 .dim {
  color: var(--t-dim);
  opacity: 0; animation: fadeUp 0.6s forwards;
}
.hero-h1 .bright {
  color: var(--t1);
  opacity: 0; animation: fadeUp 0.6s forwards;
}
.hero-h1 span:nth-child(1) { animation-delay: 0.15s; }
.hero-h1 span:nth-child(2) { animation-delay: 0.25s; }
.hero-h1 span:nth-child(3) { animation-delay: 0.32s; }
.hero-h1 span:nth-child(4) { animation-delay: 0.40s; }

.hero-sub {
  font-size: clamp(14.5px, 1.4vw, 17.5px);
  color: var(--t2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.6s 0.5s forwards;
}
.desktop-br { display: none; }
@media (min-width: 640px) { .desktop-br { display: block; } }

.hero-btns {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.6s 0.6s forwards;
}

/* Social proof */
.hero-social-proof {
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.6s 0.72s forwards;
  margin-bottom: 64px;
}
.sp-avatars { display: flex; }
.sp-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.sp-av:first-child { margin-left: 0; }
.sp-av1 { background: linear-gradient(135deg,#4F8CFF,#6BA4FF); }
.sp-av2 { background: linear-gradient(135deg,#8B5CF6,#A78BFA); }
.sp-av3 { background: linear-gradient(135deg,#10B981,#34D399); }
.sp-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--glass);
  border: 2px solid var(--border);
  color: var(--t2);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
}
.sp-copy { text-align: left; }
.sp-stars { font-size: 12px; color: #FBBF24; letter-spacing: 1px; line-height: 1.2; }
.sp-text { font-size: 12px; color: var(--t2); }

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

/* ── Hero Mockup ── */
.hero-mockup {
  position: relative;
  z-index: 2;
  width: min(640px, 90%);
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}

.mock-window {
  background: rgba(17,24,39,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(79,140,255,0.08);
}

.mock-titlebar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mock-dots { display: flex; gap: 6px; }
.md { width: 10px; height: 10px; border-radius: 50%; }
.md-r { background: #FF5F57; }
.md-y { background: #FEBC2E; }
.md-g { background: #28C840; }
.mock-url-bar {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 6px; padding: 4px 12px;
  font-size: 11.5px; color: var(--t3);
  text-align: center;
}
.mock-actions { display: flex; gap: 6px; }
.mock-pill {
  background: rgba(79,140,255,0.15);
  border: 1px solid rgba(79,140,255,0.25);
  color: var(--a1);
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 4px;
}

.mock-content { display: flex; }

.mock-sidebar {
  width: 100px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.ms-item {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.07);
}
.ms-item.ms-active { background: linear-gradient(90deg,#4F8CFF,#8B5CF6); opacity: 0.7; }

.mock-body { flex: 1; padding: 16px; }

.mock-stats-row { display: flex; gap: 12px; margin-bottom: 14px; }
.mock-stat { flex: 1; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.06); }
.mstat-n { display: block; font-size: 16px; font-weight: 700; color: var(--t1); line-height: 1.2; }
.mstat-l { font-size: 10px; color: var(--t3); }

.mock-chart-wrap { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 10px; border: 1px solid rgba(255,255,255,0.05); }
.mock-chart { width: 100%; height: 60px; }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(17,24,39,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.fb-left { left: -60px; top: 30%; animation: floatY 5s ease-in-out infinite; }
.fb-right { right: -60px; top: 55%; animation: floatY 6s ease-in-out infinite; animation-delay: -2s; }
.fb-icon { font-size: 22px; }
.fb-val { font-size: 16px; font-weight: 800; color: var(--t1); line-height: 1; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fb-key { font-size: 11px; color: var(--t2); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@media (max-width: 800px) {
  .fb-left, .fb-right { display: none; }
}

/* ================================================================
   PORTFOLIO
   ================================================================ */
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,460px),1fr));
  gap: 24px;
}
.port-card { overflow: hidden; }
.port-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transition: transform var(--tr-lg);
}
.port-card:hover .port-img { transform: scale(1.04); }
.pimg-1 { background: linear-gradient(135deg,#0d1a38 0%,#112244 45%,#1a2f5c 75%,#0f1f3d 100%); }
.pimg-2 { background: linear-gradient(135deg,#0a1628 0%,#0d2041 50%,#1b3a60 100%); }
.port-img-label {
  position: absolute; bottom: 14px; left: 18px;
  font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.port-info { padding: 24px 26px 28px; }
.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--a1);
  background: rgba(79,140,255,0.1);
  border: 1px solid rgba(79,140,255,0.2);
  border-radius: 5px;
  padding: 3px 9px;
  margin-bottom: 10px;
}
.port-info h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; color: var(--t1); margin-bottom: 10px; }
.port-info p { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 20px; }
.port-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr);
}
.port-link:hover { border-color: var(--a1); }

/* ================================================================
   SERVICES
   ================================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,300px),1fr));
  gap: 18px;
}
.svc-card { padding: 26px 24px; }
.svc-ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(79,140,255,0.1);
  border: 1px solid rgba(79,140,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--a1); margin-bottom: 16px;
  transition: background var(--tr), box-shadow var(--tr);
}
.svc-ico svg { width: 19px; height: 19px; }
.svc-card:hover .svc-ico { background: rgba(79,140,255,0.18); box-shadow: 0 4px 16px var(--glow-b); }
.svc-card h3 { font-size: 16px; font-weight: 700; color: var(--t1); margin-bottom: 9px; letter-spacing: -0.2px; }
.svc-card p { font-size: 13.5px; color: var(--t2); line-height: 1.65; }

/* ================================================================
   PRICING
   ================================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,290px),1fr));
  gap: 22px; align-items: start;
}
.price-card { padding: 32px 26px 28px; position: relative; }
.price-pop {
  background: rgba(79,140,255,0.07);
  border-color: rgba(79,140,255,0.32);
  box-shadow: 0 0 60px rgba(79,140,255,0.1), 0 0 0 1px rgba(79,140,255,0.18);
}
.price-pop:hover { box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 60px rgba(79,140,255,0.18), 0 0 0 1px rgba(79,140,255,0.3); }

.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 20px; box-shadow: 0 4px 14px var(--glow-b); white-space: nowrap;
}

.pc-tier { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--a1); margin-bottom: 6px; }
.pc-price { font-size: clamp(44px,5.5vw,60px); font-weight: 900; letter-spacing: -3px; color: var(--t1); line-height: 1; margin-bottom: 8px; }
.pc-sub { font-size: 13px; color: var(--t2); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.pc-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.pc-list li {
  font-size: 13.5px; color: var(--t2);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.pc-list li::before {
  content: '✓'; position: absolute; left: 0;
  font-weight: 700;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ================================================================
   PROCESS
   ================================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step-arr { display: none; }
}
.step { padding: 26px 22px; }
.step-n {
  font-size: 40px; font-weight: 900;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(79,140,255,0.3);
  line-height: 1; margin-bottom: 12px;
  transition: -webkit-text-stroke-color var(--tr);
}
.step:hover .step-n { -webkit-text-stroke-color: rgba(79,140,255,0.6); }
.step h3 { font-size: 15.5px; font-weight: 700; color: var(--t1); margin-bottom: 8px; letter-spacing: -0.2px; }
.step p { font-size: 13px; color: var(--t2); line-height: 1.65; }

.step-arr {
  color: var(--t3); padding: 0 6px;
  flex-shrink: 0;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px;
  font-size: 14.5px; font-weight: 600; color: var(--t1);
  text-align: left; border-radius: var(--r-lg);
  transition: color var(--tr);
}
.faq-q:hover { color: var(--a1); }
.faq-ico {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: all var(--tr);
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute;
  background: var(--t2); border-radius: 2px;
  transition: all var(--tr);
}
.faq-ico::before { width: 9px; height: 1.5px; }
.faq-ico::after  { width: 1.5px; height: 9px; }
.faq-q[aria-expanded="true"] .faq-ico { background: var(--grad); border-color: transparent; transform: rotate(45deg); }
.faq-q[aria-expanded="true"] .faq-ico::before,
.faq-q[aria-expanded="true"] .faq-ico::after { background: #fff; }

.faq-a { padding: 0 22px 18px; }
.faq-a[hidden] { display: none; }
.faq-a p { font-size: 14px; color: var(--t2); line-height: 1.7; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-card { padding: clamp(26px,5vw,48px); }
.contact-card form { display: flex; flex-direction: column; gap: 16px; }

.f-row { display: flex; gap: 14px; }
.f-row .f-field { flex: 1; min-width: 0; }
.f-field { display: flex; flex-direction: column; gap: 6px; }

.f-field label { font-size: 12px; font-weight: 600; color: var(--t2); letter-spacing: 0.4px; text-transform: uppercase; }
.f-opt { font-weight: 400; text-transform: none; color: var(--t3); font-size: 11px; }

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%; padding: 11px 14px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font: inherit; font-size: 14px;
  color: var(--t1);
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
  outline: none;
}
.f-field input::placeholder,
.f-field textarea::placeholder { color: var(--t3); }
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: var(--a1);
  background: rgba(79,140,255,0.06);
  box-shadow: 0 0 0 3px rgba(79,140,255,0.14);
}
.f-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B5563' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px; cursor: pointer;
}
.f-field select option { background: #111827; }
.f-field textarea { resize: vertical; min-height: 120px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-brand span { font-size: 14px; font-weight: 600; color: var(--t2); }
.footer-loc { font-size: 12.5px; color: var(--t3); }
.footer-copy { font-size: 11.5px; color: var(--t3); opacity: 0.55; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================================================================
   FOCUS & ACCESSIBILITY
   ================================================================ */
:focus-visible { outline: 2px solid var(--a1); outline-offset: 3px; border-radius: 4px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 560px) {
  .f-row { flex-direction: column; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .price-grid { gap: 14px; }
}

@media (max-height: 640px) {
  .hero { min-height: auto; padding-top: 60px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 300px;
  width: auto;
  display: block;
}
