/*
Theme Name:  Spacio Digital
Theme URI:   https://spacio.digital
Author:      Spacio Digital
Author URI:  https://spacio.digital
Description: Custom one-page WordPress theme for Spacio Digital — Performance Marketing, AI Automation & Cloud Cost Optimization agency.
Version:     1.0.0
License:     Proprietary
Text Domain: spacio-digital
*/

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --teal:        #0ABFA3;
  --teal-dark:   #089982;
  --teal-light:  #D0F5EF;
  --navy:        #0D1F2D;
  --navy-mid:    #132438;
  --navy-light:  #1C3550;
  --slate:       #4A6580;
  --slate-light: #B8CEDF;
  --white:       #FFFFFF;
  --off-white:   #F4F8FB;
  --border:      rgba(255,255,255,0.08);

  --font: 'Inter', system-ui, sans-serif;
  --max: 1160px;
  --radius: 16px;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utilities ────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  background: rgba(10,191,163,0.15);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(10,191,163,0.3);
}
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10,191,163,0.35);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(10,191,163,0.08);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── LANG SWITCHER ──────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: var(--slate-light);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active {
  background: var(--teal);
  color: var(--navy);
}
.lang-btn:not(.active):hover { color: var(--white); }

/* ─── NAV ───────────────────────────────────────────────── */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
}
/* WordPress admin bar offset (logged-in users only) */
body.admin-bar > nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar > nav { top: 46px; } }
body > nav {
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(13,31,45,0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: 32px;
}
.logo {
  font-size: 23px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  color: var(--slate-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta { font-size: 14px; padding: 10px 22px; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(10,191,163,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(10,153,130,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}
.hero-eyebrow p,
.hero-eyebrow h1 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}
.hero-title {
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--teal);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--slate-light);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-proof {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item p:first-child {
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.03em;
}
.proof-item p:last-child {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 2px;
}

/* ─── PROBLEM STRIP ──────────────────────────────────────── */
#problem {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.problem-text p { color: var(--slate-light); font-size: 16px; line-height: 1.7; }
.problem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
  display: inline-block;
}
.pill.active {
  background: rgba(10,191,163,0.12);
  border-color: rgba(10,191,163,0.3);
  color: var(--teal);
}
.pill.pill-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .problem-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── SERVICES ───────────────────────────────────────────── */
#services { padding: 100px 0; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(10,191,163,0.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}
.service-card > p {
  color: var(--slate-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-light);
}
.service-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-cta {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-cta:hover { gap: 10px; }
.service-learn {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.2s;
}
.service-learn:hover { color: var(--teal); }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
#how {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10,191,163,0.12);
  border: 1.5px solid rgba(10,191,163,0.3);
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-line {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(10,191,163,0.3), transparent);
}
.step:last-child .step-line { display: none; }
.step-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  padding-top: 8px;
}
.step-body p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.6;
}
.how-visual {
  background: rgba(10,191,163,0.05);
  border: 1px solid rgba(10,191,163,0.15);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.how-visual .big-number {
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.how-visual p {
  font-size: 16px;
  color: var(--slate-light);
  max-width: 260px;
  margin: 0 auto 32px;
}
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.metric-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}
.metric-box .val {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}
.metric-box .lbl {
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 4px;
}

/* ─── WHY ────────────────────────────────────────────────── */
#why { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: rgba(10,191,163,0.3); }
.why-icon { font-size: 28px; margin-bottom: 16px; }
.why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--slate-light); line-height: 1.65; }

/* ─── CTA BAND ───────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, rgba(10,191,163,0.15) 0%, rgba(10,153,130,0.08) 100%);
  border-top: 1px solid rgba(10,191,163,0.2);
  border-bottom: 1px solid rgba(10,191,163,0.2);
  padding: 90px 0;
}
.cta-inner { text-align: center; }
.cta-inner .section-title { font-size: clamp(28px, 4.5vw, 50px); max-width: 700px; margin: 0 auto 16px; }
.cta-inner .section-sub { margin: 0 auto 40px; text-align: center; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--slate-light);
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.contact-form-wrap.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 40px;
}
.contact-form {
  background: rgba(13,31,45,0.7);
  border: 1px solid rgba(10,191,163,0.2);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-row .form-group input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0 4px;
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: #080F17;
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { font-size: 20px; display: block; margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-domain { font-size: 13px; color: var(--slate); }
.footer-domain a { color: var(--teal); text-decoration: none; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--slate); }
.footer-bottom a { color: var(--slate-light); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.back-link { font-size: 14px; font-weight: 500; color: var(--slate-light); text-decoration: none; transition: color 0.2s; }
.back-link:hover { color: var(--white); }
.legal-page { padding: 136px 0 80px; }
.legal-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-tag { display: inline-block; background: rgba(10,191,163,0.15); color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(10,191,163,0.3); margin-bottom: 16px; }
.legal-header h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; }
.legal-header p { color: var(--slate-light); font-size: 15px; }
.legal-body h2 { font-size: 20px; font-weight: 800; margin: 40px 0 12px; color: var(--white); }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; color: var(--teal); }
.legal-body p { color: var(--slate-light); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 20px; }
.legal-body ul li { color: var(--slate-light); font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.legal-body a { color: var(--teal); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-box { background: rgba(10,191,163,0.06); border: 1px solid rgba(10,191,163,0.2); border-radius: var(--radius); padding: 24px; margin: 24px 0; }
.legal-box p { margin-bottom: 0; }

/* Cookie table */
.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13px; }
.cookie-table th { background: rgba(10,191,163,0.12); color: var(--teal); font-weight: 700; text-align: left; padding: 10px 14px; border: 1px solid rgba(10,191,163,0.2); }
.cookie-table td { padding: 10px 14px; border: 1px solid var(--border); color: var(--slate-light); vertical-align: top; }
.cookie-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* GDPR rights grid */
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.right-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.right-card h4 { font-size: 14px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.right-card p { font-size: 13px; color: var(--slate-light); margin-bottom: 0; line-height: 1.6; }
@media (max-width: 600px) { .rights-grid { grid-template-columns: 1fr; } }

/* Legal footer */
.legal-footer { background: #080F17; border-top: 1px solid var(--border); padding: 32px 0; margin-top: 80px; }
.legal-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.legal-footer p { font-size: 13px; color: var(--slate); }
.legal-footer-links { display: flex; gap: 24px; }
.legal-footer-links a { font-size: 13px; color: var(--slate-light); text-decoration: none; transition: color 0.2s; }
.legal-footer-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   ARTICLE — single.php
   ═══════════════════════════════════════════════════════════ */

/* Layout */
.article-main { padding: 136px 0 80px; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate); margin-bottom: 40px; flex-wrap: wrap; }
.article-breadcrumb a { color: var(--slate-light); text-decoration: none; transition: color 0.2s; }
.article-breadcrumb a:hover { color: var(--teal); }
.article-breadcrumb span[aria-hidden] { color: var(--slate); }
.breadcrumb-current { color: var(--slate-light); }
.article-wrap { max-width: 820px; margin: 0 auto; }

/* Header */
.article-header { margin-bottom: 56px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.article-category-tag { display: inline-block; background: rgba(10,191,163,0.15); color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(10,191,163,0.3); text-decoration: none; margin-bottom: 20px; transition: background 0.2s; }
.article-category-tag:hover { background: rgba(10,191,163,0.25); }
.article-title { font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 20px; }
.article-subtitle { font-size: 19px; color: var(--slate-light); line-height: 1.65; margin-bottom: 24px; }
.article-meta-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--slate-light); padding-top: 20px; border-top: 1px solid var(--border); margin-top: 4px; }
.meta-author { display: flex; align-items: center; gap: 8px; color: var(--slate-light); text-decoration: none; transition: color 0.2s; }
.meta-author:hover { color: var(--white); }
.meta-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.meta-dot { color: var(--slate); }

/* Featured image */
.article-featured-image { margin: 0 0 48px; border-radius: var(--radius); overflow: hidden; }
.article-featured-image img { width: 100%; height: auto; display: block; }

/* Two-column layout */
.article-layout { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 1100px) {
  .article-wrap { max-width: 1100px; }
  .article-layout { grid-template-columns: 1fr 260px; gap: 56px; align-items: start; }
  .article-featured-image { max-width: calc(100% - 316px); }
}
/* TOC visibility is controlled by JS (spacioUpdateTocVisibility) */

/* Key Takeaways */
.key-takeaways-box { background: rgba(10,191,163,0.06); border: 1px solid rgba(10,191,163,0.25); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 48px; }
.ktb-header { display: flex; align-items: center; gap: 8px; color: var(--teal); margin-bottom: 18px; }
.ktb-header strong { font-size: 15px; font-weight: 700; letter-spacing: 0.01em; }
.ktb-list { margin: 0; padding: 0 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.ktb-list li { font-size: 15px; color: var(--slate-light); line-height: 1.65; }

/* Table of Contents — inline (hidden by default; CSS shows on mobile once JS adds .toc-populated) */
.toc-inline { display: none; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 32px; overflow: hidden; }
@media (max-width: 1099px) { .toc-inline.toc-populated { display: block; } }
/* Bulletproof: never show inline TOC on desktop regardless of JS or cache */
@media (min-width: 1100px) { .toc-inline { display: none !important; } }
.toc-toggle-btn { width: 100%; background: none; border: none; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--white); font-size: 14px; font-weight: 600; }
.toc-chevron { transition: transform 0.2s; flex-shrink: 0; }
.toc-inline .toc-nav { padding: 4px 20px 16px; }

/* Table of Contents — sidebar (hidden by default; shown once JS adds .toc-populated) */
.article-sidebar { display: none; }
@media (min-width: 1100px) { .article-sidebar { display: block; } }
.sidebar-toc { display: none; position: sticky; top: 100px; }
.sidebar-toc.toc-populated { display: block; }
.sidebar-toc-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; }
.sidebar-toc .toc-nav { display: flex; flex-direction: column; gap: 2px; }

/* TOC links (shared) */
.toc-nav .toc-link { display: block; font-size: 13px; color: var(--slate-light); text-decoration: none; padding: 5px 0; border-left: 2px solid transparent; padding-left: 12px; transition: color 0.2s, border-color 0.2s; line-height: 1.4; }
.toc-nav .toc-link.toc-sub { padding-left: 24px; font-size: 12px; }
.toc-nav .toc-link:hover { color: var(--white); }
.toc-nav .toc-link.toc-active { color: var(--teal); border-left-color: var(--teal); }

/* Article body typography */
.article-body { color: var(--slate-light); font-size: 17px; line-height: 1.8; }
.article-body h2 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--white); margin: 48px 0 16px; letter-spacing: -0.02em; scroll-margin-top: 100px; }
.article-body h3 { font-size: 19px; font-weight: 700; color: var(--white); margin: 36px 0 12px; scroll-margin-top: 100px; }
.article-body h4 { font-size: 16px; font-weight: 700; color: var(--teal); margin: 28px 0 10px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.article-body li { line-height: 1.7; }
.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.2s; }
.article-body a:hover { opacity: 0.8; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body blockquote { border-left: 3px solid var(--teal); padding: 4px 0 4px 24px; margin: 28px 0; color: var(--slate-light); font-style: italic; font-size: 18px; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 8px 0; }
.article-body pre { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; overflow-x: auto; margin: 24px 0; }
.article-body code { font-family: 'Courier New', monospace; font-size: 14px; background: rgba(10,191,163,0.1); color: var(--teal); padding: 2px 6px; border-radius: 4px; }
.article-body pre code { background: none; color: var(--slate-light); padding: 0; font-size: 13px; }
/* Definition callout box — add class="callout" to a paragraph or div in Gutenberg HTML block */
.article-body .callout { background: rgba(10,191,163,0.06); border: 1px solid rgba(10,191,163,0.2); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; font-size: 15px; }
.article-body .callout strong { color: var(--teal); }

/* Sources */
.sources-box { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.sources-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.sources-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.sources-list li { font-size: 13px; color: var(--slate); line-height: 1.6; }
.sources-list a { color: var(--teal); text-decoration: none; }
.sources-list a:hover { text-decoration: underline; }

/* Share bar */
.share-bar { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.share-label { font-size: 13px; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: 0.08em; }
.share-buttons { display: flex; gap: 8px; }
.share-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--slate-light); text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; cursor: pointer; }
.share-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.15); }
.share-btn.share-x:hover { color: #fff; }
.share-btn.share-linkedin:hover { color: #0a66c2; border-color: #0a66c2; }
.share-btn.share-wa:hover { color: #25d366; border-color: #25d366; }

/* Author bio */
.author-bio-box { display: flex; align-items: flex-start; gap: 20px; margin-top: 56px; padding: 28px 32px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); }
.author-bio-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio-written { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 4px; }
.author-bio-name { font-size: 17px; font-weight: 700; color: var(--white); text-decoration: none; display: block; margin-bottom: 8px; }
.author-bio-name:hover { color: var(--teal); }
.author-bio-desc { font-size: 14px; color: var(--slate-light); line-height: 1.6; margin: 0; }

/* Related articles */
.related-articles-section { margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--border); }
.related-section-title { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s, transform 0.2s; }
.related-card:hover { border-color: rgba(10,191,163,0.3); transform: translateY(-2px); }
.related-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.related-card:hover .related-card-img img { transform: scale(1.04); }
.related-card-body { padding: 18px; }
.related-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); }
.related-card-title { margin: 8px 0; font-size: 15px; font-weight: 700; line-height: 1.4; }
.related-card-title a { color: var(--white); text-decoration: none; }
.related-card-title a:hover { color: var(--teal); }
.related-card-meta { font-size: 12px; color: var(--slate); display: flex; gap: 6px; }

/* ═══════════════════════════════════════════════════════════
   ARCHIVE — home.php / archive.php
   ═══════════════════════════════════════════════════════════ */

.archive-main { padding: 136px 0 80px; }
.archive-header { text-align: center; margin-bottom: 56px; }
.archive-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.archive-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.archive-desc { font-size: 17px; color: var(--slate-light); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Post grid */
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.post-card:hover { border-color: rgba(10,191,163,0.3); transform: translateY(-3px); }
.post-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); text-decoration: none; margin-bottom: 10px; display: block; }
.post-card-title { font-size: 17px; font-weight: 800; line-height: 1.4; margin-bottom: 10px; flex: 1; }
.post-card-title a { color: var(--white); text-decoration: none; }
.post-card-title a:hover { color: var(--teal); }
.post-card-excerpt { font-size: 14px; color: var(--slate-light); line-height: 1.6; margin-bottom: 16px; }
.post-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--slate); margin-top: auto; flex-wrap: wrap; }
.post-card-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.post-card-author { color: var(--slate-light); }
.no-posts { text-align: center; color: var(--slate-light); padding: 60px 0; font-size: 16px; }

/* Pagination — scoped to WordPress .navigation wrapper, never bleeds into main nav */
.navigation.pagination .nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.navigation.pagination .nav-links .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--slate-light); background: rgba(255,255,255,0.04); border: 1px solid var(--border); text-decoration: none; transition: all 0.2s; }
.navigation.pagination .nav-links .page-numbers:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.navigation.pagination .nav-links .page-numbers.current { background: var(--teal); color: var(--dark); border-color: var(--teal); font-weight: 700; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
/* Initial hidden state — JS adds .animate-in on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
[data-animate][data-animate-delay="100"] { transition-delay: 100ms; }
[data-animate][data-animate-delay="200"] { transition-delay: 200ms; }
[data-animate][data-animate-delay="300"] { transition-delay: 300ms; }
[data-animate][data-animate-delay="400"] { transition-delay: 400ms; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input { flex: 1; min-width: 220px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 12px 16px; font-size: 14px; color: var(--white); font-family: var(--font); outline: none; transition: border-color 0.2s; }
.nl-input::placeholder { color: var(--slate); }
.nl-input:focus { border-color: var(--teal); }
.nl-btn { background: var(--teal); color: var(--navy); font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: 8px; border: none; cursor: pointer; font-family: var(--font); white-space: nowrap; transition: background 0.2s, transform 0.15s; }
.nl-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nl-privacy { font-size: 12px; color: var(--slate); margin-top: 10px; }
.nl-privacy a { color: var(--slate-light); text-decoration: underline; }
.nl-success { display: none; color: var(--teal); font-weight: 600; font-size: 15px; margin-top: 12px; }

/* Blog listing banner */
.nl-banner { background: linear-gradient(135deg, rgba(10,191,163,0.1) 0%, rgba(10,191,163,0.04) 100%); border: 1px solid rgba(10,191,163,0.25); border-radius: var(--radius); padding: 48px 56px; margin: 56px 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nl-banner-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.nl-banner-title { font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.nl-banner-sub { font-size: 14px; color: var(--slate-light); line-height: 1.65; }

/* Article inline — centered single column */
.nl-article-box { background: rgba(10,191,163,0.06); border: 1px solid rgba(10,191,163,0.25); border-radius: var(--radius); padding: 48px 56px; margin: 56px auto; text-align: center; max-width: 580px; }
.nl-article-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.nl-article-title { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 24px; }
.nl-article-box .nl-form { justify-content: center; }
.nl-article-box .nl-privacy { text-align: center; margin-top: 12px; }

/* Footer compact */
.footer-nl { border-bottom: 1px solid var(--border); padding-bottom: 48px; margin-bottom: 48px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-nl-text { flex: 1; min-width: 240px; }
.footer-nl-text strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.footer-nl-text span { font-size: 13px; color: var(--slate-light); }
.footer-nl-form { flex: 2; min-width: 300px; }

@media (max-width: 768px) {
  .nl-banner { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  .nl-article-box { padding: 32px 24px; }
  .footer-nl { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-page { padding: 136px 0 100px; }

.contact-page-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.contact-page-title { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin: 8px 0 20px; }
.contact-page-sub { font-size: 18px; color: var(--slate-light); line-height: 1.65; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

/* Left column */
.contact-option {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.contact-option:hover { border-color: rgba(10,191,163,0.3); }
.contact-option--primary {
  background: rgba(10,191,163,0.06);
  border-color: rgba(10,191,163,0.25);
}
.contact-option-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.contact-option-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-option-body p { font-size: 14px; color: var(--slate-light); line-height: 1.65; margin-bottom: 16px; }
.contact-cal-btn { font-size: 14px; padding: 10px 22px; }
.contact-email-link { color: var(--teal); font-weight: 600; font-size: 15px; text-decoration: none; transition: color 0.2s; }
.contact-email-link:hover { color: var(--white); }

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 8px;
}
.contact-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate-light); }
.contact-trust-icon { font-size: 16px; }

/* Right column — form */
.contact-form--page { max-width: 100%; padding: 40px 44px; }
.contact-form--page h3 { font-size: 22px; margin-bottom: 6px; text-align: left; }
.contact-form-sub { font-size: 14px; color: var(--slate-light); margin-bottom: 28px; }
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select:focus { border-color: var(--teal); }
.form-group select option { background: #0f172a; color: var(--white); }

/* ─── SERVICE PAGES ─────────────────────────────────────────── */
.service-hero {
  padding: 160px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10,191,163,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(10,191,163,0.06) 0%, transparent 60%);
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.service-hero > .container { position: relative; z-index: 2; }
.service-hero-badge {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
}
.service-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,191,163,0.08);
  border: 1px solid rgba(10,191,163,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.service-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 auto 20px;
  max-width: 820px;
}
.service-hero h1 em { font-style: normal; color: var(--teal); }
.service-hero-sub {
  font-size: 18px;
  color: var(--slate-light);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.service-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.service-hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.service-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.service-stat-lbl {
  font-size: 13px;
  color: var(--slate-light);
  max-width: 130px;
  margin: 0 auto;
  line-height: 1.4;
}
/* challenges */
.service-challenges {
  background: var(--navy-mid);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.challenges-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.challenges-text h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.challenges-text p { color: var(--slate-light); line-height: 1.7; }
.challenges-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.challenges-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.5;
  font-style: italic;
}
.challenges-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
  margin-top: 1px;
}
/* features */
.service-features { padding: 96px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(10,191,163,0.35);
  transform: translateY(-3px);
}
.feature-card-icon { font-size: 28px; margin-bottom: 14px; line-height: 1; }
.feature-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.feature-card p { font-size: 14px; color: var(--slate-light); line-height: 1.6; margin: 0; }
/* process */
.service-process {
  padding: 96px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* results */
.service-results { padding: 80px 0; }
.results-strip {
  display: flex;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-mid);
}
.result-item {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.result-item:last-child { border-right: none; }
.result-val {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.result-lbl { font-size: 13px; color: var(--slate-light); line-height: 1.4; }
/* FAQ */
.service-faq {
  padding: 96px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.faq-list {
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: rgba(10,191,163,0.2); }
.faq-answer { padding: 0 24px 20px; font-size: 14px; color: var(--slate-light); line-height: 1.7; }
.faq-answer p { margin: 0; }
/* bottom CTA */
.service-bottom-cta { padding: 96px 0; text-align: center; }
.service-bottom-cta .cta-inner { max-width: 660px; margin: 0 auto; }
.service-bottom-cta .cta-actions { justify-content: center; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  nav ul.nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: auto auto; justify-content: space-between; }
  nav.nav-open ul.nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,31,45,0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    z-index: 99;
  }
  nav.nav-open ul.nav-links li { width: 100%; }
  nav.nav-open ul.nav-links a { display: block; padding: 13px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  nav.nav-open ul.nav-links li:last-child a { border-bottom: none; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form--page { padding: 32px; }
  .challenges-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .service-process-inner { grid-template-columns: 1fr; gap: 48px; }
  .results-strip { flex-direction: column; }
  .result-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .result-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-proof { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .author-bio-box { flex-direction: column; }
  .contact-form--page { padding: 24px 20px; }
  .contact-option { flex-direction: column; gap: 12px; }
  .service-hero-stats { gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
}
