@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img,video{max-width:100%;display:block}
button,input,select,textarea{font-family:inherit}
a{text-decoration:none;color:inherit}

/* ── Design Tokens ──────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg2:         #f7f7fc;
  --surface:     #ffffff;
  --border:      #e2e2f0;
  --text:        #0a0a18;
  --text2:       #4a4a6a;
  --muted:       #8888b0;

  --accent:      #5b21b6;
  --accent-h:    #4c1d95;
  --accent-l:    #7c3aed;
  --accent-soft: rgba(91,33,182,.08);
  --accent-glow: rgba(91,33,182,.2);
  --v-pale:      #ede9fe;

  --f-head: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 68px;
  --px:    clamp(20px, 4vw, 52px);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease:   cubic-bezier(.4,0,.2,1);
  --ease-s: cubic-bezier(.34,1.56,.64,1);
  --t:      .2s;
  --t-slow: .4s;
}

[data-theme="dark"] {
  --bg:          #07070f;
  --bg2:         #0c0c1a;
  --surface:     #0c0c1a;
  --border:      #1a1a2e;
  --text:        #eeeef8;
  --text2:       #a8a8cc;
  --muted:       #6666a0;

  --accent:      #8b5cf6;
  --accent-h:    #7c3aed;
  --accent-l:    #a78bfa;
  --accent-soft: rgba(139,92,246,.1);
  --accent-glow: rgba(139,92,246,.2);
  --v-pale:      #1a0f30;
}

/* ── Base ───────────────────────────────────────────── */
html { font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
p { color: var(--text2); line-height: 1.75; }

/* ── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
}
.section      { padding: 100px 0; }
.section-alt  { background: var(--bg2); }

/* ── Section Labels ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-header { max-width: 560px; }
.section-header.center { max-width: 600px; margin: 0 auto; text-align: center; }

.section-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  letter-spacing: .2px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text2);
  color: var(--text);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* ── Preloader ──────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity .5s ease, visibility .5s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo {
  font-family: var(--f-head);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .06em;
}
.pre-logo span { color: var(--accent); }
.pre-bar {
  width: 100px; height: 1px;
  background: var(--border);
  overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  background: var(--accent);
  animation: preload 1.2s ease forwards;
}
@keyframes preload { from { width: 0 } to { width: 100% } }

/* ── Scroll Progress ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 9000;
  transition: width .1s linear;
}

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .nav.scrolled { background: rgba(7,7,15,.92); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 14px; right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-s);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--accent-soft); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 6px;
  min-width: 140px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.97);
  transition: all var(--t) var(--ease-s);
  z-index: 100;
}
[data-theme="dark"] .lang-dropdown { box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.lang-switcher:hover .lang-dropdown,
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 13px;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  color: var(--text2);
}
.lang-option:hover,
.lang-option.active { background: var(--accent-soft); color: var(--accent); font-weight: 500; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.theme-toggle svg { width: 16px; height: 16px; }

/* Nav CTA */
.btn-nav-cta {
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); }

/* Burger */
.nav-burger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text);
  border-radius: 99px;
  transition: all var(--t);
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg);
  z-index: 999;
  padding: 0 var(--px) 32px;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile ul a {
  display: block;
  padding: 18px 0;
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 400;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav-mobile ul a:hover { color: var(--text); }
.nav-mobile-footer { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px var(--px) 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--f-head);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-title-accent {
  display: block;
  font-style: italic;
  color: var(--accent);
  -webkit-text-fill-color: unset;
  background: none;
}
[data-theme="dark"] .hero-title-accent {
  -webkit-text-fill-color: unset;
  background: none;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero right: editorial stat stack — no card, no border box */
.hero-stats-col {
  display: flex;
  flex-direction: column;
  padding-left: 48px;
  border-left: 1px solid var(--border);
}

.hero-stat-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.hero-stat-item:first-child { padding-top: 0; }
.hero-stat-item:last-child  { border-bottom: none; padding-bottom: 0; }

.hero-stat-num {
  font-family: var(--f-head);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 6px;
}

.hero-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Stats bar */
.hero-stats-bar {
  border-top: 1px solid var(--border);
  padding: 36px var(--px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child  { border-right: none; padding-right: 0; }
.stat-cell:not(:first-child) { padding-left: 40px; }

.stat-n {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.stat-l { font-size: 12px; color: var(--muted); }

/* ── Services ───────────────────────────────────────── */
.services-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: background var(--t);
  cursor: pointer;
}
.service-card:hover { background: var(--bg2); }
.services-grid .service-card:nth-child(3n)      { border-right: none; }
.services-grid .service-card:nth-last-child(-n+3){ border-bottom: none; }

.service-num {
  font-family: var(--f-head);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-name {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.service-days { color: var(--muted); }
.service-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t);
}
.service-card:hover .service-link { gap: 8px; }

/* ── Why Us ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left .section-title { margin-bottom: 14px; }
.why-left .section-sub   { margin-bottom: 0; }

.why-features {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.why-item:first-child { border-top: none; padding-top: 0; }
.why-item:last-child  { padding-bottom: 0; }

.why-num {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.2;
  flex-shrink: 0;
  width: 36px;
  padding-top: 3px;
}
.why-item-title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.why-item-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Process ────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; position: relative; z-index: 1; }

.process-num {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
  margin: 0 auto 24px;
  transition: all var(--t);
}
.process-step:hover .process-num {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.process-title {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.process-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Blog ───────────────────────────────────────────── */
.blog-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

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

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
}
[data-theme="dark"] .blog-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.3); }

.blog-img {
  aspect-ratio: 16/9;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-img-ph {
  width: 100%; height: 100%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-img-ph svg { width: 28px; height: 28px; color: var(--border); }

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}
.blog-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.blog-read {
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  transition: gap var(--t);
}
.blog-card:hover .blog-read { gap: 8px; }

/* ── CTA ────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-section .eyebrow { justify-content: center; }

.cta-h {
  font-family: var(--f-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
  max-width: 600px;
  margin: 0 auto 18px;
  color: var(--text);
}
.cta-p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}
.footer-logo {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text);
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 13.5px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--t);
}
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-social-link svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item a { color: var(--muted); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--text); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── Back to Top ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t) var(--ease-s);
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.back-to-top svg { width: 14px; height: 14px; }

/* ── Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Forms ──────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Badges ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
}
.badge-violet { background: var(--accent-soft); color: var(--accent); }
.badge-green  { background: rgba(34,197,94,.12); color: #16a34a; }
.badge-amber  { background: rgba(245,158,11,.12); color: #b45309; }
.badge-red    { background: rgba(239,68,68,.1);   color: #dc2626; }
[data-theme="dark"] .badge-green { color: #4ade80; }
[data-theme="dark"] .badge-amber { color: #fbbf24; }
[data-theme="dark"] .badge-red   { color: #f87171; }

/* ── Utilities ──────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-col { display: none; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 20px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-cell:not(:first-child) { padding-left: 0; }
  .stat-cell:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav-cta { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(3n)       { border-right: 1px solid var(--border); }
  .services-grid .service-card:nth-child(2n)        { border-right: none; }
  .services-grid .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .services-grid .service-card:nth-last-child(-n+2) { border-bottom: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card { border-right: none; }
  .services-grid .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .services-grid .service-card:last-child { border-bottom: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-header-row,
  .blog-header-row { flex-direction: column; align-items: flex-start; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
}
