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

:root {
  --bg: #080810;
  --bg-alt: #0d0d1a;
  --surface: #12121f;
  --surface-2: #1a1a2e;
  --border: rgba(255,255,255,0.07);
  --purple: #7c5cbf;
  --purple-light: #9b7fe0;
  --purple-dark: #5a3f99;
  --pink: #c060a0;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(124,92,191,0.12);
  border: 1px solid rgba(124,92,191,0.28);
  color: var(--purple-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  box-shadow: 0 4px 24px rgba(124,92,191,0.45);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(124,92,191,0.65); }
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 32px; font-size: 1rem; border-radius: 14px; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { font-size: 1.4rem; font-weight: 800; text-decoration: none; color: white; letter-spacing: -0.02em; }
.logo span { color: var(--purple-light); }
.logo-img { display: flex; align-items: center; text-decoration: none; }
.logo-image { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 20px !important;
  background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
  color: white !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all 0.25s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(124,92,191,0.4); color: white !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(8,8,16,0.97);
}
.mobile-menu a { color: var(--text-muted); text-decoration: none; padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; color: var(--purple-light); }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 { width: 600px; height: 600px; background: var(--purple-dark); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--pink); bottom: -100px; left: -100px; opacity: 0.2; }
.orb-3 { width: 300px; height: 300px; background: var(--purple-light); top: 40%; left: 40%; opacity: 0.08; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,92,191,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(124,92,191,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero layout: two-column on desktop */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }
.hero-title { margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(124,92,191,0.1);
  border: 1px solid rgba(124,92,191,0.22);
  color: var(--purple-light);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-offer::before {
  content: '✦';
  font-size: 0.65rem;
  opacity: 0.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  width: fit-content;
}
.stat { display: flex; flex-direction: column; padding: 0 24px; }
.stat-top { display: flex; align-items: baseline; gap: 2px; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* Hero browser visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-browser {
  width: 100%;
  max-width: 420px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.bdot { width: 10px; height: 10px; border-radius: 50%; }
.bdot.red { background: #ff5f57; }
.bdot.yellow { background: #febc2e; }
.bdot.green { background: #28c840; }
.browser-url {
  flex: 1;
  background: var(--bg);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: monospace;
}
.browser-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.bb-nav {
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--surface) 60%, transparent);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}
.bb-nav::before {
  content: '';
  width: 80px;
  height: 14px;
  background: linear-gradient(135deg, var(--purple-dark), var(--pink));
  border-radius: 4px;
  opacity: 0.8;
}
.bb-hero {
  height: 110px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,92,191,0.35), rgba(192,96,160,0.25));
  border: 1px solid rgba(124,92,191,0.2);
  position: relative;
  overflow: hidden;
}
.bb-hero::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 70px;
  height: 22px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 100px;
}
.bb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bb-card {
  height: 56px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.bb-line {
  height: 10px;
  border-radius: 100px;
  background: var(--surface);
}
.bb-line.w80 { width: 80%; }
.bb-line.w60 { width: 60%; }

.hero-float-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(124,92,191,0.25);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}
.f1 { bottom: -16px; left: -32px; animation-delay: 0s; }
.f2 { top: 30px; right: -24px; animation-delay: 1.5s; }
.f3 { bottom: 60px; right: -36px; animation-delay: 3s; }

.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--text-muted), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── Social Proof Bar ── */
.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 28px 0;
}
.proof-bar .container { text-align: center; }
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.proof-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.proof-logo:hover { opacity: 1; }
.proof-dot { color: var(--border); font-size: 1.2rem; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 16px; }
.section-header h2 { margin-top: 8px; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.07), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover { border-color: rgba(124,92,191,0.4); transform: translateY(-5px); box-shadow: 0 28px 56px rgba(0,0,0,0.35); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(124,92,191,0.15), rgba(192,96,160,0.08));
  border: 1px solid rgba(124,92,191,0.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-light);
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(124,92,191,0.25), rgba(192,96,160,0.15));
  border-color: rgba(124,92,191,0.45);
  box-shadow: 0 4px 16px rgba(124,92,191,0.2);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Why Us ── */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.check { width: 26px; height: 26px; min-width: 26px; background: linear-gradient(135deg, var(--purple), var(--pink)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: white; box-shadow: 0 2px 10px rgba(124,92,191,0.35); flex-shrink: 0; }
.why-list strong { display: block; margin-bottom: 4px; font-weight: 600; }
.why-list p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.why-visual { position: relative; }
.mockup-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.mockup-header { display: flex; align-items: center; gap: 6px; padding: 14px 16px; background: var(--surface); border-bottom: 1px solid var(--border); }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-bar { flex: 1; height: 20px; background: var(--bg); border-radius: 4px; margin-left: 8px; }
.mockup-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.mockup-hero-block { height: 120px; border-radius: 8px; background: linear-gradient(135deg, var(--purple-dark), var(--pink)); opacity: 0.7; }
.mockup-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.mockup-block { height: 60px; border-radius: 8px; background: var(--surface); }
.mockup-block.small { height: 60px; }
.mockup-block.long { height: 16px; width: 80%; border-radius: 4px; background: var(--surface); }
.mockup-block.medium { height: 16px; width: 50%; border-radius: 4px; background: var(--surface); }

.why-badge-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid rgba(124,92,191,0.2);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.badge-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.badge-2 { top: -20px; right: -20px; animation-delay: 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── Process ── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.07), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.process-step:hover {
  border-color: rgba(124,92,191,0.4);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.process-step:hover::before { opacity: 1; }
.process-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.process-content h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 40px;
}
.process-connector::after {
  content: '→';
  color: var(--purple-light);
  font-size: 1.6rem;
  opacity: 0.7;
}

/* ── Portfolio ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.portfolio-card {
  height: 300px;
  border-radius: var(--radius);
  background: var(--grad);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,92,191,0.2); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-card-img { background: var(--img) center/cover no-repeat !important; }
.portfolio-overlay-always { opacity: 1 !important; background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.1) 100%) !important; }
.portfolio-link { display: inline-block; margin-top: 8px; color: var(--purple-light); font-size: 0.82rem; font-weight: 600; text-decoration: none; }
.portfolio-link:hover { text-decoration: underline; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-tag { display: inline-block; padding: 4px 12px; background: rgba(124,92,191,0.8); border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: white; margin-bottom: 10px; width: fit-content; }
.portfolio-overlay h4 { font-size: 1.2rem; margin-bottom: 6px; }
.portfolio-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: rgba(124,92,191,0.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  background: linear-gradient(160deg, rgba(124,92,191,0.05), var(--surface));
}
.stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 18px; text-shadow: 0 0 12px rgba(245,158,11,0.4); }
.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.82rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { border-color: rgba(124,92,191,0.3); transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(124,92,191,0.12), var(--surface));
  border-color: rgba(124,92,191,0.4);
  transform: translateY(-8px);
}
.pricing-card.featured:hover { transform: translateY(-12px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.pricing-tier { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pricing-price { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; }
.pricing-price span { font-size: 1.5rem; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { font-size: 0.9rem; color: var(--text-muted); }
.pricing-features li:not(.disabled) { color: var(--text); }
.pricing-features .disabled { opacity: 0.35; text-decoration: line-through; }
.pricing-note { text-align: center; color: var(--text-muted); margin-top: 40px; font-size: 0.95rem; }
.pricing-note a { color: var(--purple-light); text-decoration: none; font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ── Pricing Model ── */
.pricing-model { display: flex; flex-direction: column; gap: 32px; }

.pricing-model-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid rgba(124,92,191,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.pm-step {
  padding: 48px 40px;
  position: relative;
}
.pm-step:first-child {
  border-right: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(124,92,191,0.06), transparent);
}
.pm-step:last-child {
  background: linear-gradient(225deg, rgba(192,96,160,0.05), transparent);
}
.pm-num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.pm-icon { font-size: 2rem; margin-bottom: 16px; }
.pm-step h3 { font-size: 1.3rem; margin-bottom: 12px; }
.pm-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.pm-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 2rem;
  font-weight: 300;
  color: var(--purple-light);
  background: rgba(124,92,191,0.05);
}

.pricing-factors {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.pricing-factors h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.factor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s;
}
.factor-item:hover { border-color: rgba(124,92,191,0.3); }
.factor-icon { font-size: 1.1rem; }

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(124,92,191,0.14), rgba(192,96,160,0.07));
  border: 1px solid rgba(124,92,191,0.3);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: 0 8px 48px rgba(124,92,191,0.12);
}
.pricing-cta-text h3 { font-size: 1.4rem; margin-bottom: 10px; }
.pricing-cta-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; max-width: 480px; }

@media (max-width: 900px) {
  .pricing-model-card { grid-template-columns: 1fr; }
  .pm-step:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .pm-divider { padding: 16px; }
  .pricing-cta { flex-direction: column; align-items: flex-start; padding: 32px; }
}

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(124,92,191,0.35); background: rgba(124,92,191,0.025); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--purple-light); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--purple-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ── Contact ── */
.contact-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: var(--surface); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(124,92,191,0.7);
  box-shadow: 0 0 0 3px rgba(124,92,191,0.1), 0 0 16px rgba(124,92,191,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(136,136,170,0.5); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 12px; }

.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-info-card h3 { margin-bottom: 24px; font-size: 1.1rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(124,92,191,0.12);
  border: 1px solid rgba(124,92,191,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--purple-light);
}
.contact-item strong { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 3px; }
.contact-item a { color: var(--text); text-decoration: none; font-size: 0.9rem; }
.contact-item span { color: var(--text); font-size: 0.9rem; }
.contact-item a:hover { color: var(--purple-light); }
.contact-promise {
  background: linear-gradient(135deg, rgba(124,92,191,0.08), rgba(192,96,160,0.04));
  border: 1px solid rgba(124,92,191,0.18);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-promise h4 { margin-bottom: 12px; font-size: 1rem; }
.contact-promise p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.contact-mockup-offer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid rgba(124,92,191,0.25);
  border-radius: var(--radius);
  padding: 24px;
}
.offer-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.contact-mockup-offer strong { display: block; font-size: 0.95rem; margin-bottom: 6px; }
.contact-mockup-offer p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin: 0; }

/* ── Footer ── */
.footer { background: var(--bg-alt); padding: 64px 0 32px; position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,191,0.6), rgba(192,96,160,0.4), rgba(124,92,191,0.6), transparent);
}
.footer-inner { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: 1.3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: rgba(124,92,191,0.4);
  color: var(--purple-light);
  background: rgba(124,92,191,0.08);
}
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--purple-light); }

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(124,92,191,0.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,92,191,0.6); }

/* ── Animations ── */
.fade-in { animation: fadeInUp 0.8s ease both; }
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }
.fade-in:nth-child(7) { animation-delay: 0.7s; }

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

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-connector { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { gap: 32px; }
  section { padding: 56px 0; }
}

@media (max-width: 600px) {
  /* ── Base ── */
  .container { padding: 0 16px; }
  section, .section { padding: 28px 0; }
  h1 { font-size: 2rem; letter-spacing: -0.02em; line-height: 1.15; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1rem; }
  p { font-size: 0.9rem; }

  /* ── Nav ── */
  .nav-inner { padding: 14px 16px; }
  .logo-image { height: 30px; }

  /* ── Hero ── */
  .hero { padding: 72px 0 32px; min-height: auto; }
  .hero-title { margin-bottom: 14px; }
  .hero-offer { font-size: 0.75rem; padding: 6px 12px; margin-bottom: 16px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
  .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 13px 18px; font-size: 0.95rem; }
  .hero-stats { gap: 0; background: none; border: none; padding: 0; width: auto; flex-wrap: wrap; margin-bottom: 0; column-gap: 20px; row-gap: 12px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-suffix { font-size: 1.1rem; }
  .stat-label { font-size: 0.7rem; }

  /* ── Social proof bar ── */
  .proof-bar { padding: 10px 0; }
  .proof-items { gap: 20px; }
  .proof-item { font-size: 0.75rem; gap: 5px; white-space: nowrap; }

  /* ── Section headers ── */
  .section-header { margin-bottom: 20px; }
  .section-header p { font-size: 0.9rem; }
  .badge { font-size: 0.7rem; padding: 4px 12px; margin-bottom: 10px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; gap: 8px; }
  .service-card { padding: 14px 16px; display: flex; flex-direction: row; align-items: flex-start; gap: 14px; }
  .service-card::before { display: none; }
  .service-icon-wrap { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; margin-bottom: 0; flex-shrink: 0; }
  .service-card-text { flex: 1; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
  .service-card p { font-size: 0.82rem; line-height: 1.5; }

  /* ── Why us ── */
  .why-inner { grid-template-columns: 1fr; gap: 24px; }
  .why-visual { display: none; }
  .why-features { gap: 10px; }
  .why-feature { padding: 14px; gap: 12px; }
  .feature-icon { width: 36px; height: 36px; min-width: 36px; font-size: 1rem; }
  .why-text h2 { font-size: 1.6rem; }
  .why-text p { font-size: 0.875rem; }

  /* ── Process ── */
  .process-steps { grid-template-columns: 1fr; gap: 8px; }
  .process-connector { display: none; }
  .process-step { padding: 14px 16px; display: flex; flex-direction: row; align-items: flex-start; gap: 14px; }
  .process-num { font-size: 1.4rem !important; line-height: 1; min-width: 36px; margin-bottom: 0 !important; padding-top: 2px; flex-shrink: 0; }
  .step-number { font-size: 1.4rem; min-width: 36px; margin-bottom: 0; }
  .process-content { flex: 1; }
  .process-step h3 { font-size: 0.95rem; margin-bottom: 4px; }
  .process-step p { font-size: 0.82rem; line-height: 1.5; }

  /* ── Portfolio ── */
  .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-card { border-radius: 10px; }
  .portfolio-img { height: 180px; }
  .portfolio-overlay { padding: 14px; }
  .portfolio-overlay h3 { font-size: 0.95rem; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 10px; }
  .testimonial-card { padding: 18px 16px; }
  .testimonial-text { font-size: 0.875rem; line-height: 1.6; }
  .reviewer-name { font-size: 0.85rem; }

  /* ── Pricing ── */
  .pricing-cards { grid-template-columns: 1fr; gap: 12px; }
  .pricing-card { padding: 22px 18px; }
  .pricing-card.featured { transform: none; }
  .price-amount { font-size: 1.9rem; }
  .pricing-features { gap: 8px; }
  .pricing-features li { font-size: 0.85rem; }
  .pricing-cta-text { text-align: left; margin-top: 24px; }
  .pricing-cta-text p { font-size: 0.85rem; }

  /* ── FAQ ── */
  .faq-list { gap: 8px; }
  .faq-item { padding: 14px 16px; }
  .faq-question { font-size: 0.875rem; }
  .faq-answer { font-size: 0.85rem; }

  /* ── Contact ── */
  .contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact-info { order: -1; }
  .contact-form { padding: 22px 18px; }
  .contact-info h2 { font-size: 1.5rem; }
  .contact-info p { font-size: 0.875rem; }
  .contact-detail { font-size: 0.875rem; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .form-input, .form-select, .form-textarea { padding: 11px 12px; font-size: 0.9rem; }
  .form-textarea { min-height: 100px; }
  .form-submit { width: 100%; padding: 13px; font-size: 0.95rem; }

  /* ── Footer ── */
  .footer { padding: 40px 0 20px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-brand p { font-size: 0.825rem; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
  .footer-col h4 { font-size: 0.8rem; margin-bottom: 10px; }
  .footer-col a { font-size: 0.8rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.775rem; }
  .footer-bottom-links { justify-content: center; gap: 16px; }

  /* ── Misc ── */
  .btn { padding: 11px 20px; font-size: 0.9rem; }
  .scroll-top { bottom: 14px; right: 14px; width: 36px; height: 36px; font-size: 0.9rem; }
  .floating-badge { display: none; }

  /* ── FAQ (correct padding overrides) ── */
  .faq-question { padding: 14px 16px; font-size: 0.9rem; }
  .faq-answer p { padding: 0 16px 14px; font-size: 0.875rem; }
  .faq-item.open .faq-answer { max-height: 500px; }

  /* ── Pricing model ── */
  .pm-step { padding: 22px 18px; }
  .pm-num { font-size: 2rem; margin-bottom: 8px; }
  .pm-icon { font-size: 1.5rem; margin-bottom: 10px; }
  .pm-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .pm-step p { font-size: 0.875rem; }
  .pm-divider { padding: 10px; font-size: 1.4rem; }
  .pricing-factors { padding: 20px 16px; }
  .factors-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .factor-item { padding: 10px 12px; font-size: 0.8rem; gap: 8px; }
  .pricing-cta { padding: 22px 18px; gap: 20px; }
  .pricing-cta-text h3 { font-size: 1.1rem; margin-bottom: 6px; }
  .pricing-cta-text p { font-size: 0.875rem; }

  /* ── Portfolio ── */
  .portfolio-card { height: 210px; }

  /* ── Why section ── */
  .why-sub { font-size: 0.9rem; margin-bottom: 20px; }
  .why-list { gap: 14px; }
  .why-list li { gap: 10px; }
  .why-list p { font-size: 0.82rem; }
  .check { width: 24px; height: 24px; min-width: 24px; font-size: 0.7rem; }

  /* ── Hero ── */
  .hero-offer { width: fit-content; }

  /* ── Footer logo ── */
  .footer .logo-image { height: 28px; }
}
