/* =============================================================
   RMS THEME — MAIN CSS
   Reviews Management Services by Delima Digitals
   ============================================================= */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --ink: #0d1117;
  --ink2: #1a2332;
  --ink3: #2d3a4a;
  --mist: #f4f6f8;
  --mist2: #e8ecf0;
  --accent: #1a56db;
  --accent2: #1e429f;
  --accent-light: #eff6ff;
  --gold: #b45309;
  --gold-light: #fef3c7;
  --success: #16a34a;
  --success-light: #dcfce7;
  --white: #ffffff;
  --text: #374151;
  --text2: #6b7280;
  --text3: #9ca3af;
  --border: #e5e7eb;
  --border2: #d1d5db;
  --r: 10px;
  --r2: 16px;
  --r3: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Sora', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; color: var(--ink); }

.font-serif { font-family: 'Instrument Serif', serif; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent2);
  background: var(--accent-light);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* --- LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.section { padding: 96px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-title em { font-style: italic; }
.section-sub {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 540px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
  cursor: pointer; border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink); color: #fff;
}
.btn-primary:hover { background: var(--ink2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent {
  background: var(--accent); color: #fff;
}
.btn-accent:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost {
  background: none; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--text3); background: var(--mist); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f3f4f6; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* --- BADGES --- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
}
.badge-green { background: var(--success-light); color: #166534; }
.badge-blue { background: var(--accent-light); color: var(--accent2); }
.badge-gold { background: var(--gold-light); color: var(--gold); }

/* === NAV === */
.rms-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.rms-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.rms-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.rms-logo-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.rms-logo-mark:hover { background: var(--accent); }
.rms-logo-mark svg { width: 20px; height: 20px; }
.rms-logo-name { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.rms-logo-sub { font-size: 10px; color: var(--text2); font-weight: 400; letter-spacing: .04em; text-transform: uppercase; margin-top: -1px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 6px 12px; border-radius: 7px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--mist); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform var(--transition); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 8px;
  min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-lg); z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--mist); color: var(--ink); }
.dropdown-menu a .dm-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--mist2); display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-size: 13px; font-weight: 500; color: var(--text2);
  padding: 7px 14px; border-radius: 7px;
  border: 1px solid var(--border2);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.nav-phone:hover { background: var(--mist); color: var(--ink); border-color: var(--text3); }
.nav-phone svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.nav-cta {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: 8px; background: var(--ink); color: #fff;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; height: 32px; align-items: center; justify-content: center;
  border-radius: 7px; border: 1px solid var(--border2);
  background: none; cursor: pointer;
}
.nav-hamburger span { display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 5%; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 10px 12px; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: var(--mist); color: var(--ink); }
.mobile-nav .mobile-nav-cta {
  background: var(--ink); color: #fff; margin-top: 8px;
  text-align: center; font-weight: 600;
}

/* === HERO === */
.hero {
  padding: 88px 5% 80px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent2); background: var(--accent-light);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

h1.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5.5vw, 58px);
  font-weight: 400; line-height: 1.06;
  letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 20px;
}
h1.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 16px; color: var(--text2); line-height: 1.8;
  max-width: 460px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }

.trust-avatars { display: flex; }
.trust-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2.5px solid #fff; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-left: -9px;
}
.trust-avatar:first-child { margin-left: 0; }
.av1{background:#1a56db} .av2{background:#0891b2} .av3{background:#7c3aed} .av4{background:#059669}

.trust-text { font-size: 12px; color: var(--text2); line-height: 1.5; }
.trust-text strong { color: var(--ink); font-weight: 700; }

/* --- Hero Visual Card --- */
.hero-visual {
  background: var(--mist); border-radius: 20px;
  border: 1px solid var(--border); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hv-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.hv-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.hv-platforms { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hv-plat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.hv-plat:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.hv-plat-left { display: flex; align-items: center; gap: 12px; }
.hv-plat-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.hv-plat-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.hv-plat-count { font-size: 11px; color: var(--text3); margin-top: 1px; }
.hv-plat-right { display: flex; align-items: center; gap: 10px; }
.hv-rating { font-size: 15px; font-weight: 800; color: var(--ink); }
.hv-bar-track { width: 68px; height: 5px; border-radius: 3px; background: var(--border); }
.hv-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), #60a5fa); }
.hv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hv-stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 14px 16px;
}
.hv-stat-num { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -.04em; }
.hv-stat-lbl { font-size: 10px; color: var(--text3); margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* === LOGOS TICKER === */
.logos-band {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--mist); padding: 18px 5%;
  display: flex; align-items: center; overflow: hidden;
}
.logos-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--text3); white-space: nowrap; margin-right: 40px; flex-shrink: 0;
}
.logos-ticker { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg,transparent,black 5%,black 95%,transparent); }
.logos-track {
  display: flex; gap: 48px; align-items: center;
  animation: ticker 24s linear infinite; width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
.logos-item {
  font-size: 12px; font-weight: 700; color: var(--text3);
  letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.logos-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--border2); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* === SERVICES GRID === */
.services-outer { background: #fff; padding: 96px 0; }
.services-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden;
  margin-top: 56px;
}
.svc-card {
  background: #fff; padding: 30px 24px;
  transition: background var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover { background: var(--accent-light); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.highlight { background: #f0f7ff; }
.svc-card.highlight:hover { background: #dbeafe; }
.svc-icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--mist2); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: background var(--transition);
}
.svc-icon-wrap svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.svc-card:hover .svc-icon-wrap { background: var(--accent-light); }
.svc-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.35; }
.svc-desc { font-size: 13px; color: var(--text2); line-height: 1.7; }
.svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-decoration: none; margin-top: 16px; transition: gap var(--transition);
}
.svc-link:hover { gap: 8px; }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-features { display: flex; flex-direction: column; }
.why-feature {
  padding: 26px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 22px; align-items: flex-start;
  transition: padding var(--transition);
}
.why-feature:first-child { border-top: 1px solid var(--border); }
.why-feature:hover { padding-left: 4px; }
.why-feature-num {
  font-family: 'Instrument Serif', serif; font-size: 24px;
  font-style: italic; color: var(--text3); flex-shrink: 0;
  width: 30px; margin-top: 2px; transition: color var(--transition);
}
.why-feature:hover .why-feature-num { color: var(--accent); }
.why-feature h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-feature p { font-size: 13px; color: var(--text2); line-height: 1.7; }

.why-proof { display: flex; flex-direction: column; gap: 16px; }
.proof-card {
  background: var(--mist); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px;
  transition: var(--transition); cursor: default;
}
.proof-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.proof-before-after {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 12px; align-items: center;
  background: #fff; border-radius: 10px;
  padding: 16px; margin-bottom: 14px;
}
.pba-side { text-align: center; }
.pba-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text3); margin-bottom: 4px; }
.pba-val { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.pba-val.before { color: var(--text3); }
.pba-val.after { color: var(--success); }
.pba-arrow { color: var(--text3); font-size: 20px; }
.pba-platform { font-size: 11px; color: var(--text2); font-weight: 500; margin-top: 3px; }
.proof-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.proof-role { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* === STATS BAR === */
.stats-bar {
  background: var(--ink); padding: 48px 5%;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px; font-weight: 400; color: #fff;
  letter-spacing: -.03em; line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: #60a5fa; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }

/* === TESTIMONIALS === */
.testi-outer {
  background: var(--mist);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.testi-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r2);
  padding: 30px; display: flex; flex-direction: column;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); border-color: var(--border2); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-quote {
  font-size: 22px; color: var(--accent-light); margin-bottom: 8px;
  font-family: 'Instrument Serif', serif; font-style: italic; line-height: 1;
  color: var(--accent); opacity: .3;
}
.testi-text { font-size: 14px; color: var(--text); line-height: 1.8; flex: 1; margin-bottom: 22px; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.av-s{background:#1a56db} .av-j{background:#7c3aed} .av-p{background:#0891b2}
.av-r{background:#059669} .av-m{background:#dc2626} .av-k{background:#d97706}
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 11px; color: var(--text3); margin-top: 2px; }
.testi-platform { font-size: 11px; font-weight: 700; color: var(--accent); margin-top: 3px; }

/* === INDUSTRIES === */
.industries-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.ind-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--mist); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: var(--transition); cursor: default;
}
.ind-pill:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent2); }
.ind-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text3); transition: background var(--transition); }
.ind-pill:hover .ind-dot { background: var(--accent); }

/* === BLOG GRID === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r2);
  overflow: hidden; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--border2); transform: translateY(-3px); }
.blog-thumb {
  height: 160px; display: flex; align-items: center;
  justify-content: center; font-size: 36px;
  position: relative; overflow: hidden;
}
.bt-blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.bt-green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.bt-amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.bt-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.blog-body { padding: 22px; }
.blog-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent2); background: var(--accent-light);
  padding: 3px 10px; border-radius: 100px; display: inline-block; margin-bottom: 12px;
}
.blog-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.45; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text2); line-height: 1.65; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.blog-date { font-size: 11px; color: var(--text3); font-weight: 600; }
.blog-read-time { font-size: 11px; color: var(--text3); }

/* === CTA SECTION === */
.cta-outer {
  background: linear-gradient(135deg, var(--ink), var(--ink2));
  padding: 96px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-outer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,86,219,.25), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(8,145,178,.15), transparent 60%);
  pointer-events: none;
}
.cta-wrap { max-width: 660px; margin: 0 auto; position: relative; }
.cta-outer .eyebrow { background: rgba(147,197,253,.15); color: #93c5fd; }
.cta-outer .eyebrow-dot { background: #93c5fd; }
.cta-outer h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 5vw, 48px); font-weight: 400;
  line-height: 1.1; letter-spacing: -.025em; color: #fff; margin-bottom: 16px;
}
.cta-outer h2 em { font-style: italic; color: #93c5fd; }
.cta-outer p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }
.cta-trust-item svg { width: 14px; height: 14px; stroke: #60a5fa; fill: none; stroke-width: 2; flex-shrink: 0; }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 16px 5%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 12px; color: var(--text3); font-weight: 500;
}
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .bc-sep { color: var(--border2); }
.breadcrumbs .bc-current { color: var(--text); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--mist); border-bottom: 1px solid var(--border);
  padding: 64px 5%;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .lead { font-size: 17px; color: var(--text2); line-height: 1.8; max-width: 600px; }
.page-hero .hero-meta {
  display: flex; align-items: center; gap: 20px; margin-top: 24px; flex-wrap: wrap;
}
.hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text2); }
.hero-meta-item svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* === CONTACT BAND === */
.contact-band {
  background: #f8fafc; border-top: 1px solid var(--border);
  padding: 20px 5%; display: flex; align-items: center;
  justify-content: center; gap: 48px; flex-wrap: wrap;
}
.cb-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text2); }
.cb-item a { color: var(--text2); text-decoration: none; transition: color var(--transition); font-weight: 500; }
.cb-item a:hover { color: var(--ink); }
.cb-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.cb-icon svg { width: 14px; height: 14px; stroke: var(--text3); fill: none; stroke-width: 1.8; }

/* === FOOTER === */
footer {
  background: #fff; border-top: 1px solid var(--border);
  padding: 72px 5% 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand-tagline {
  font-size: 13px; color: var(--text2); line-height: 1.75;
  margin: 12px 0 24px; max-width: 300px;
}
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--text2);
}
.social-link:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h5 {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px; color: var(--text2); text-decoration: none;
  transition: color var(--transition); display: flex; align-items: center; gap: 5px;
}
.footer-col ul a:hover { color: var(--ink); }
.newsletter-form { display: flex; gap: 8px; margin-top: 4px; }
.newsletter-form input {
  flex: 1; font-size: 13px;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--border2); color: var(--ink);
  outline: none; transition: border-color var(--transition);
  background: #fff;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: var(--text3); }
.newsletter-form button {
  background: var(--ink); color: #fff; border: none;
  padding: 10px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text3); }
.footer-copy a { color: var(--accent); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--text3); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }

/* === ABOUT PAGE === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px; text-align: center; transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: #fff;
  margin: 0 auto 16px;
}
.team-name { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text2); }
.team-bio { font-size: 13px; color: var(--text2); line-height: 1.7; margin-top: 12px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--mist); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 28px;
}
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-text { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* === SERVICE INNER PAGE === */
.service-page-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.service-content h2 { font-family: 'Instrument Serif', serif; font-size: 28px; font-weight: 400; color: var(--ink); margin: 32px 0 12px; }
.service-content p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.service-content ul { margin: 0 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.service-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); line-height: 1.65; }
.service-content ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.service-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--mist); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; }
.sidebar-card h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.sidebar-stat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-label { font-size: 12px; color: var(--text2); }
.sidebar-stat-val { font-size: 15px; font-weight: 800; color: var(--ink); }

.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.step-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.step-desc { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--ink);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--text2); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* === CASE STUDIES === */
.case-grid { display: flex; flex-direction: column; gap: 40px; margin-top: 56px; }
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r3);
  padding: 40px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center;
  transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.case-client { font-size: 13px; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.case-company { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.case-location { font-size: 13px; color: var(--text2); }
.case-platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mist); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--text2); margin-top: 10px;
}
.case-result { background: var(--mist); border-radius: var(--r2); padding: 24px; }
.case-result-row { display: flex; align-items: center; gap: 16px; }
.case-num { font-size: 40px; font-weight: 800; letter-spacing: -.04em; }
.case-num.neg { color: var(--text3); }
.case-num.pos { color: var(--success); }
.case-arrow { font-size: 24px; color: var(--text3); }
.case-timeline { font-size: 12px; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 8px; }
.case-quote { font-size: 14px; color: var(--text); line-height: 1.75; font-style: italic; border-left: 3px solid var(--accent); padding-left: 16px; }

/* === CONTACT PAGE === */
.contact-wrap { display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: start; }
.contact-form-card {
  background: var(--mist); border: 1px solid var(--border);
  border-radius: var(--r3); padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-input {
  width: 100%; font-size: 14px; font-family: 'Sora', sans-serif;
  padding: 12px 16px; border-radius: var(--r);
  border: 1px solid var(--border2); color: var(--ink);
  background: #fff; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px; font-size: 15px; font-weight: 700;
  background: var(--ink); color: #fff; border: none;
  border-radius: var(--r); cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }
.form-success { display: none; text-align: center; padding: 24px; }
.form-success svg { width: 48px; height: 48px; stroke: var(--success); fill: none; stroke-width: 1.5; margin: 0 auto 12px; }
.form-success h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text2); }

.contact-info-card {
  background: var(--ink); border-radius: var(--r2); padding: 32px;
  color: #fff; margin-bottom: 20px;
}
.contact-info-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.contact-info-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px;
}
.contact-method:last-child { margin-bottom: 0; }
.cm-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cm-icon svg { width: 16px; height: 16px; stroke: #93c5fd; fill: none; stroke-width: 1.8; }
.cm-label { font-size: 11px; color: rgba(255,255,255,.4); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.cm-value { font-size: 14px; color: #fff; font-weight: 500; }
.cm-value a { color: #fff; text-decoration: none; }
.cm-value a:hover { color: #93c5fd; }

/* === BLOG SINGLE === */
.blog-single { max-width: 760px; margin: 0 auto; padding: 0 5%; }
.blog-single-header { margin-bottom: 40px; }
.blog-single h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(30px, 4vw, 40px); font-weight: 400;
  line-height: 1.15; letter-spacing: -.02em; color: var(--ink);
  margin: 16px 0;
}
.blog-single-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.blog-author { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); }
.blog-author strong { color: var(--ink); font-weight: 700; }
.blog-content { font-size: 16px; color: var(--text); line-height: 1.85; }
.blog-content h2 { font-family: 'Instrument Serif', serif; font-size: 26px; font-weight: 400; color: var(--ink); margin: 40px 0 14px; }
.blog-content h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { margin: 0 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-content li { line-height: 1.7; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content blockquote {
  border-left: 4px solid var(--accent); padding: 16px 24px;
  margin: 32px 0; background: var(--accent-light); border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; color: var(--ink2);
}
.blog-content .callout {
  background: var(--mist); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 24px; margin: 28px 0;
}

/* === 404 PAGE === */
.page-404 { text-align: center; padding: 120px 5%; }
.page-404 .num { font-family: 'Instrument Serif', serif; font-size: 120px; font-weight: 400; color: var(--border2); line-height: 1; margin-bottom: 16px; }
.page-404 h1 { font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.page-404 p { font-size: 16px; color: var(--text2); max-width: 440px; margin: 0 auto 32px; line-height: 1.7; }

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.in { opacity: 1; transform: none; }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity .65s ease, transform .65s ease; }
.fade-left.in { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-right.in { opacity: 1; transform: none; }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 90px; right: 30px; z-index: 998;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
  cursor: pointer; border: none;
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); transform: translateY(-2px); }
.back-to-top svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* === PRIVACY / TERMS === */
.legal-content {
  max-width: 800px; margin: 0 auto; padding: 0 5%;
  font-size: 15px; color: var(--text); line-height: 1.85;
}
.legal-content h2 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 36px 0 10px; }
.legal-content h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 24px 0 8px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 20px; list-style: disc; display: flex; flex-direction: column; gap: 6px; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.separator { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.highlight-text { color: var(--accent); }
.green-text { color: var(--success); }
.border-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bg-mist { background: var(--mist); }
.bg-ink { background: var(--ink); }
.skip-link { position: absolute; top: -100%; left: 0; background: var(--ink); color: #fff; padding: 8px 16px; z-index: 9999; }
.skip-link:focus { top: 0; }
