/* FONT IMPORT  (single request — never in page CSS) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* DESIGN TOKENS - Change one value here → updates everywhere automatically. */
:root {
  /* Brand */
  --primary:        #1a2b6b;
  --primary-dark:   #0f1a45;
  --primary-light:  #2d3f8a;
  --accent:         #e8400c;
  --accent-hover:   #c93508;
  --green:          #1d9e75;
  --green-dark:     #0f6e56;
  --whatsapp-green: #25d366;

  /* Surfaces */
  --white:          #ffffff;
  --light-bg:       #f0f4f9;
  --border:         #dde3f0;
  --trust-bg:       #e1f5ee;
  --trust-border:   #9fe1cb;

  /* Text */
  --text-dark:      #0d1b3e;
  --text-body:      #3d4f6b;
  --text-muted:     #6b7a99;
  --text-white:     #ffffff;

  /* Shadows */
  --shadow-sm:  0 2px 8px  rgba(26, 43, 107, 0.08);
  --shadow-md:  0 6px 24px rgba(26, 43, 107, 0.12);
  --shadow-lg:  0 16px 48px rgba(26, 43, 107, 0.16);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition:      all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --container-max: 1140px;
  --section-gap:   80px;
  --navbar-height: 70px;

  --sd-hero-min-h:   88vh;
  --sd-step-size:    56px;
  --sd-card-radius:  var(--radius-md);  
  --sd-section-gap:  var(--section-gap); 

  --hero-img-w: 440px;
  --hero-img-h: 264px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul  { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/*   TYPOGRAPHY SCALE */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw,   3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw,   1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
h5 { font-size: 0.95rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; }

p      { color: var(--text-muted); line-height: 1.72; }
strong { font-weight: 700; color: var(--text-dark); }


/*   LAYOUT PRIMITIVES */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.section-padding { padding-block: var(--section-gap); }

/* Background helpers */
.bg-surface { background: var(--light-bg); }
.bg-white   { background: var(--white); }
.bg-dark    { background: var(--primary-dark); }

/* Text helpers */
.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }
.text-green   { color: var(--green); }
.text-inverse { color: var(--white); }

/* Flex helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }

/* Grid helpers */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

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

/* Backward-compat alias */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}


/*   SECTION UTILITIES - Declared once. Page CSS must never redeclare these selectors. */

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.72;
}

.section-header { margin-bottom: 52px; }
.section-header.text-center .section-subtitle { margin-inline: auto; }

/* Small pill badges */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Skill / tool tag */
.skill-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(26, 43, 107, 0.06);
  border: 1px solid rgba(26, 43, 107, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }

/* Inline arrow link (cards, sidebars, CTAs) */
.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap 0.2s, color 0.2s;
}
.learn-more-link:hover { gap: 10px; color: var(--accent-hover); }
.learn-more-link .material-symbols-outlined { font-size: 17px; }

/* Dir-link — contact/location arrow links */
.dir-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.2s, color 0.2s;
}
.dir-link:hover { gap: 8px; color: var(--accent-hover); }


/*  BUTTONS
   All variants are declared exactly once, here.
   Page CSS must not add, override, or redeclare any of these.
   To add a new variant, add it in this block only. */

/* Shared structure */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white,
.btn-ghost,
.btn-white,
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

/* Primary */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(232, 64, 12, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 64, 12, 0.38);
}

/* Secondary — outlined navy */
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* Outline — light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Outline-white — dark/navy backgrounds */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Ghost — offer / dark sections */
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

/* White — accent fill for dark-section primary CTAs */
.btn-white {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(232, 64, 12, 0.28);
}
.btn-white:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-wa {
  background: transparent;
  color: var(--whatsapp-green);
  border-color: var(--whatsapp-green);
}
.btn-wa:hover {
  background: var(--whatsapp-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* Size modifiers */
.btn-large { padding: 16px 34px; font-size: 1rem; }
.btn-sm    { padding: 8px 18px;  font-size: 0.82rem; }


/* FORMS - Declared once. All pages inherit. Never redeclare in page CSS. */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.required { color: #dc4c64; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 43, 107, 0.08);
}
.form-control.input-error {
  border-color: #dc4c64;
  box-shadow: 0 0 0 3px rgba(220, 76, 100, 0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a99' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.field-error {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: #dc4c64;
  margin-top: 4px;
}

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

.privacy-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Offer / claim form inputs (green focus ring variant) */
.claim-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.claim-input::placeholder { color: var(--text-muted); opacity: 0.7; }
.claim-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}
.claim-textarea { resize: vertical; min-height: 88px; }
.claim-error    { font-size: 0.76rem; color: #ef4444; font-weight: 500; }


/* CARD PRIMITIVES */

/* Generic shell — extend in page CSS, never clone properties */
.card-base {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.card-base:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Service card — home + services page */
.service-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

/* Icon container inside service cards */
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 43, 107, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Card heading link */
.card-heading-link {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s;
}
/* .service-card:hover .card-heading-link { color: var(--accent); } */

/* Author avatar (blog, testimonials, about) */
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Service bullet list (home, services, service_detail) */
.service-bullets {
  list-style: none;
  margin: 16px 0 24px;
}
.service-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='7' fill='%230F6E56'/%3E%3Cpath d='M3.5 7l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* CTA arrow link on service cards */
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
  transition: gap 0.2s, color 0.2s;
}
.service-cta-link:hover { gap: 8px; color: var(--accent-hover); }


/*  ANIMATION SYSTEM */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-fade-up.in-view { opacity: 1; transform: translateY(0); }

.animate-fade-up-delay-1 { transition-delay: 0.1s; }
.animate-fade-up-delay-2 { transition-delay: 0.2s; }
.animate-fade-up-delay-3 { transition-delay: 0.3s; }
.animate-fade-up-delay-4 { transition-delay: 0.4s; }

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].in-view { opacity: 1; transform: none; }

/* CSS-only animation for above-the-fold hero elements */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-animate                  { animation: heroFadeUp 0.6s ease forwards; }
.hero-animate-delay-1          { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.hero-animate-delay-2          { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  [data-animate],
  .hero-animate {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}


/* PAGE HERO SHELL */
.page-hero {
  background: var(--light-bg);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero .hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 540px;
}

.page-hero .hero-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.page-hero .hero-img img {
  max-width: 520px;
  height: 264px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  object-fit: cover;
}

/* Two-column hero layout — interior pages  */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
 
/* Fixed-height image frame — same on every page */
.hero-grid .hero-img {
  width: 100%;
  height: var(--hero-img-h);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
 
/* Image fills frame, crops evenly — never distorts */
.hero-grid .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
 
/* Hero sub-text — shared typography */
.hero-grid .hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 0;
}
 
/* Responsive: stack vertically, shrink image proportionally */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  .hero-grid .hero-img {
    height: calc(var(--hero-img-h) * 0.68);
    max-width: 480px;
    margin-inline: auto;
  }
}
 
@media (max-width: 480px) {
  /* Compact frame on small phones */
  .hero-grid .hero-img {
    height: 220px;
  }
}
/*   STATS BAR */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
  padding-right: 40px;
  margin-right: 40px;
}


/*  CTA SECTION / BOX */

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2          { color: var(--white); margin-bottom: 12px; }
.cta-section p           { color: rgba(255, 255, 255, 0.78); font-size: 1rem; margin-bottom: 32px; }

.cta-box {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
}
.cta-box h2  { color: var(--accent); margin-bottom: 16px; }
.cta-box > p { color: rgba(255, 255, 255, 0.82); font-size: 1rem; line-height: 1.72; }

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 20px;
  flex-wrap: wrap;
}

.urgency-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 4px;
}


/*  TOAST NOTIFICATIONS */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.toast-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  animation: slideInRight 0.3s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.toast-notification.toast-success { background: #14a44d; color: var(--white); }
.toast-notification.toast-error   { background: #dc4c64; color: var(--white); }


/*   COOKIE BANNER   */
.cookie-banner-bottom {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 350px;
  max-width: 90%;
  z-index: 10000;
  font-family: var(--font-heading);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner-bottom.show        { opacity: 1; transform: translateY(0); }
.cookie-banner-bottom.cookie-hide { opacity: 0; transform: translateY(20px); pointer-events: none; }

.cookie-banner-content {
  background: var(--white);
  padding: 24px;
  border: 2px solid var(--primary);
  box-shadow: 8px 8px 0 rgba(26, 43, 107, 0.1);
  border-radius: var(--radius-md);
  position: relative;
}
.cookie-banner-content h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-banner-content p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 18px;
}

.policy-link          { color: var(--accent); text-decoration: underline; font-weight: 700; }
.policy-link:hover    { color: var(--accent-hover); }
.cookie-buttons       { display: flex; flex-direction: column; gap: 8px; }

.btn-cookie-accept {
  padding: 11px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-cookie-reject {
  padding: 9px;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover {
  background: rgba(26, 43, 107, 0.04);
  color: var(--primary);
  border-color: var(--primary);
}

.cookie-close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}
.cookie-close-btn:hover { color: var(--accent); }


/* SHARED FAQ  */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item[open] { border-color: rgba(232, 64, 12, 0.28); }

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  user-select: none;
  gap: 12px;
  transition: color var(--transition-fast);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent); }

.faq-chevron {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
  padding: 16px 24px 20px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-group--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}
 
.form-group--grow textarea {
  flex: 1;
  resize: none;
}
 
@media (max-width: 900px) {
  .form-group--grow {
    flex: unset;
  }
 
  .form-group--grow textarea {
    flex: unset;
    resize: vertical;
  }
}
/*   WHATSAPP FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }

 
/*   SIDEBAR WIDGET   */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
 
.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
 
/* Accent underline rule */
.sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
 
/* Sidebar CTA button — shared between blog sidebar + blog_detail sidebar */
.sidebar-cta-btn {
  display: block;
  width: 100%;
  padding: 11px 14px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 10px;
}
.sidebar-cta-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 43, 107, 0.25);
  color: var(--white);
}
 
.sidebar-cta-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}
 
 
/*  QUIZ RESULT HIDDEN STATE */
.quiz-result-box          { display: none; }
.quiz-result-box.is-visible { display: block; }
 
 

/*  RESPONSIVE BREAKPOINTS  (global grid and layout only) */
@media (max-width: 1024px) {
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
}

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

  .page-hero .hero-img            { justify-content: flex-start; }
  .page-hero .hero-img img        { height: 220px; max-width: 100%; }

  .stats-grid                     { flex-direction: column; gap: 0; }
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 24px;
    margin: 0 0 24px;
  }

  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section-gap: 56px; }
  .grid-3col { grid-template-columns: 1fr; }
  .cta-box   { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .grid-4col { grid-template-columns: 1fr; }
  .cookie-banner-bottom {
    left: 5vw;
    right: 5vw;
    bottom: 16px;
    width: auto;
    max-width: none;
  }
}