/* ============ RESET & TOKENS ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg: #FAFAF7;
  --bg-2: #F3F1EC;
  --surface: #FFFFFF;
  --surface-2: #F8F7F2;
  --ink: #0F1729;
  --ink-2: #2A3347;
  --muted: #6B7280;
  --line: rgba(15,23,41,0.08);
  --line-2: rgba(15,23,41,0.14);
  --primary: #1F4BED;
  --primary-dark: #1435A8;
  --accent: #FF8A3D;
  --gold: #E8B339;
  --green: #2E9E5A;
  --warn: #D97706;
  --danger: #DC2626;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(15,23,41,0.04), 0 2px 6px rgba(15,23,41,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,41,0.06), 0 12px 30px rgba(15,23,41,0.06);
  --shadow-lg: 0 20px 50px rgba(15,23,41,0.10), 0 30px 80px rgba(15,23,41,0.08);
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { color: var(--ink-2); }
a { color: var(--primary); text-decoration: none; transition: all 0.25s var(--ease); }
a:hover { color: var(--primary-dark); }

/* ============ FLOATING BLURS ============ */
.blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.blur-1 { width: 500px; height: 500px; background: #7C9EFF; top: -150px; left: -150px; animation: drift 22s ease-in-out infinite; }
.blur-2 { width: 420px; height: 420px; background: #FFC799; top: 40%; right: -150px; animation: drift 28s ease-in-out infinite reverse; }
.blur-3 { width: 380px; height: 380px; background: #B8E0A8; bottom: 10%; left: 25%; animation: drift 32s ease-in-out infinite; }

@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-40px) scale(1.1); }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(250,250,247,0.7);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(250,250,247,0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(15,23,41,0.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), #7C9EFF);
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(31,75,237,0.35);
}
.nav-menu {
  display: flex; gap: 32px; list-style: none;
}
.nav-menu a {
  color: var(--ink-2); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 6px 0;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--ink-2); font-weight: 600; font-size: 0.92rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s var(--ease); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31,75,237,0.3);
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: var(--primary); color: white; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-outline:hover { background: var(--ink); color: white; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.pill { border-radius: 100px; }
.glow {
  box-shadow: 0 8px 24px rgba(31,75,237,0.25);
}
.glow:hover { box-shadow: 0 12px 36px rgba(31,75,237,0.4); }

/* ============ HERO ============ */
.hero {
  padding: 150px 0 80px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-2);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46,158,90,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(46,158,90,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(46,158,90,0); }
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em, .hero h1 i {
  font-style: italic;
  background: linear-gradient(120deg, var(--primary) 0%, #7C9EFF 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 1.1rem; color: var(--ink-2); margin-bottom: 32px; max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid var(--bg);
  color: white; font-weight: 600; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.trust-text { font-size: 0.85rem; color: var(--muted); }

/* Hero right cards */
.hero-right { position: relative; min-height: 480px; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.hc-main {
  position: relative; z-index: 2;
  background: linear-gradient(135deg, #FFFFFF, #F8F7F2);
}
.hc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.hc-tag {
  padding: 4px 10px; background: rgba(31,75,237,0.1);
  color: var(--primary); border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.hc-time { font-size: 0.8rem; color: var(--muted); }
.hc-main h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 12px; }
.hc-price {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--ink); margin-bottom: 20px;
}
.hc-price span { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.hc-list { list-style: none; margin-bottom: 24px; }
.hc-list div { padding: 6px 0; color: var(--ink-2); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.check { color: var(--green); font-weight: 700; }

.hc-float {
  position: absolute;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  animation: bob 5s ease-in-out infinite;
}
.hc-float strong { display: block; color: var(--ink); font-size: 0.95rem; }
.hc-float small { color: var(--muted); font-size: 0.82rem; }
.hc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.hc-1 { top: -20px; right: -10px; animation-delay: 0s; }
.hc-2 { bottom: 20px; left: -30px; animation-delay: 1.5s; }

@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Highlight strip */
.highlight-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 50px;
  box-shadow: var(--shadow-sm);
}
.hs-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--surface-2);
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink-2);
}
.hs-ic { font-size: 1rem; }

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--primary), #7C9EFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* ============ SECTION BASICS ============ */
section { padding: 100px 0; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(31,75,237,0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head p { font-size: 1.1rem; color: var(--ink-2); }

/* ============ SERVICES ============ */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.service-card h3 { margin-bottom: 10px; }
.service-card > p { margin-bottom: 18px; font-size: 0.98rem; }
.sc-feat { list-style: none; margin-bottom: 20px; }
.sc-feat li {
  padding: 5px 0; font-size: 0.88rem; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.sc-feat li span { color: var(--green); font-weight: 700; }
.sc-link {
  color: var(--ink); font-weight: 600; font-size: 0.92rem;
  border-bottom: 1.5px solid var(--line-2);
  padding-bottom: 2px;
}
.sc-link:hover { color: var(--primary); border-color: var(--primary); }

/* ============ PROCESS / TIMELINE ============ */
.process { background: var(--bg); }
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 32px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent), var(--gold));
  opacity: 0.4;
}
.tl-step {
  display: flex; gap: 28px; margin-bottom: 32px;
  position: relative;
}
.tl-num {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem;
  color: var(--primary);
  position: relative; z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.tl-step:hover .tl-num {
  background: var(--primary); color: white;
  border-color: var(--primary); transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(31,75,237,0.3);
}
.tl-body {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: all 0.3s var(--ease);
}
.tl-step:hover .tl-body { border-color: var(--primary); box-shadow: var(--shadow-md); }
.tl-body h3 { margin-bottom: 8px; }
.tl-body p { margin: 0; font-size: 0.98rem; }

/* ============ RESULTS ============ */
.results { background: var(--bg-2); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.result-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
}
.result-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }

/* CSS-only abstract images */
.abstract-img {
  position: absolute; inset: 0;
}
.ai-1 {
  background:
    radial-gradient(circle at 30% 30%, #FFD4A8 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, #7C9EFF 0%, transparent 50%),
    linear-gradient(135deg, #FFF5E8 0%, #FFE0C2 100%);
}
.ai-1::after {
  content: ''; position: absolute;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, #FF8A3D 0%, transparent 70%);
  top: 20%; right: 15%;
  filter: blur(10px);
}
.ai-2 {
  background:
    radial-gradient(circle at 20% 80%, #B8E0A8 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #FFE8A8 0%, transparent 50%),
    linear-gradient(135deg, #F0F7EE 0%, #D4E5D0 100%);
}
.ai-2::after {
  content: ''; position: absolute; inset: 20%;
  border: 3px solid rgba(46,158,90,0.3);
  border-radius: 30% 70% 50% 50% / 40% 50% 50% 60%;
  transform: rotate(-15deg);
}
.ai-3 {
  background:
    radial-gradient(circle at 50% 20%, #A8D4FF 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, #C8A8FF 0%, transparent 50%),
    linear-gradient(135deg, #F0F5FF 0%, #D4E0FF 100%);
}
.ai-3::before {
  content: ''; position: absolute;
  inset: 15%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(31,75,237,0.1) 20px,
    rgba(31,75,237,0.1) 22px
  );
}
.ai-4 {
  background:
    radial-gradient(circle at 60% 40%, #FFA8A8 0%, transparent 50%),
    radial-gradient(circle at 20% 60%, #FFE8A8 0%, transparent 50%),
    linear-gradient(135deg, #FFF0EE 0%, #FFD4D4 100%);
}
.ai-4::after {
  content: ''; position: absolute;
  width: 60%; height: 60%;
  top: 20%; left: 20%;
  background: conic-gradient(from 0deg, #E03131, #FF8A3D, #FFE066, #E03131);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(20px);
}

.result-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,41,0.95) 0%, rgba(15,23,41,0.4) 50%, transparent 100%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: white;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.result-card:hover .result-overlay { opacity: 1; }
.result-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  margin-bottom: 10px; width: fit-content;
}
.result-overlay h3 { color: white; font-size: 1.3rem; margin-bottom: 6px; }
.result-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* ============ ARTICLE / JOURNAL ============ */
.journal {
  background: var(--bg);
  padding: 100px 0 140px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.journal::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(31,75,237,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.article-meta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 16px;
}

.dot-sep { color: var(--line-2); }

.article-body {
  max-width: 780px;
  margin: 64px auto 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-body .lede {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 32px;
}

.article-body h2 {
  font-size: 2rem;
  margin-top: 56px;
  margin-bottom: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.article-body h3 {
  font-size: 1.35rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}

.article-body p {
  color: var(--ink-2);
  margin-bottom: 18px;
}

.article-body a {
  color: var(--primary);
  border-bottom: 1.5px solid rgba(31,75,237,0.3);
  padding-bottom: 1px;
}

.article-body a:hover {
  border-color: var(--primary);
}

.callout {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  margin: 28px 0;
  border: 1px solid var(--line);
}

.callout-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.callout.info {
  background: rgba(31,75,237,0.05);
  border-color: rgba(31,75,237,0.15);
}

.callout.info .callout-icon {
  background: rgba(31,75,237,0.15);
}

.callout.warning {
  background: rgba(217,119,6,0.05);
  border-color: rgba(217,119,6,0.15);
}

.callout.warning .callout-icon {
  background: rgba(217,119,6,0.15);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.callout p {
  margin: 0;
  font-size: 0.98rem;
}

.stat-box {
  margin: 36px 0;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 4px;
}

.stat-box-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 20px;
  text-align: center;
}

.sb-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD4A8, #FF8A3D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}

.sb-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.3s var(--ease);
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.b-ic {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.benefit h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 600;
}

.benefit p {
  margin: 0;
  font-size: 0.92rem;
}

.checklist,
.workflow-list,
.questions-list {
  list-style: none;
  margin: 20px 0 28px;
}

.workflow-list,
.questions-list {
  counter-reset: item;
}

.checklist li,
.workflow-list li,
.questions-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}

.checklist li:last-child,
.workflow-list li:last-child,
.questions-list li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: rgba(46,158,90,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.workflow-list li::before,
.questions-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85rem;
}

.workflow-list li strong {
  color: var(--ink);
}

.cost-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cost-table th,
.cost-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.cost-table th {
  background: var(--ink);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cost-table td {
  color: var(--ink-2);
  font-size: 0.95rem;
}

.cost-table tr:last-child td {
  border-bottom: none;
}

.cost-table tbody tr {
  transition: background 0.2s var(--ease);
}

.cost-table tbody tr:hover {
  background: var(--surface-2);
}

.article-body blockquote {
  margin: 36px 0;
  padding: 32px 36px;
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.article-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-cta {
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, var(--ink) 0%, #1F2D4F 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.article-cta h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.article-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

.article-cta .btn-primary {
  background: var(--accent);
  color: white;
}

.article-cta .btn-primary:hover {
  background: #FFB070;
}

/* Responsive article */
@media (max-width: 960px) {
  .stat-box-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============ FAQ ============ */
.faq { background: var(--bg-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-weight: 600; color: var(--ink); font-size: 1.02rem;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-item .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary);
  transition: all 0.3s var(--ease);
  position: relative;
}
.faq-item .plus::before { content: '+'; position: absolute; }
.faq-item .plus::after {
  content: ''; position: absolute;
  width: 12px; height: 2px; background: var(--primary);
}
.faq-item[open] .plus { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-item[open] .plus::after { background: white; }
.faq-body {
  padding: 0 26px 22px;
  color: var(--ink-2); font-size: 0.98rem; line-height: 1.7;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.test-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem; line-height: 1;
  color: var(--line-2);
  pointer-events: none;
}
.test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.test-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.test-card > p { color: var(--ink-2); font-size: 0.98rem; margin-bottom: 22px; position: relative; z-index: 1; }
.test-person { display: flex; align-items: center; gap: 14px; }
.test-av {
  width: 44px; height: 44px; border-radius: 50%;
  color: white; font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.test-person strong { display: block; color: var(--ink); font-size: 0.95rem; }
.test-person span { color: var(--muted); font-size: 0.82rem; }

/* ============ CONTACT ============ */
.contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}
.contact-info, .contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info h3, .contact-form h3 {
  font-size: 1.5rem; margin-bottom: 24px;
}
.info-row {
  display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start;
}
.info-ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-row strong { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.info-row a, .info-row span { color: var(--ink); font-size: 1rem; font-weight: 500; }
.info-row a:hover { color: var(--primary); }

.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 500; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit; font-size: 0.95rem;
  transition: all 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(31,75,237,0.1);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 24px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem;
  color: white; margin-bottom: 16px;
}
.brand-col p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.65); max-width: 340px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: white; font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  text-transform: lowercase;
  transition: all 0.25s var(--ease);
}
.socials a:hover { background: var(--primary); transform: translateY(-2px); }

.footer-col h4 {
  color: white; font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.footer-col ul a:hover { color: white; }
.contact-list li { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 420px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-box-inner { grid-template-columns: 1fr; gap: 18px; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 14px;
    background: rgba(250,250,247,0.98); backdrop-filter: blur(20px);
    padding: 28px; margin: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform 0.3s var(--ease);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 70px 0; }
  .hero { padding: 120px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hc-1, .hc-2 { position: relative; top: auto; left: auto; right: auto; margin-top: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cost-table { font-size: 0.85rem; }
  .cost-table th, .cost-table td { padding: 10px 12px; }
}