/* ═══════════════════════════════════════════════════════════════
   Decisão Certa — Main Frontend Styles
   Design tokens ported exactly from index.html prototype
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --red:    #D72323;
  --red-dk: #b01c1c;
  --gray:   #58595B;
  --gray-lt:#f5f5f5;
  --white:  #ffffff;
  --dark:   #1a1a1a;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(0,0,0,.08);
  --trans:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utility ──────────────────────────────────────────────────── */
.container { width: 92%; max-width: 1160px; margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; cursor: pointer; border: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(215,35,35,.35); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-outline  {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); box-shadow: none; }

.btn-dark-outline {
  background: transparent; color: var(--dark);
  border: 2px solid #ddd;
}
.btn-dark-outline:hover { background: var(--gray-lt); box-shadow: none; }

.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--dark); line-height: 1.2;
}
.section-title span { color: var(--red); }
.section-sub { color: var(--gray); font-size: 1.05rem; margin-top: .75rem; max-width: 540px; }

/* ── Fade-in animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--trans);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo svg { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--gray);
  transition: color var(--trans); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .85rem 1.5rem; font-weight: 500; color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: color var(--trans), background var(--trans);
}
.mobile-menu a:hover { color: var(--red); background: var(--gray-lt); }
.mobile-menu .btn { margin: 1rem 1.5rem 0; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 120px 0 80px;
}

.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 { width: 500px; height: 500px; background: var(--red); top: -100px; right: -100px; animation-delay: 0s; }
.hero-blob-2 { width: 350px; height: 350px; background: #ff6b6b; bottom: -80px; left: 10%; animation-delay: 3s; }

@keyframes blobFloat {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%       { transform: scale(1.08) translate(20px, -20px); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(215,35,35,.15); border: 1px solid rgba(215,35,35,.3);
  color: #ff8080; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 1.25rem;
}
.hero-title .highlight {
  color: var(--red);
  text-decoration: underline; text-decoration-color: rgba(215,35,35,.4);
  text-underline-offset: 6px;
}

.hero-desc { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--white); }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* Lead form card */
.hero-card {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.35);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.card-title { font-size: 1.35rem; font-weight: 700; margin-bottom: .4rem; }
.card-sub { color: var(--gray); font-size: .9rem; margin-bottom: 1.75rem; }

/* ── Form Styles ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--gray); margin-bottom: .35rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .82rem 1rem;
  border: 2px solid #e8e8e8; border-radius: var(--radius);
  font-family: inherit; font-size: .95rem; color: var(--dark);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none; appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,35,35,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-cta { width: 100%; margin-top: .5rem; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-disclaimer { font-size: .72rem; color: #aaa; text-align: center; margin-top: .75rem; }
.form-disclaimer a { color: var(--red); }

/* GDPR checkbox */
.form-gdpr {
  display: flex; align-items: flex-start; gap: .6rem;
  margin: .75rem 0; font-size: .82rem; color: var(--gray);
}
.form-gdpr input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  border: 2px solid #e8e8e8; border-radius: 4px;
  cursor: pointer; margin-top: 2px;
  accent-color: var(--red);
}
.form-gdpr a { color: var(--red); text-decoration: underline; }

/* Form success / error states */
.form-success {
  text-align: center; padding: 2rem 1rem;
}
.form-success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(34,197,94,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.form-success-icon svg { stroke: #22c55e; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.form-success p { color: var(--gray); font-size: .9rem; }

.form-error { color: #ef4444; font-size: .8rem; margin-top: .25rem; }
.input-error { border-color: #ef4444 !important; }

/* Loading state */
.btn-loading { opacity: .7; pointer-events: none; }
.btn-loading::after {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: .5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot */
.dc-honeypot { display: none !important; position: absolute; left: -9999px; }

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
#trust {
  background: var(--gray-lt);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 500; color: var(--gray);
}
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
#services { padding: 100px 0; }
.services-head { text-align: center; margin-bottom: 4rem; }
.services-head .section-sub { margin: .75rem auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white); border-radius: 18px;
  border: 1.5px solid #ebebeb; padding: 2rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(215,35,35,.12);
  border-color: var(--red);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(215,35,35,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--trans);
}
.service-card:hover .service-icon { background: rgba(215,35,35,.15); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--red); }
.service-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.service-desc { font-size: .9rem; color: var(--gray); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; font-weight: 600; color: var(--red);
  margin-top: 1rem;
  transition: gap var(--trans);
}
.service-card:hover .service-link { gap: .65rem; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
#how {
  background: #fafafa; padding: 100px 0;
  position: relative; overflow: hidden;
}
#how::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(215,35,35,.04) 0%, transparent 70%);
  pointer-events: none;
}

.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: padding var(--trans);
}
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--red); color: var(--white);
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(215,35,35,.35);
}
.step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.step-body p  { font-size: .9rem; color: var(--gray); }

.how-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.how-visual-bg {
  width: 320px; height: 320px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(215,35,35,.08), rgba(215,35,35,.02));
  border: 1.5px dashed rgba(215,35,35,.2);
  display: flex; align-items: center; justify-content: center;
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.how-visual-inner {
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  animation: spinSlow 20s linear infinite reverse;
}
.how-visual-inner svg { width: 80px; height: 80px; stroke: var(--red); }

/* ══════════════════════════════════════════════════════════════
   LEAD SECTION (FULL WIDTH)
══════════════════════════════════════════════════════════════ */
#lead {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
#lead::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; }
.lead-content .section-label { color: rgba(255,255,255,.7); }
.lead-content .section-title { color: var(--white); }
.lead-content .section-sub { color: rgba(255,255,255,.75); }

.lead-perks { margin-top: 2rem; display: flex; flex-direction: column; gap: .85rem; }
.perk {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: rgba(255,255,255,.9);
}
.perk-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-dot::after { content: '✓'; font-size: .7rem; font-weight: 700; color: var(--white); }

.lead-form {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; box-shadow: 0 24px 64px rgba(0,0,0,.25);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
#testimonials { padding: 100px 0; }
.testimonials-head { text-align: center; margin-bottom: 4rem; }
.testimonials-head .section-sub { margin: .75rem auto 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.testi-card {
  background: var(--white); border-radius: 18px;
  border: 1.5px solid #ebebeb; padding: 2rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: #f5a623; font-size: 1rem; }

.testi-text {
  font-size: .95rem; color: var(--gray); line-height: 1.7;
  margin-bottom: 1.25rem; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: .9rem; }
.author-meta  { font-size: .78rem; color: #aaa; }

/* ══════════════════════════════════════════════════════════════
   BLOG / POSTS PREVIEW
══════════════════════════════════════════════════════════════ */
#blog { background: var(--gray-lt); padding: 100px 0; }
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.post-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }

.post-thumb {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  position: relative; overflow: hidden;
}
.post-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
}
.post-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.post-thumb-fallback-1 { background: linear-gradient(135deg, #1a1a1a 0%, var(--red-dk) 100%); }
.post-thumb-fallback-2 { background: linear-gradient(135deg, #2d2d2d 0%, #444 100%); }
.post-thumb-fallback-3 { background: linear-gradient(135deg, var(--red-dk) 0%, #2d2d2d 100%); }

.post-cat {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: var(--red); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .75rem; border-radius: 50px;
}
.post-body    { padding: 1.5rem; }
.post-meta    { font-size: .78rem; color: #aaa; margin-bottom: .6rem; }
.post-title   { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.4; }
.post-title a:hover { color: var(--red); }
.post-excerpt { font-size: .88rem; color: var(--gray); line-height: 1.6; }
.post-read {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 600; color: var(--red); margin-top: .75rem;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
#faq { padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1.5px solid #ebebeb; border-radius: 14px; overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.active { border-color: var(--red); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 600; font-size: .95rem;
  transition: color var(--trans);
  background: none; border: none; width: 100%; text-align: left;
}
.faq-item.active .faq-q { color: var(--red); }

.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gray-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; line-height: 1;
  transition: transform var(--trans), background var(--trans);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: rgba(215,35,35,.1); color: var(--red); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: .9rem; color: var(--gray); line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-item.active .faq-a { max-height: 500px; padding: 0 1.5rem 1.25rem; }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
#cta-banner {
  background: var(--dark); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(215,35,35,.08); filter: blur(60px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--white); margin-bottom: 1rem;
  position: relative;
}
.cta-sub { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; position: relative;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#footer { background: #111; padding: 60px 0 30px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-logo svg { height: 40px; }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; }

.footer-col h5 {
  font-size: .85rem; font-weight: 700; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; font-size: .88rem; color: rgba(255,255,255,.45);
  margin-bottom: .6rem; transition: color var(--trans);
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background var(--trans), color var(--trans);
}
.social-btn:hover { background: var(--red); color: var(--white); }

/* Footer preferences link */
.footer-cookie-link {
  color: rgba(255,255,255,.3); font-size: .8rem;
  cursor: pointer; background: none; border: none;
  text-decoration: underline;
}
.footer-cookie-link:hover { color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   STICKY CTA BAR (mobile)
══════════════════════════════════════════════════════════════ */
#sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); padding: 1rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  z-index: 998; gap: .75rem;
}
#sticky-cta .btn { flex: 1; justify-content: center; font-size: .88rem; padding: .85rem 1rem; }

/* ══════════════════════════════════════════════════════════════
   PAGE / SINGLE TEMPLATES
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  padding: 120px 0 60px; text-align: center;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1rem;
}
.page-hero-sub { color: rgba(255,255,255,.65); font-size: 1.1rem; }

.page-content {
  padding: 60px 0; max-width: 780px; margin: 0 auto;
}
.page-content .container { max-width: 780px; }

/* Breadcrumbs */
.dc-breadcrumbs {
  font-size: .85rem; color: rgba(255,255,255,.5);
  margin-top: 1.5rem;
}
.dc-breadcrumbs a { color: rgba(255,255,255,.6); }
.dc-breadcrumbs a:hover { color: var(--red); }
.dc-breadcrumbs span { margin: 0 .5rem; }

/* ══════════════════════════════════════════════════════════════
   BLOG / ARCHIVE
══════════════════════════════════════════════════════════════ */
.archive-wrap { padding: 60px 0; }
.archive-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }

.single-article { padding: 60px 0; }
.article-header { margin-bottom: 2.5rem; }
.article-header .post-cat { position: static; display: inline-block; margin-bottom: 1rem; }
.article-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.article-meta { color: var(--gray); font-size: .9rem; }

.article-body {
  font-size: 1.05rem; line-height: 1.8; color: #333;
}
.article-body h2, .article-body h3 { font-weight: 700; margin: 2rem 0 1rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1.25rem 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: .5rem; }
.article-body a { color: var(--red); text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--gray-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; margin: 1.5rem 0;
}

/* ══════════════════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════════════════ */
.notfound-page {
  min-height: 60vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 0 80px;
}
.notfound-num {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800; color: var(--red); line-height: 1;
  opacity: .15; display: block; margin-bottom: -2rem;
}
.notfound-title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.notfound-text { color: var(--gray); margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════════════════
   SEARCH PAGE
══════════════════════════════════════════════════════════════ */
.search-wrap { padding: 60px 0; }
.search-result { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #ebebeb; }
.search-result:last-child { border-bottom: none; }
.search-result h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.search-result h2 a:hover { color: var(--red); }
.search-result .post-meta { font-size: .82rem; color: #aaa; margin-bottom: .5rem; }
.search-result p { color: var(--gray); font-size: .95rem; }

/* ══════════════════════════════════════════════════════════════
   COOKIE POLICY TABLE (shortcode)
══════════════════════════════════════════════════════════════ */
.dc-cookie-policy h2 {
  font-size: 1.35rem; font-weight: 700; margin: 2rem 0 .75rem;
}
.dc-cookie-policy p, .dc-cookie-policy li { line-height: 1.7; margin-bottom: .75rem; }
.dc-cookie-policy ul { padding-left: 1.5rem; list-style: disc; }

.dc-cookie-table {
  width: 100%; border-collapse: collapse;
  margin: 1rem 0 1.5rem; font-size: .9rem;
}
.dc-cookie-table th {
  background: var(--dark); color: var(--white);
  padding: .75rem 1rem; text-align: left; font-weight: 600;
}
.dc-cookie-table td {
  padding: .75rem 1rem; border-bottom: 1px solid #ebebeb;
  vertical-align: top;
}
.dc-cookie-table tr:nth-child(even) td { background: var(--gray-lt); }

/* ══════════════════════════════════════════════════════════════
   LANDING PAGE TEMPLATE
══════════════════════════════════════════════════════════════ */
.landing-page-body { background: #f8f8f8; }
.landing-nav {
  background: var(--dark); padding: 1rem 0;
  text-align: center; position: sticky; top: 0; z-index: 100;
}
.landing-nav img { height: 40px; margin: 0 auto; filter: brightness(0) invert(1); }

.landing-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
}
.landing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.landing-footer {
  background: #111; padding: 2rem 0; text-align: center;
}
.landing-footer p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE TEMPLATE
══════════════════════════════════════════════════════════════ */
.service-page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.service-page-body { padding: 80px 0; }
.service-page-body .container { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.service-page-sidebar .lead-form { position: sticky; top: 100px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .archive-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-page-body .container { grid-template-columns: 1fr; }
  .service-page-sidebar .lead-form { position: static; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .how-grid, .lead-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { animation: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-visual { display: none; }
  .landing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  #hero { padding: 100px 0 60px; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .blog-head { flex-direction: column; align-items: flex-start; }
  .trust-inner { gap: 1.25rem; }
  .trust-item { font-size: .78rem; }
  .page-content { padding: 40px 0; }
}
