*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1C2B3A;
  --navy-mid:#243447;
  --teal:    #2A7F74;
  --teal-lt: #3A9E91;
  --amber:   #C8853A;
  --cream:   #F7F3EE;
  --warm-wht:#FDFAF7;
  --stone:   #E8E2DA;
  --muted:   #7A8896;
  --text:    #1C2B3A;
  --radius:  6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-wht);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .kti {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--navy); letter-spacing: -0.5px;
}
.nav-logo .divider {
  width: 1px; height: 18px; background: var(--stone);
  display: inline-block; vertical-align: middle; margin: 0 4px;
}
.nav-logo .full-name {
  font-size: 0.78rem; font-weight: 400; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}

.nav-right {
  display: flex; align-items: center;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; flex-shrink: 0; }
.nav-cta { white-space: nowrap; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 9px 20px; border-radius: var(--radius);
  font-weight: 500 !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal) !important; color: #fff !important; }

.nav-call { display: inline-flex; align-items: center; gap: 6px; background: var(--teal) !important; color: #fff !important; padding: 9px 20px !important; border-radius: var(--radius); font-weight: 500 !important; transition: background .2s !important; white-space: nowrap; }
.nav-call:hover { background: var(--teal-lt) !important; color: #fff !important; }

.float-call { display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 999; background: var(--teal); color: #fff; text-decoration: none; padding: 14px 32px; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 4px 20px rgba(0,0,0,.25); align-items: center; gap: 8px; white-space: nowrap; }
.float-call:hover { background: var(--teal-lt); }
@media (max-width: 768px) { .float-call { display: flex; opacity: 0; pointer-events: none; transition: opacity .3s; } .float-call.visible { opacity: 1; pointer-events: auto; } }

.nav-view-toggle {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 7px 18px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-view-toggle:hover { background: var(--teal); color: #fff; }

.nav-mobile-toggle { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 6% 80px 8%;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--teal);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 28px; letter-spacing: -0.5px;
}
h1 em { font-style: italic; color: var(--teal); }

.hero-mission {
  font-size: 1.1rem; font-weight: 300; line-height: 1.75;
  color: #4A5C6A; max-width: 480px; margin-bottom: 44px;
  border-left: 3px solid var(--amber); padding-left: 20px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; padding: 0 20px; position: relative; z-index: 2;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(12px);
  animation: chipIn 0.5s ease forwards;
}
.chip-icon { font-size: 0.9rem; }
.chip-1 { animation-delay: 0.6s; }
.chip-2 { animation-delay: 0.85s; }
.chip-3 { animation-delay: 1.1s; }
@keyframes chipIn {
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  background: var(--navy); color: #fff;
  padding: 14px 30px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--teal); transform: translateY(-1px); }

.btn-secondary {
  background: transparent; color: var(--navy);
  padding: 14px 30px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; border: 2px solid var(--stone);
  transition: border-color .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-1px); }

/* ── HERO RIGHT — Web Design: browser mockup ── */
.hero-right {
  background: var(--navy);
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; overflow: hidden;
  min-width: 0;
}

.browser-mock {
  width: 380px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  position: relative; z-index: 2;
}

.browser-bar {
  background: #2A3441;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1; background: #1C2B3A;
  border-radius: 4px; padding: 5px 10px;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  font-family: monospace;
}
.browser-body { padding: 0; }

.mini-nav {
  background: var(--navy); padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.mini-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 700; color: #fff;
}
.mini-nav-links { display: flex; gap: 12px; }
.mini-nav-links span { font-size: 0.6rem; color: rgba(255,255,255,0.45); }

.mini-hero {
  background: linear-gradient(135deg, #1C2B3A 0%, #243447 100%);
  padding: 28px 20px 24px;
}
.mini-hero-label {
  font-size: 0.55rem; color: var(--teal-lt);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
}
.mini-hero-h {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 10px;
}
.mini-hero-h em { color: var(--teal-lt); font-style: italic; }
.mini-hero-sub { font-size: 0.6rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 14px; }
.mini-btn {
  display: inline-block; background: var(--amber);
  color: #fff; font-size: 0.6rem; font-weight: 600;
  padding: 6px 14px; border-radius: 4px;
}

.mini-cards {
  background: var(--warm-wht);
  padding: 16px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.mini-card {
  background: #fff; border: 1px solid var(--stone);
  border-radius: 6px; padding: 10px 8px; text-align: center;
}
.mini-card-icon { font-size: 1rem; margin-bottom: 4px; }
.mini-card-label { font-size: 0.55rem; color: var(--navy); font-weight: 500; }
.mini-card-price { font-size: 0.5rem; color: var(--amber); margin-top: 3px; font-weight: 600; }

.mini-footer {
  background: #111D28; padding: 8px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.mini-footer-logo {
  font-family: 'Playfair Display', serif; font-size: 0.65rem;
  font-weight: 700; color: #fff;
}
.mini-footer-copy { font-size: 0.45rem; color: rgba(255,255,255,0.3); }

.badge-float {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 10px;
}
.badge-float .badge-icon { font-size: 1.2rem; }
.badge-float .badge-text { font-size: 0.7rem; font-weight: 600; color: var(--navy); }
.badge-float .badge-sub { font-size: 0.6rem; color: var(--muted); margin-top: 1px; }

.badge-1 { top: 14%; right: 5%; }
.badge-2 { bottom: 18%; left: 3%; }

.hero-bg-text {
  position: absolute; bottom: 40px; right: 32px;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); writing-mode: vertical-rl;
}

/* ── HERO RIGHT — Demo carousel with scrolling screenshots ── */
.hero-carousel {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; position: relative; z-index: 2;
}
.hc-stage { display: flex; align-items: center; gap: 14px; }
.hc-window {
  width: 483px; max-width: calc(100% - 20px); overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.hc-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.hc-slide { flex-shrink: 0; width: 483px; }
.hc-arrow {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%; color: #fff; font-size: 1.6rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; backdrop-filter: blur(4px); line-height: 1; padding: 0;
}
.hc-arrow:hover { background: rgba(255,255,255,0.28); }
.hc-indicators { display: flex; gap: 8px; align-items: center; }
.hc-dot {
  height: 6px; border-radius: 3px; width: 6px;
  background: rgba(255,255,255,0.3);
  transition: background .3s, width .3s;
  cursor: pointer;
}
.hc-dot.active { background: #fff; width: 20px; }

/* Browser chrome bar */
.hc-bar {
  background: #2A3441; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
}
.hc-dots-browser { display: flex; gap: 4px; flex-shrink: 0; }
.hc-dots-browser span { width: 7px; height: 7px; border-radius: 50%; }
.hc-dots-browser span:nth-child(1) { background: #FF5F57; }
.hc-dots-browser span:nth-child(2) { background: #FFBD2E; }
.hc-dots-browser span:nth-child(3) { background: #28C840; }
.hc-url {
  flex: 1; background: #1C2B3A; border-radius: 3px;
  padding: 3px 7px; font-size: 0.58rem;
  color: rgba(255,255,255,0.35); font-family: monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Screenshot preview area */
.hc-preview-link { display: block; text-decoration: none; }
.hc-preview {
  height: 449px; overflow: hidden; position: relative;
}
.hc-screenshot {
  width: 100%;
  max-width: 100%;
  display: block;
  transform: translateY(0);
  transition: transform 12s ease-in-out;
}

/* ── HERO RIGHT — AI: geometric graphic ── */
.hero-graphic {
  position: relative;
  width: 340px; height: 340px;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  animation: slowSpin 28s linear infinite;
}
.circle-ring:nth-child(1) { width: 340px; height: 340px; top:0; left:0; }
.circle-ring:nth-child(2) { width: 240px; height: 240px; top:50px; left:50px; animation-duration: 20s; animation-direction: reverse; }
.circle-ring:nth-child(3) { width: 140px; height: 140px; top:100px; left:100px; animation-duration: 14s; }

.hero-logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-logo-center .mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: #fff; letter-spacing: -2px; line-height: 1;
}
.hero-logo-center .tagline {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 8px;
}

.dot {
  position: absolute; border-radius: 50%; background: var(--teal);
}
.dot-1 { width: 8px; height: 8px; top: 30px; right: 90px; opacity: 0.8; animation: pulse 3s ease-in-out infinite; }
.dot-2 { width: 5px; height: 5px; bottom: 60px; left: 70px; background: var(--amber); animation: pulse 4s ease-in-out infinite 1s; }
.dot-3 { width: 6px; height: 6px; top: 80px; left: 55px; opacity: 0.5; animation: pulse 3.5s ease-in-out infinite 0.5s; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone);
  padding: 28px 8%;
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
}
.trust-icon {
  width: 32px; height: 32px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem;
}

/* ── SHARED SECTION STYLES ── */
.section { padding: 100px 8%; }

.section-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 20px; max-width: 560px;
}
.section-sub {
  font-size: 1rem; font-weight: 300; color: #4A5C6A;
  line-height: 1.7; max-width: 520px; margin-bottom: 60px;
}

/* ── PRICING (Web) ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.pricing-card {
  background: var(--warm-wht); border: 1px solid var(--stone);
  border-radius: 10px; padding: 40px 30px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,43,58,0.1);
  border-color: transparent;
}

.pricing-card.featured {
  background: var(--navy); border-color: var(--navy);
}
.pricing-card.featured::before { background: var(--amber); transform: scaleX(1); }
.pricing-card.featured .plan-name,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-period,
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.9); }
.pricing-card.featured .plan-price { color: #fff; }
.pricing-card.featured .feat-item { color: rgba(255,255,255,0.75); }
.pricing-card.featured .feat-item::before { color: var(--teal-lt); }
.pricing-card.featured .plan-divider { border-color: rgba(255,255,255,0.12); }

.plan-name-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.plan-name-row .plan-name { margin-bottom: 0; }

.plan-badge {
  display: inline-block; background: var(--amber);
  color: #fff; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

.plan-name {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--navy);
  line-height: 1; margin-bottom: 4px;
}
.plan-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.plan-desc {
  font-size: 0.88rem; font-weight: 300; color: #4A5C6A;
  line-height: 1.65; margin-bottom: 28px;
}
.plan-divider { border: none; border-top: 1px solid var(--stone); margin-top: 24px; margin-bottom: 24px; }

.feat-list { list-style: none; flex: 1; }
.feat-item {
  font-size: 0.87rem; color: #4A5C6A; padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.feat-item::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.feat-item.muted::before { content: '–'; color: var(--stone); }
.feat-item.muted { color: var(--muted); }

.plan-cta {
  margin-top: 32px; display: block;
  text-align: center; text-decoration: none;
  padding: 13px 20px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  border: 2px solid var(--stone); color: var(--navy);
  transition: background .2s, border-color .2s, color .2s;
}
.plan-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.pricing-card.featured .plan-cta {
  background: var(--amber); color: #fff; border-color: var(--amber);
}
.pricing-card.featured .plan-cta:hover { background: #b8742a; border-color: #b8742a; }

.plan-demos-btn {
  display: block;
  margin-top: 10px;
  padding: 8px 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.plan-demos-btn:hover {
  background: var(--teal);
  color: #fff;
}
.pricing-card.featured .plan-demos-btn {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
}
.pricing-card.featured .plan-demos-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ── SEO ADD-ON ── */
.seo-addon {
  margin-top: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.seo-addon-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.seo-addon-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--navy);
  margin-bottom: 8px;
}
.seo-addon-sub {
  font-size: 0.9rem; font-weight: 300; color: var(--muted);
  line-height: 1.6; margin-bottom: 28px;
}
.seo-card {
  background: var(--cream); border: 1px solid var(--stone);
  border-radius: 10px; padding: 36px 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: start;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.seo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.seo-card:hover::before { transform: scaleX(1); }
.seo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,43,58,0.08);
  border-color: transparent;
}
.seo-card-body { display: flex; flex-direction: column; gap: 16px; }
.seo-card-name {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
}
.seo-card-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  line-height: 1.3;
}
.seo-feat-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.seo-feat-item {
  font-size: 0.82rem; color: #4A5C6A; padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.seo-feat-item::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.seo-card-right {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding-top: 8px;
}
.seo-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.seo-price-period { font-size: 0.78rem; color: var(--muted); }
.seo-cta {
  display: inline-block; text-decoration: none;
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500;
  border: 2px solid var(--stone); color: var(--navy);
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.seo-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.seo-tiers-note {
  text-align: center; margin-top: 16px;
  font-size: 0.8rem; color: var(--muted); font-weight: 300;
}

@media (max-width: 600px) {
  .seo-card { grid-template-columns: 1fr; }
  .seo-card-right { flex-direction: row; justify-content: flex-start; gap: 16px; padding-top: 0; }
  .seo-feat-list { grid-template-columns: 1fr; }
}

/* ── SETUP SERVICES (Web, dark section) ── */
.setup-section {
  background: var(--navy); padding: 100px 8%; color: #fff;
}
.setup-section .section-label { color: var(--teal-lt); }
.setup-section .section-title { color: #fff; max-width: 100%; }
.setup-section .section-sub   { color: rgba(255,255,255,0.55); }

.setup-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0;
}
.setup-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 32px 26px;
  transition: background .2s, border-color .2s;
}
.setup-card:hover {
  background: rgba(255,255,255,0.09); border-color: rgba(42,127,116,0.5);
}
.setup-icon { font-size: 2rem; margin-bottom: 18px; display: block; }
.setup-name { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.setup-desc { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.65; }
.setup-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.setup-tag {
  font-size: 0.68rem; font-weight: 500;
  background: rgba(42,127,116,0.2); color: var(--teal-lt);
  padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(42,127,116,0.3);
}

/* ── SERVICES (AI) ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--warm-wht); border: 1px solid var(--stone);
  border-radius: 10px; padding: 36px 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,43,58,0.1);
  border-color: transparent;
}
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--stone);
  line-height: 1; margin-bottom: 20px;
}
.service-name { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; font-weight: 300; color: #4A5C6A; line-height: 1.7; }
.service-price {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--stone);
  font-size: 0.82rem; font-weight: 500; color: var(--amber);
}

/* ── HOW IT WORKS — scoped per page ── */
#page-web .how-section {
  padding: 100px 8%; background: var(--cream);
}
#page-web .how-section .section-label { color: var(--teal); }
#page-web .how-section .section-title { color: var(--navy); }
#page-web .how-section .section-sub   { color: #4A5C6A; }
#page-web .step-title { color: var(--navy); }
#page-web .step-desc  { color: #4A5C6A; }
#page-web .steps::before { background: var(--stone); }

#page-ai .how-section {
  background: var(--navy); padding: 100px 8%; color: #fff;
}
#page-ai .how-section .section-label { color: var(--teal-lt); }
#page-ai .how-section .section-title { color: #fff; max-width: 100%; }
#page-ai .how-section .section-sub   { color: rgba(255,255,255,0.55); }
#page-ai .step-title { color: #fff; }
#page-ai .step-desc  { color: rgba(255,255,255,0.55); }
#page-ai .steps::before { background: rgba(255,255,255,0.12); }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 1px;
}
.step { padding: 0 24px; text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
}
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.step-desc  { font-size: 0.88rem; font-weight: 300; line-height: 1.65; }

/* ── WHO WE SERVE ── */
.industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.industry-pill {
  background: var(--cream); border: 1px solid var(--stone);
  border-radius: 8px; padding: 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 500; color: var(--navy);
  transition: background .2s, border-color .2s;
}
.industry-pill:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.industry-pill .icon { font-size: 1.1rem; }

/* ── ABOUT ── */
.about-section { background: var(--cream); padding: 100px 8%; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-sub { margin-bottom: 32px; }
.about-details { display: flex; flex-direction: column; gap: 16px; }
.about-detail { display: flex; align-items: flex-start; gap: 14px; }
.detail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-top: 7px; flex-shrink: 0; }
.detail-text { font-size: 0.92rem; font-weight: 400; color: #4A5C6A; line-height: 1.6; }
.about-card {
  background: var(--navy); border-radius: 14px; padding: 48px 40px;
  color: #fff; position: relative; overflow: hidden;
}
.about-card::after {
  content: '"'; position: absolute; bottom: -20px; right: 24px;
  font-family: 'Playfair Display', serif; font-size: 14rem;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.about-quote {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 400; font-style: italic; line-height: 1.6;
  color: rgba(255,255,255,0.9); margin-bottom: 28px;
}
.about-sig { font-size: 0.85rem; font-weight: 500; color: var(--teal-lt); }
.about-sig span {
  display: block; font-weight: 300; color: rgba(255,255,255,0.4);
  margin-top: 4px; font-size: 0.8rem;
}

/* ── CONTACT ── */
.contact-section { padding: 100px 8%; text-align: center; }
.contact-section .section-label,
.contact-section .section-title,
.contact-section .section-sub { margin-left: auto; margin-right: auto; max-width: 600px; }
.contact-section .section-sub { margin-bottom: 48px; }

.contact-card {
  background: var(--navy); border-radius: 16px; padding: 64px 10%;
  max-width: 760px; margin: 0 auto; position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(42,127,116,0.15);
}
.contact-card .tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600;
  color: #fff; margin-bottom: 16px;
}
.contact-card .sub {
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.5); margin-bottom: 40px;
}

/* Contact form — scoped per page */
.contact-form {
  display: flex; flex-direction: column;
  gap: 12px; max-width: 460px; margin: 0 auto;
}
.contact-form button { width: 100%; }

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color .2s;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal-lt); }
.contact-form input.input-error { border-color: #e05c5c; }
.email-error {
  display: block; color: #e05c5c; font-size: 0.78rem;
  margin-top: -6px; text-align: left;
}
.contact-form button {
  background: var(--amber); color: #fff;
  padding: 14px 26px; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.contact-form button:hover { background: #b8742a; transform: translateY(-1px); }
.contact-detail { margin-top: 32px; font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.contact-detail a { color: var(--teal-lt); text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: #111D28; padding: 40px 8%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* .browser-mock float removed — using card stack now */

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 6% 40px; }
  .hero-right { min-height: auto; padding: 30px 0 40px; }
  .hc-window { width: calc(100vw - 120px); max-width: 483px; }
  .hc-slide { width: calc(100vw - 120px); max-width: 483px; }
  .hc-preview { height: 390px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .setup-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .step { padding: 0 0 40px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .badge-float { display: none; }
  .nav-mobile-toggle { display: block; }
}
@media (max-width: 580px) {
  .hc-window { width: calc(100vw - 100px); }
  .hc-slide { width: calc(100vw - 100px); }
  .hc-preview { height: 320px; }
  .hc-arrow { width: 34px; height: 34px; font-size: 1.3rem; }
  .hc-stage { gap: 8px; }
  .hero-chips { gap: 6px; padding: 0 10px; }
  .hero-chip { font-size: 0.7rem; padding: 6px 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-bar { gap: 24px; }
}

/* ── Footer city links ── */
.footer-cities {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-cities-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.footer-city-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 0;
}

.footer-city-links li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.footer-city-links li a:hover {
  color: rgba(255,255,255,0.85) !important;
}

/* ── FAQ Section ─────────────────────────────── */
.faq-section { background: #fff; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
}

.faq-item:first-child {
  border-top: 1px solid var(--stone);
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item[open] .faq-question {
  color: var(--teal);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 40px 22px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer p { margin: 0; }

.faq-answer strong {
  color: var(--navy);
  font-weight: 500;
}

.faq-answer a {
  color: var(--teal);
  text-decoration: none;
}

.faq-answer a:hover { text-decoration: underline; }
