/* ===================== Reset & Base ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #100e1c;
  --bg-alt: #17142a;
  --surface: #1c1832;
  --surface-2: #221d3d;
  --border: #322b52;
  --text: #f3f2fb;
  --text-dim: #b7b2d1;
  --text-mute: #8a84ab;
  --accent: #6f5cf6;
  --accent-2: #8b7cff;
  --accent-soft: rgba(111, 92, 246, 0.14);
  --green: #4ee1a0;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Sora', 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 20px 60px -20px rgba(0,0,0,0.55);
  --container: 1180px;
}

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== Reveal Animation ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(111, 92, 246, 0.55);
}
.btn-primary:hover { box-shadow: 0 14px 36px -6px rgba(111, 92, 246, 0.7); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent-2); background: var(--accent-soft); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: #1c1832;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -10px rgba(0,0,0,0.4); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===================== Eyebrow / Section Head ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.eyebrow.center { justify-content: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.dot-green { background: var(--green); box-shadow: 0 0 0 4px rgba(78,225,160,0.15); }
.dot-blue { background: #5cb8f6; box-shadow: 0 0 0 4px rgba(92,184,246,0.15); }
.dot-purple { background: var(--accent-2); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.section-sub { color: var(--text-dim); font-size: 16px; }
.section-sub.left { max-width: 520px; }

.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(16, 14, 28, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--border);
  background: rgba(16, 14, 28, 0.92);
}

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

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: flex; flex-shrink: 0; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand-name span { color: var(--accent-2); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active { color: var(--accent-2); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: none;
  font-size: 14.5px; font-weight: 500; font-family: inherit;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown.active .nav-dropdown-toggle { color: var(--accent-2); }
.nav-caret { font-size: 10px; transition: transform 0.2s ease; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translate(-50%, 6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  padding: 9px 12px; border-radius: 9px; font-size: 14px;
  color: var(--text-dim);
}
.nav-dropdown-menu a:hover { background: var(--surface-2); color: var(--text); }
.nav-dropdown-menu a.active { color: var(--accent-2); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Breadcrumb ===================== */
.breadcrumb {
  padding-top: 118px;
  padding-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-mute);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span[aria-current] { color: var(--text-dim); }
.crumb-sep { color: var(--border); }

/* ===================== Page Hero (inner pages) ===================== */
.page-hero {
  position: relative;
  padding: 24px 0 56px;
  overflow: hidden;
}
.page-hero .hero-glow { top: -260px; width: 700px; height: 500px; }
.page-hero-inner { position: relative; max-width: 720px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.page-hero-sub { color: var(--text-dim); font-size: 17px; }
.page-hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: 170px 0 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  width: 900px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(111,92,246,0.35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 22px;
}
.text-grad {
  background: linear-gradient(135deg, var(--accent-2), #b7a9ff 50%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }

.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: 12px; color: var(--text-mute); font-size: 14px; }
.stars { color: #ffcc4d; letter-spacing: 2px; font-size: 14px; }

/* Hero visual mock window */
.hero-visual { position: relative; }
.mock-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1.2deg);
}
.mock-topbar {
  display: flex; gap: 6px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mock-topbar span { width: 10px; height: 10px; border-radius: 50%; background: #423a63; }
.mock-topbar span:nth-child(1) { background: #f6795c; }
.mock-topbar span:nth-child(2) { background: #f6c05c; }
.mock-topbar span:nth-child(3) { background: #5cf693; }

.mock-body { padding: 26px; }
.mock-line { height: 12px; border-radius: 6px; background: linear-gradient(90deg, #2b2650, #322c5c); margin-bottom: 12px; }
.mock-line.sm { height: 8px; margin-bottom: 8px; }
.mock-line.w-70 { width: 70%; height: 18px; }
.mock-line.w-40 { width: 40%; }
.mock-line.w-80 { width: 80%; }
.mock-line.w-50 { width: 50%; }

.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0; }
.mock-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.mock-icon { color: var(--accent-2); font-size: 16px; margin-bottom: 10px; }

.mock-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 90px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.mock-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  opacity: 0.85;
}

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 13.5px; }
.float-card small { color: var(--text-mute); font-size: 11.5px; }
.float-card-1 { top: -14px; right: -10px; }
.float-card-2 { bottom: -18px; left: -18px; animation-delay: 1.4s; }

.fc-badge {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-2);
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.fc-badge.fc-green { background: rgba(78,225,160,0.15); color: var(--green); }

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

/* Logo strip */
.logo-strip { margin-top: 90px; text-align: center; }
.logo-strip p { color: var(--text-mute); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.logo-row { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.logo-row span { color: var(--text-mute); font-weight: 600; font-size: 15px; opacity: 0.7; }

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--c1) 20%, transparent), color-mix(in srgb, var(--c2) 30%, transparent));
  color: var(--c1);
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 16px; }

.service-card-cta {
  background: linear-gradient(135deg, rgba(111,92,246,0.16), rgba(139,124,255,0.06));
  display: flex; flex-direction: column; justify-content: center;
}
.service-card-cta h3 { margin-bottom: 10px; }
.service-card-cta p { margin-bottom: 20px; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--accent-2);
}
.card-link:hover { color: var(--accent); }

/* ===================== Process ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 28px 24px;
  border-left: 2px solid var(--border);
  position: relative;
}
.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-2);
  opacity: 0.7;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 14.5px; }

/* ===================== Stats Band ===================== */
.stats-band {
  background: linear-gradient(135deg, #251f47, #1a1633);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 38px);
  background: linear-gradient(135deg, var(--accent-2), #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { color: var(--text-mute); font-size: 14px; }

/* ===================== Work ===================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.work-thumb {
  height: 180px;
  position: relative;
  display: flex; align-items: flex-end; padding: 16px;
  overflow: hidden;
}
.work-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,14,28,0) 40%, rgba(16,14,28,0.85) 100%);
}
.work-tag { position: relative; z-index: 1; }
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-tag {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.work-body { padding: 22px; }
.work-body h3 { font-size: 17px; margin-bottom: 8px; }
.work-body p { color: var(--text-dim); font-size: 14px; }

.work-card-cta {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(111,92,246,0.16), rgba(139,124,255,0.06));
}
.work-card-cta h3 { font-size: 19px; margin-bottom: 8px; }
.work-card-cta p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 18px; }

/* ===================== About ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual { position: relative; min-height: 360px; }
.about-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(111,92,246,0.35), transparent 65%),
              radial-gradient(circle at 70% 70%, rgba(92,184,246,0.25), transparent 60%);
  border-radius: 32px;
  border: 1px solid var(--border);
}
.about-card {
  position: relative;
  margin: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
  top: 50%; transform: translateY(-50%);
}
.about-card-row { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-dim); }

/* ===================== Pricing ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card h3 { font-size: 19px; margin-bottom: 12px; }
.price { font-family: var(--font-head); font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.price span { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text-mute); margin-top: 4px; }
.price-desc { color: var(--text-dim); font-size: 14.5px; margin-bottom: 20px; }
.price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-list li { font-size: 14px; color: var(--text-dim); padding-left: 22px; position: relative; }
.price-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.price-card-featured {
  border-color: var(--accent-2);
  background: linear-gradient(180deg, rgba(111,92,246,0.12), var(--surface) 40%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
}

/* ===================== Feature / Included Grid ===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.feature-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.feature-item p { color: var(--text-dim); font-size: 14px; }

/* ===================== Content Table (comparisons) ===================== */
.content-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.content-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.content-table th, .content-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.content-table th { background: var(--surface-2); color: var(--text); font-weight: 600; }
.content-table td { color: var(--text-dim); }
.content-table tr:last-child td { border-bottom: none; }

/* ===================== Legal / Prose Content ===================== */
.prose { max-width: 760px; color: var(--text-dim); font-size: 15.5px; }
.prose h2 { color: var(--text); font-size: 22px; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; list-style: disc; }
.prose strong { color: var(--text); }

/* ===================== FAQ ===================== */
.faq-wrap { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; color: var(--text);
  padding: 20px 22px;
  font-size: 15.5px; font-weight: 600;
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent-2);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 22px 20px; color: var(--text-dim); font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 220px; }

/* ===================== CTA Band ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--accent), #4a3ccb);
  padding: 80px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 16px; }

/* ===================== Contact ===================== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.contact-method {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-method:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
  box-shadow: var(--shadow-lg);
}
.contact-method strong { font-size: 15.5px; color: var(--text); }
.contact-method span { font-size: 13.5px; color: var(--text-mute); }
.cm-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  margin-bottom: 6px;
}
.cm-icon svg { width: 20px; height: 20px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-copy h3 { font-size: 20px; margin-bottom: 8px; }
.contact-info { margin-top: 22px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-mute); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { font-size: 15.5px; color: var(--text); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--text-dim); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent-2); }
.form-field textarea { resize: vertical; }
.form-note { font-size: 13.5px; color: var(--green); min-height: 18px; }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-mute); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-mute); font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text-mute); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--accent-2); }

/* ===================== Back to top ===================== */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card-featured { transform: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 260px; }
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 18px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .nav-dropdown { display: flex; flex-direction: column; gap: 6px; }
  .nav-dropdown-toggle { pointer-events: none; color: var(--text-mute); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
  .nav-dropdown-toggle .nav-caret { display: none; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 10px;
    min-width: 0;
  }
  .nav-dropdown-menu a { padding: 6px 0; font-size: 14.5px; }

  .hero { padding-top: 130px; }
  .breadcrumb { padding-top: 96px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto 20px; }
  .float-card { display: none; }

  .services-grid, .work-grid, .feature-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-actions .btn-sm { display: none; }
}
