/* ==========================================================================
   CDEPos Landing — Stylesheet
   Design system: navy + orange. Inter for body, Plus Jakarta Sans for display.
   ========================================================================== */

/* ----------  VARIABLES  ---------- */
:root {
  /* Brand */
  --navy-900: #0F1A2E;
  --navy-800: #1A2744;
  --navy-700: #1E2F4A;
  --navy-600: #2E4063;
  --navy-500: #3D5579;

  --orange-600: #E65100;
  --orange-500: #F57C00;
  --orange-400: #FF8F00;
  --orange-300: #FFA726;

  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F5F7FA;
  --gray-100: #E8ECF1;
  --gray-200: #D1D8E3;
  --gray-400: #8B96A8;
  --gray-500: #5A6577;
  --gray-700: #3A4255;
  --gray-900: #1A1F2E;

  --green-500: #2E7D32;
  --green-400: #43A047;
  --red-500: #D32F2F;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 820px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.04), 0 1px 3px rgba(15, 26, 46, 0.06);
  --shadow: 0 4px 12px rgba(15, 26, 46, 0.08), 0 2px 4px rgba(15, 26, 46, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 26, 46, 0.12), 0 4px 8px rgba(15, 26, 46, 0.04);
  --shadow-xl: 0 24px 48px rgba(15, 26, 46, 0.15);

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

  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------  BRAND LOGO (HTML/CSS - retina-perfect, no image) ---------- */
.brand-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}
.brand-logo__cde {
  color: var(--orange-600);
}
.brand-logo__pos {
  color: var(--navy-900);
}
.brand-logo__dot {
  color: var(--orange-600);
  margin-left: 1px;
}
/* White text on dark background (footer) */
.brand-logo__pos--light {
  color: var(--white);
}
.brand-logo--footer {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
svg { flex-shrink: 0; }

a { color: var(--orange-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ----------  LAYOUT  ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-w-narrow); }

.section {
  padding: 80px 0;
}
.section--alt { background: var(--gray-50); }
.section--dark { background: var(--navy-900); color: var(--gray-200); }

.section__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(230, 81, 0, 0.08);
  border-radius: 100px;
}
.eyebrow--light {
  color: var(--orange-400);
  background: rgba(255, 143, 0, 0.15);
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 18px;
}
.section__title--light { color: var(--white); }

.section__lead {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.section__lead--light { color: var(--gray-200); }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn__icon { width: 20px; height: 20px; }

.btn--sm { padding: 8px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--orange-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35);
}
.btn--primary:hover {
  background: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 81, 0, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-200);
}
.btn--ghost:hover {
  background: var(--gray-50);
  color: var(--navy-900);
  border-color: var(--navy-900);
}

/* When ghost button lives on a dark hero, override to be visible */
.hero .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

/* ----------  HEADER / NAV  ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.site-header__logo { height: 32px; width: auto; }

/* ----------  BRAND LOGO (CSS text)  ---------- */
.brand-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.brand-logo__cde { color: var(--orange-600); }
.brand-logo__pos { color: var(--navy-900); }
.brand-logo__pos--light { color: var(--white); }
.brand-logo__dot { color: var(--orange-600); margin-left: 2px; font-size: 28px; }

.brand-logo--footer {
  font-size: 32px;
  margin-bottom: 16px;
}

.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-nav__menu a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition);
}
.site-nav__menu a:hover { color: var(--orange-600); }

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.site-nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .site-nav { position: static; }
  .site-nav__toggle { display: flex; order: 2; }
  .site-nav__menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
  }
  .site-nav__menu.is-open { max-height: 400px; padding: 24px; }
  .site-nav__menu:not(.is-open) { padding-top: 0; padding-bottom: 0; border: 0; }
  .site-header__cta .btn { padding: 8px 14px; font-size: 13px; }
}

/* ----------  HERO  ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(230, 81, 0, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(255, 143, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero__bg::before, .hero__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.hero__bg::before {
  width: 400px; height: 400px;
  background: var(--orange-600);
  top: -100px; right: -100px;
  opacity: 0.2;
}
.hero__bg::after {
  width: 300px; height: 300px;
  background: var(--orange-400);
  bottom: -50px; left: 20%;
  opacity: 0.12;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-200);
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge--live {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero__title .accent { color: var(--orange-400); }

.hero__lead {
  font-size: 1.15rem;
  color: var(--gray-200);
  margin-bottom: 36px;
  line-height: 1.55;
  max-width: 560px;
}
.hero__lead strong { color: var(--white); font-weight: 600; }

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-400);
  line-height: 1;
}
.hero__trust-lbl {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Hero mockup */
.hero__visual {
  position: relative;
}
.mockup {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}
.mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.mockup__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #ff5f57; }
.dot--y { background: #febc2e; }
.dot--g { background: #28c841; }
.mockup__url {
  margin-left: 16px;
  font-size: 12px;
  color: var(--gray-500);
  font-family: 'SF Mono', Monaco, monospace;
}

.mockup__body {
  display: grid;
  grid-template-columns: 50px 1fr;
  min-height: 360px;
}
.mockup__sidebar {
  background: var(--navy-900);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup__sidebar-item {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.mockup__sidebar-item--active { background: var(--orange-500); }

.mockup__content {
  padding: 20px;
  background: var(--gray-50);
}

.mockup__kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.mockup__kpi {
  background: var(--white);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}
.mockup__kpi-label { font-size: 10px; color: var(--gray-500); display: block; }
.mockup__kpi-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-900);
  display: block;
  margin-top: 2px;
}

.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  background: var(--white);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  margin-bottom: 14px;
}
.mockup__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

.mockup__rows { display: flex; flex-direction: column; gap: 6px; }
.mockup__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gray-100);
  font-size: 11px;
}
.mockup__row-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.mockup__row-badge--ok { background: #dcfce7; color: #166534; }
.mockup__row-label { color: var(--gray-700); font-weight: 500; }
.mockup__row-val { color: var(--navy-900); font-weight: 700; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 64px; }
  .hero__trust { gap: 20px; flex-wrap: wrap; }
}

/* ----------  TRUST BAR  ---------- */
.trustbar {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.trustbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px;
}
.trustbar__item strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
}
.trustbar__item span {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

@media (max-width: 700px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ----------  GRID / CARDS  ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.card--problem { border-left: 4px solid var(--red-500); }
.card--solution { border-left: 4px solid var(--green-500); }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.5;
}
.checklist li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
}
.checklist--red li::before {
  content: '✕';
  background: var(--red-500);
}
.checklist--green li::before {
  content: '✓';
  background: var(--green-500);
}

/* ----------  FEATURES GRID  ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.feature__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature__icon svg { width: 24px; height: 24px; color: var(--white); }
.feature__icon--orange { background: var(--orange-600); }
.feature__icon--blue { background: #1565C0; }
.feature__icon--teal { background: #00838F; }
.feature__icon--purple { background: #6A1B9A; }
.feature__icon--green { background: var(--green-500); }
.feature__icon--red { background: #C62828; }

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; }
}
@media (min-width: 700px) and (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}

/* ----------  INDUSTRIES  ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}
.industry:hover {
  transform: translateY(-3px);
  border-color: var(--orange-300);
  box-shadow: var(--shadow);
}
.industry__emoji { font-size: 36px; display: block; margin-bottom: 12px; }
.industry h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.industry p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}

@media (max-width: 900px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .industries { grid-template-columns: 1fr; } }

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

.plan {
  position: relative;
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
}

.plan--featured {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  color: var(--gray-200);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--orange-500);
}
.plan--featured .plan__name,
.plan--featured .plan__price { color: var(--white); }
.plan--featured .plan__desc { color: var(--gray-200); }
.plan--featured .plan__features li { color: var(--gray-200); }

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-600);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan__header { margin-bottom: 24px; }
.plan__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.plan__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--navy-900);
}
.plan:not(.plan--featured) .plan__price { border-color: var(--gray-100); }

.plan__currency {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.plan__amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan__period {
  font-size: 14px;
  color: var(--gray-500);
  margin-left: 4px;
}
.plan--featured .plan__period { color: var(--gray-200); }

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plan__features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.5;
}
.plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  background: rgba(46, 125, 50, 0.15);
  color: var(--green-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}
.plan--featured .plan__features li::before {
  background: rgba(255, 143, 0, 0.2);
  color: var(--orange-300);
}

.plans__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; gap: 20px; }
  .plan--featured { transform: none; }
}

/* ----------  STEPS  ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.step:hover { border-color: var(--orange-300); transform: translateX(4px); }
.step__num {
  width: 56px; height: 56px;
  background: var(--orange-600);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
}
.step__body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.step__body p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .step { padding: 20px; gap: 16px; }
  .step__num { width: 44px; height: 44px; font-size: 20px; }
}

/* ----------  TESTIMONIALS  ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--orange-400);
  opacity: 0.4;
}
.testimonial blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 15px;
}
.testimonial figcaption span {
  font-size: 13px;
  color: var(--gray-500);
}

@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ----------  FAQ  ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item[open] {
  border-color: var(--orange-300);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--orange-600);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__answer { padding: 0 24px 20px; }
.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
}
.faq__answer p strong { color: var(--navy-900); }

/* ----------  CTA FINAL  ---------- */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-400));
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta::before { width: 300px; height: 300px; top: -100px; right: -100px; }
.cta::after { width: 200px; height: 200px; bottom: -50px; left: 10%; }

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta__title {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.cta__lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.55;
}
.cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta__actions .btn--primary {
  background: var(--white);
  color: var(--orange-600);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cta__actions .btn--primary:hover { background: var(--off-white); color: var(--orange-600); }
.cta__mini {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* ----------  FOOTER  ---------- */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-200);
  padding: 64px 0 28px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer__col h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a {
  color: var(--gray-200);
  font-size: 14px;
  transition: color var(--transition);
}
.site-footer__col a:hover { color: var(--orange-400); }

.site-footer__col--brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-200);
  margin: 16px 0 24px;
  max-width: 380px;
}

.site-footer__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-200);
}
.site-footer__address strong { color: var(--white); }

.site-footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}
.site-footer__bottom p { margin-bottom: 6px; }
.site-footer__tags span { color: var(--gray-400); font-size: 12px; }

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ----------  FLOATING WHATSAPP  ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
  animation: wa-bounce 2.5s ease-in-out infinite;
}
.wa-float:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 26px; height: 26px; }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .wa-float__label { display: none; }
  .wa-float { padding: 14px; }
}

/* ----------  UTILITIES / MISC  ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   SECONDARY PAGES (paginas/*.php)
   ========================================================================== */

/* ----------  BREADCRUMB  ---------- */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 0;
  font-size: 14px;
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
}
.breadcrumb li + li::before {
  content: '/';
  color: var(--gray-400);
  font-weight: 400;
}
.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--orange-600); }
.breadcrumb li[aria-current="page"] {
  color: var(--navy-900);
  font-weight: 600;
}

/* ----------  PAGE HERO  ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  max-width: var(--max-w-narrow);
}
.page-hero__title {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero__lead {
  color: var(--gray-200);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 680px;
}
.page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.page-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

/* ----------  PROSE (long-form content) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
}
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--navy-900);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.prose p {
  margin-bottom: 20px;
}
.prose p strong { color: var(--navy-900); }
.prose ul,
.prose ol {
  margin-bottom: 28px;
  padding-left: 0;
}
.prose .checklist {
  margin-top: 8px;
  margin-bottom: 28px;
}
.prose .checklist li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.prose a {
  color: var(--orange-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--orange-500); }

/* ----------  RELATED GRID  ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.related-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--gray-700);
  transition: all var(--transition);
  display: block;
}
.related-card:hover {
  border-color: var(--orange-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--gray-700);
}
.related-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy-900);
}
.related-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 700px) {
  .related-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 56px; }
}
