/* ============================================
   NexaSaaS — Stylesheet
   Theme: Orange → Pink → Purple Gradient
   ============================================ */

:root {
  --orange: #e85d2f;
  --orange-light: #f4a261;
  --pink: #ef476f;
  --purple: #8e3fb5;
  --purple-light: #c44dca;
  --indigo: #6c5ce7;

  --grad-main: linear-gradient(135deg, #e85d2f 0%, #ef476f 50%, #8e3fb5 100%);
  --grad-hero: linear-gradient(120deg, #e85d2f 0%, #ef476f 45%, #8e3fb5 100%);
  --grad-soft: linear-gradient(135deg, #fff5ee 0%, #fce7f3 50%, #f3e8ff 100%);
  --grad-text: linear-gradient(90deg, #e85d2f, #ef476f);
  --grad-text-2: linear-gradient(90deg, #8e3fb5, #c44dca);

  --bg: #fefcfa;
  --bg-alt: #fff8f3;
  --surface: #ffffff;
  --border: #f0e4d8;
  --border-strong: #e5d4c2;

  --ink: #1a1423;
  --ink-2: #4a3c52;
  --muted: #7a6e83;
  --muted-2: #a89cb3;

  --shadow-sm: 0 1px 3px rgba(26, 20, 35, 0.06), 0 1px 2px rgba(26, 20, 35, 0.04);
  --shadow-md: 0 4px 12px rgba(232, 93, 47, 0.08), 0 2px 4px rgba(142, 63, 181, 0.04);
  --shadow-lg: 0 20px 50px rgba(232, 93, 47, 0.12), 0 8px 16px rgba(142, 63, 181, 0.08);
  --shadow-xl: 0 30px 80px rgba(232, 93, 47, 0.15), 0 12px 24px rgba(142, 63, 181, 0.1);
  --shadow-glow: 0 10px 40px rgba(232, 93, 47, 0.35);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============================================
   UTILITIES
   ============================================ */

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-2 {
  background: var(--grad-text-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-white {
  background: linear-gradient(90deg, #ffd9c2, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(232, 93, 47, 0.1), rgba(142, 63, 181, 0.1));
  border: 1px solid rgba(232, 93, 47, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.pill-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 47, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 93, 47, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(232, 93, 47, 0.05); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 15.5px;
}

.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-main);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(232, 93, 47, 0.45);
}

.btn-outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-2);
}
.btn-ghost:hover { color: var(--orange); }

.btn-white {
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
  background: var(--grad-main);
  color: white;
  font-size: 13px;
  padding: 9px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot-live {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.top-bar-right a {
  font-weight: 600;
  opacity: 0.95;
}
.top-bar-right a:hover { opacity: 1; }

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 252, 250, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: transform 0.25s;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--grad-main);
  color: white;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.logo-text-accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-main);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e85d2f, transparent 70%);
  top: -100px; left: -100px;
  animation: float-blob 20s ease-in-out infinite;
}

.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #8e3fb5, transparent 70%);
  bottom: -200px; right: -150px;
  animation: float-blob 25s ease-in-out infinite reverse;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 93, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 93, 47, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  margin: 22px 0 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* HERO RIGHT — Dashboard */
.hero-right {
  position: relative;
  min-height: 520px;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-main-visual {
  position: relative;
  z-index: 1;
}

.dashboard-frame {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s;
}
.dashboard-frame:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #faf6f1;
  border-bottom: 1px solid var(--border);
}

.frame-top .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.frame-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.frame-body {
  padding: 22px;
}

.dash-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-tile {
  flex: 1;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--grad-soft);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.tile-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.tile-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.tile-spark {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 40px; height: 20px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
  opacity: 0.3;
  border-radius: 2px;
}

.dash-graph {
  padding: 14px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.dash-graph svg {
  width: 100%;
  height: 100px;
}

.dash-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
}

.dp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dp-dot.orange { background: var(--orange); }
.dp-dot.purple { background: var(--purple); }
.dp-dot.pink { background: var(--pink); }

/* Floating cards around hero */
.float-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  background: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
  min-width: 220px;
  animation: float-card 6s ease-in-out infinite;
}

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

.card-wa {
  top: 30px;
  left: -40px;
  animation-delay: 0s;
}

.card-stats {
  top: 200px;
  right: -50px;
  animation-delay: 1.5s;
  min-width: 200px;
}

.card-ai {
  bottom: 20px;
  left: -30px;
  animation-delay: 3s;
}

.card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ai-icon {
  background: var(--grad-main);
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.card-msg {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.card-meta {
  font-size: 10.5px;
  color: var(--muted-2);
  font-weight: 600;
}
.card-meta.success { color: #10b981; }

.card-big {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 2px 0;
}

.status-pill {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.mini-chart {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 38px;
  width: 50px;
  flex-shrink: 0;
}

.mini-chart .bar {
  flex: 1;
  background: var(--grad-main);
  border-radius: 2px;
  min-height: 4px;
}

.dots-loader {
  display: inline-flex;
  gap: 3px;
}
.dots-loader span {
  width: 5px; height: 5px;
  background: var(--purple);
  border-radius: 50%;
  animation: bounce-dot 1.4s infinite ease-in-out both;
}
.dots-loader span:nth-child(1) { animation-delay: -0.32s; }
.dots-loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ============================================
   LOGO STRIP
   ============================================ */

.logo-strip {
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.strip-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.strip-track {
  display: flex;
  gap: 60px;
  animation: scroll-strip 30s linear infinite;
  white-space: nowrap;
}

.strip-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--muted-2);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}
.strip-item:hover {
  opacity: 1;
  color: var(--orange);
}

@keyframes scroll-strip {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEAD
   ============================================ */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 20px 0 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 100px 0;
  position: relative;
}

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
}

.icon-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.icon-orange { background: linear-gradient(135deg, #e85d2f, #f4a261); }
.icon-pink { background: linear-gradient(135deg, #ef476f, #f72585); }
.icon-purple { background: linear-gradient(135deg, #8e3fb5, #c44dca); }
.icon-blue { background: linear-gradient(135deg, #4361ee, #6c5ce7); }
.icon-gradient { background: var(--grad-main); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 22px;
}

.service-features li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 4px 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 12px;
}

/* ============================================
   FEATURES / WHY
   ============================================ */

.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-left .section-title {
  text-align: left;
  margin: 20px 0 18px;
}

.features-left .section-sub {
  text-align: left;
}

.why-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14.5px;
  color: var(--muted);
}

/* Feature visual */
.feature-visual {
  position: relative;
  height: 480px;
}

.fv-card {
  position: absolute;
  background: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  border: 1px solid var(--border);
  animation: float-card 7s ease-in-out infinite;
}

.fv-card-1 { top: 20px; left: 0; }
.fv-card-2 { top: 80px; right: 0; animation-delay: 1s; }
.fv-card-3 { bottom: 110px; left: 20px; animation-delay: 2s; }
.fv-card-4 { bottom: 30px; right: 30px; animation-delay: 3s; }

.fv-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.fv-title {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.fv-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.fv-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  transform: translate(-50%, -50%);
  border: 2px dashed var(--border-strong);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate-orbit 30s linear infinite;
}

.fv-orbit-2 {
  width: 200px; height: 200px;
  animation-duration: 20s;
  animation-direction: reverse;
}

@keyframes rotate-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}

.step-line {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  opacity: 0.3;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

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

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  background: var(--grad-main);
  color: white;
  border: none;
}

.testimonial-card.featured p { color: rgba(255, 255, 255, 0.95); }
.testimonial-card.featured .t-role { color: rgba(255, 255, 255, 0.7); }

.stars {
  color: #fbbf24;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card.featured .stars { color: #fff; }

.testimonial-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 22px;
  line-height: 1.6;
}

.t-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
}

.t-name {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
}

.t-role {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: white;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.price-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

.price-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
  min-height: 38px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border-strong);
}

.currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-2);
}

.amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.amount-text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
}

.period {
  font-size: 14px;
  color: var(--muted);
  margin-left: 4px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ============================================
   QUOTE EXPLAINER
   ============================================ */

.quote-explain {
  padding: 60px 0 100px;
}

.quote-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}

.quote-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--orange);
  box-shadow: var(--shadow-md);
}

.quote-box h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.quote-box > p {
  font-size: 16.5px;
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 auto 36px;
}

.quote-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 580px;
  margin: 0 auto 36px;
  text-align: left;
}

.qp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.qp-num {
  width: 28px; height: 28px;
  background: var(--grad-main);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.qp-item div:last-child {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 80px 0;
}

.cta-box {
  position: relative;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow-xl);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
  top: -150px; left: -100px;
  filter: blur(40px);
}

.cta-blob-2 {
  top: auto; bottom: -150px;
  left: auto; right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-left .section-title {
  text-align: left;
  margin: 20px 0 18px;
}

.contact-left .section-sub {
  text-align: left;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.ci-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.ci-icon {
  width: 44px; height: 44px;
  background: var(--grad-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.ci-item a, .ci-item span {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.ci-item a:hover { color: var(--orange); }

/* Form */
.contact-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg-alt);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(232, 93, 47, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #1a1423;
  color: #d1c4dd;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  color: #a89cb3;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-contact {
  margin-bottom: 22px;
}

.footer-contact p {
  font-size: 13.5px;
  color: #a89cb3;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact a {
  color: #d1c4dd;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--orange-light); }

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--grad-main);
  color: white;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 15px;
  color: white;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: #a89cb3;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #7a6e83;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */

.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.3s;
  animation: pulse-wa 2s infinite;
}

.float-wa:hover {
  transform: scale(1.1);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   ANIMATIONS — Scroll reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .hero-right { min-height: 460px; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-line { display: none; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .top-bar-right { display: none; }
  .logo-img { height: 48px; }

  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .stat-divider { display: none; }

  .card-wa { left: -10px; top: 10px; min-width: 180px; padding: 10px 14px; }
  .card-stats { right: -10px; top: 180px; min-width: 170px; padding: 10px 14px; }
  .card-ai { left: -10px; bottom: 10px; min-width: 180px; padding: 10px 14px; }

  .services { padding: 70px 0; }
  .features { padding: 70px 0; }
  .process { padding: 70px 0; }
  .testimonials { padding: 70px 0; }
  .pricing { padding: 70px 0; }
  .contact { padding: 70px 0; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-box { padding: 50px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .feature-visual { height: 380px; }
  .fv-card { min-width: 160px; padding: 12px 14px; }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.service-hero .hero-bg { z-index: 0; }

.service-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--orange);
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 0.8; }

.breadcrumb-sep {
  color: var(--muted-2);
  font-size: 11px;
}

.service-hero-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}

.service-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

.service-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service sections */
.service-section {
  padding: 80px 0;
}

.service-section.alt { background: var(--bg-alt); }

.service-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.service-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.service-section-head p {
  font-size: 16px;
  color: var(--muted);
}

/* Includes grid */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.include-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}

.include-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.include-icon {
  width: 48px; height: 48px;
  background: var(--grad-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.include-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.include-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.benefits-list li:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.benefit-check {
  width: 28px; height: 28px;
  background: var(--grad-main);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--ink);
}

.benefit-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.benefits-visual {
  position: relative;
  padding: 32px;
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.benefits-visual::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 250px; height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.bv-quote {
  font-size: 28px;
  font-family: var(--font-display);
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
}

.bv-stat {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.bv-stat-item {
  flex: 1;
}

.bv-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.bv-stat-label {
  font-size: 12.5px;
  opacity: 0.85;
}

/* Use cases */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.usecase-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.usecase-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(232, 93, 47, 0.1);
  color: var(--orange);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.usecase-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.usecase-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.usecase-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.faq-toggle {
  width: 28px; height: 28px;
  background: var(--grad-soft);
  color: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 14px;
}

.faq-item.open .faq-toggle {
  background: var(--grad-main);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.4s;
  padding: 0 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* Service CTA */
.service-cta {
  padding: 80px 0;
  background: var(--bg-alt);
}

.service-cta-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: var(--grad-main);
}

.service-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-cta-box p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-hero {
  background: var(--grad-main);
  padding: 80px 0 60px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.policy-hero p {
  font-size: 16px;
  opacity: 0.92;
}

.policy-content {
  padding: 70px 0 100px;
}

.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-sm);
}

.policy-wrap h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.policy-wrap h2:first-child { margin-top: 0; }

.policy-wrap h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--ink-2);
}

.policy-wrap p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-wrap ul, .policy-wrap ol {
  margin: 0 0 16px 20px;
  color: var(--ink-2);
}

.policy-wrap li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 6px;
}

.policy-wrap strong {
  color: var(--ink);
  font-weight: 700;
}

.policy-wrap a {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px dashed var(--orange);
}

.policy-meta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 13.5px;
  color: var(--muted);
}

.policy-meta strong { color: var(--ink); }

/* Responsive for service & policy pages */
@media (max-width: 1024px) {
  .includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .usecases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-hero { padding: 50px 0 60px; }
  .service-section { padding: 60px 0; }
  .includes-grid {
    grid-template-columns: 1fr;
  }
  .service-cta-box { padding: 40px 24px; }
  .policy-wrap { padding: 30px 24px; }
  .policy-content { padding: 50px 0 70px; }
}

