/* ============================================================
   ZPEXINS PEST CONTROL — MASTER STYLESHEET
   Cala, Eastern Cape, South Africa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Syne:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ───────────────────────────────────── */
:root {
  /* Palette — Purple & Lime */
  --cream:        #FAF8FD;
  --cream-warm:   #F4F0FA;
  --sand:         #EAE4F4;
  --sand-deep:    #D0C8E8;

  --green:        #7C3FA8;
  --green-dark:   #54197A;
  --green-deep:   #2D0A52;
  --green-mid:    #9B5CC8;
  --green-pale:   #F3EBFB;

  --gold:         #84C817;
  --gold-dark:    #5D9211;
  --gold-light:   #A8DC50;
  --gold-pale:    #EDFAD0;

  --ink:          #1A0F28;
  --ink-mid:      #3E2D52;
  --ink-soft:     #6B5A80;
  --ink-muted:    #9A8CB0;
  --ink-faint:    #C8BEDE;

  --white:        #FFFFFF;

  /* Typography */
  --ff-display:   'Cormorant', Georgia, serif;
  --ff-ui:        'Syne', system-ui, sans-serif;
  --ff-body:      'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --sp-2xs: 4px;
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --sp-3xl: 140px;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(20px, 5vw, 64px);

  /* Radii */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs:  0 1px 4px rgba(25,24,15,0.05);
  --sh-sm:  0 4px 16px rgba(25,24,15,0.07);
  --sh-md:  0 8px 32px rgba(25,24,15,0.10);
  --sh-lg:  0 20px 60px rgba(25,24,15,0.12);
  --sh-xl:  0 40px 100px rgba(25,24,15,0.14);

  /* Easing */
  --ease:        cubic-bezier(0.25, 0.10, 0.25, 1.00);
  --ease-out:    cubic-bezier(0.00, 0.00, 0.20, 1.00);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1.00);
  --t-fast:  0.2s var(--ease);
  --t-base:  0.35s var(--ease);
  --t-slow:  0.6s var(--ease-out);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--ff-body); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--cream); overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: var(--sp-3xl) 0; }
.section--sm { padding: var(--sp-2xl) 0; }
.section--alt { background: var(--cream-warm); }
.section--green { background: var(--green-dark); }
.section--sand { background: var(--sand); }

/* ── Typography Base ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
p { color: var(--ink-mid); }
.text-body { font-family: var(--ff-body); }

.section-label {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-sm);
}
.section-label--gold { color: var(--gold); }
.section-label--white { color: rgba(255,255,255,0.65); }

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  margin-bottom: var(--sp-md);
}
.section-title--white { color: var(--white); }
.section-title em { font-style: italic; color: var(--green); }
.section-title--white em { color: var(--gold-light); }

.section-intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.75;
}
.section-intro--white { color: rgba(255,255,255,0.72); }

.gold-rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--sp-md);
  border-radius: var(--r-full);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--r-full);
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(84,25,122,0.28), 0 1px 4px rgba(84,25,122,0.18);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 32px rgba(84,25,122,0.36), 0 2px 8px rgba(84,25,122,0.22);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-faint);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}
.btn-secondary--white {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary--white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-ghost-gold:hover {
  background: var(--gold-pale);
}

.btn-lg { padding: 20px 44px; font-size: 13px; }
.btn-sm { padding: 11px 22px; font-size: 11px; }

/* Arrow icon in button */
.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t-slow), box-shadow var(--t-slow), padding var(--t-base);
}
.site-header.scrolled {
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(25,24,15,0.08), var(--sh-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding: 22px 0;
  transition: padding var(--t-base);
}
.site-header.scrolled .header-inner { padding: 16px 0; }

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--ff-ui);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  line-height: 1;
}
.logo-sub {
  font-family: var(--ff-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  margin-left: auto;
}
.nav-link {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-link:hover { color: var(--green-dark); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--green-dark); }
.nav-link.active::after { transform: scaleX(1); }

.header-cta { margin-left: var(--sp-md); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--t-base);
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  opacity: 0;
  transition: opacity var(--t-base);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav .nav-link {
  font-size: 28px;
  font-family: var(--ff-display);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .btn { margin-top: var(--sp-sm); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: var(--container-pad);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Warm sunlit gradient bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(234,243,238,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(237,231,217,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(132,200,23,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle crosshatch texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%234B7B68' stroke-width='0.3' stroke-opacity='0.08'%3E%3Cpath d='M0 20h40M20 0v40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--sp-2xl) 0;
}

.hero-content { max-width: 600px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.03;
  color: var(--ink);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.hero-title strong {
  font-weight: 600;
  font-style: normal;
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--sp-lg);
}

.hero-ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-badge-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* Hero Visual — CSS Art */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-wrap {
  position: relative;
  width: 460px;
  height: 460px;
}

/* Outer rings */
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.art-ring-1 {
  inset: 0;
  border-color: rgba(124,63,168,0.12);
}
.art-ring-2 {
  inset: 32px;
  border-color: rgba(132,200,23,0.14);
}
.art-ring-3 {
  inset: 64px;
  border-color: rgba(124,63,168,0.10);
  animation: slowSpin 40s linear infinite;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

/* Central circle — the "frame" */
.art-center {
  position: absolute;
  inset: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-pale) 0%, var(--sand) 60%, var(--cream-warm) 100%);
  box-shadow: var(--sh-lg), inset 0 2px 12px rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Decorative leaf elements */
.art-leaf {
  position: absolute;
}
.art-leaf-1 {
  width: 80px;
  top: 60px;
  right: 60px;
  opacity: 0.5;
  animation: floatLeaf 6s ease-in-out infinite;
}
.art-leaf-2 {
  width: 60px;
  bottom: 70px;
  left: 50px;
  opacity: 0.35;
  animation: floatLeaf 8s ease-in-out infinite reverse;
}
.art-leaf-3 {
  width: 45px;
  top: 120px;
  left: 80px;
  opacity: 0.25;
  animation: floatLeaf 7s ease-in-out infinite 2s;
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}

/* Gold dots scattered */
.art-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.art-dot-1 { top: 20px; left: 50%; }
.art-dot-2 { bottom: 30px; right: 30%; }
.art-dot-3 { top: 40%; right: 16px; width: 5px; height: 5px; }

/* The central SVG icon */
.art-icon {
  width: 90px;
  height: 90px;
  color: var(--green);
  opacity: 0.9;
}

/* Floating info card */
.hero-float-card {
  position: absolute;
  bottom: 48px;
  left: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 24px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.hero-float-card-text strong {
  display: block;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero-float-card-text span {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 300;
}

.hero-float-card-2 {
  position: absolute;
  top: 60px;
  right: -30px;
  background: var(--green-dark);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--sh-lg);
  animation: cardFloat 7s ease-in-out infinite 1s;
}
.hero-float-card-2 strong {
  display: block;
  font-family: var(--ff-ui);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-float-card-2 span {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--green-dark);
  padding: var(--sp-lg) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.trust-item-text strong {
  display: block;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.trust-item-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ── Process Section ─────────────────────────────────────── */
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-2xl);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(132,200,23,0.3) 50%, var(--gold) 100%);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-sm);
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-sm);
  transition: var(--t-base);
  flex-shrink: 0;
}
.process-step:hover .step-num {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(124,63,168,0.28);
  transform: scale(1.06);
}
.step-num svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  transition: color var(--t-fast);
}
.process-step:hover .step-num svg { color: var(--white); }
.step-label {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.step-title {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── Pests Section ───────────────────────────────────────── */
.pests { background: var(--cream-warm); }
.pests-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
}
.pests-header-left { max-width: 520px; }
.pests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}
.pest-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  transition: var(--t-base);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.pest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--green), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-base);
}
.pest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.pest-card:hover::after { opacity: 1; }
.pest-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green);
  transition: var(--t-base);
}
.pest-card:hover .pest-card-icon {
  background: var(--green);
  color: var(--white);
}
.pest-card-name {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.pest-card-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Plans Section ───────────────────────────────────────── */
.plans-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-2xl);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-lg) var(--sp-lg);
  display: flex;
  flex-direction: column;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-6px);
}
.plan-card--featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.plan-card--featured:hover { box-shadow: 0 40px 100px rgba(30,56,41,0.3); }

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--green);
  background: var(--green-pale);
}
.plan-card--featured .plan-icon {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
}
.plan-name {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.plan-card--featured .plan-name { color: rgba(255,255,255,0.55); }
.plan-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
}
.plan-card--featured .plan-title { color: var(--white); }
.plan-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: var(--sp-md);
}
.plan-card--featured .plan-desc { color: rgba(255,255,255,0.6); }
.plan-divider {
  height: 1px;
  background: var(--sand);
  margin-bottom: var(--sp-md);
}
.plan-card--featured .plan-divider { background: rgba(255,255,255,0.12); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-lg);
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mid);
}
.plan-card--featured .plan-feature { color: rgba(255,255,255,0.75); }
.plan-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card--featured .plan-feature-check {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}
.plan-pricing {
  margin-bottom: var(--sp-md);
}
.plan-price-note {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.plan-card--featured .plan-price-note { color: rgba(255,255,255,0.45); }
.plan-price {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.plan-card--featured .plan-price { color: var(--white); }
.plan-price sub {
  font-size: 18px;
  vertical-align: baseline;
  font-weight: 300;
}
.plan-price span {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-muted);
  margin-left: 4px;
}
.plan-card--featured .plan-price span { color: rgba(255,255,255,0.4); }
.plan-disclaimer {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 16px;
  line-height: 1.5;
}
.plan-card--featured .plan-disclaimer { color: rgba(255,255,255,0.3); }

.plan-card .btn { width: 100%; justify-content: center; }
.plan-card--featured .btn-primary {
  background: var(--gold);
  box-shadow: 0 4px 24px rgba(132,200,23,0.4);
}
.plan-card--featured .btn-primary:hover {
  background: var(--gold-dark);
}

/* ── Safety Section ──────────────────────────────────────── */
.safety { background: var(--cream-warm); }
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.safety-visual {
  position: relative;
}
.safety-visual-bg {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.safety-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='1' fill='%234B7B68' fill-opacity='0.12'/%3E%3C/svg%3E");
}
.safety-big-icon {
  width: 120px;
  height: 120px;
  color: var(--green);
  opacity: 0.35;
  position: relative;
  z-index: 1;
}
.safety-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.safety-stat-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.safety-stat-label {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.safety-content-inner { max-width: 520px; }
.safety-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.safety-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}
.safety-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}
.safety-item-title {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.safety-item-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.faq-sidebar { position: sticky; top: 120px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green-dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
  transition: var(--t-base);
}
.faq-item.open .faq-icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.3s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--green-dark);
  padding: var(--sp-3xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 90% 50%, rgba(132,200,23,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(124,63,168,0.3) 0%, transparent 55%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
}
.cta-banner-text { max-width: 580px; }
.cta-banner-title {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  margin-bottom: var(--sp-sm);
}
.cta-banner-title em { color: var(--gold-light); }
.cta-banner-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex-shrink: 0;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--t-base);
}
.whatsapp-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-lg);
}
.footer-brand .logo-name { color: var(--white); font-size: 20px; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 32ch;
  margin-top: var(--sp-md);
}
.footer-heading {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.footer-link:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: var(--sp-md);
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 800;
  transition: var(--t-base);
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: 140px;
  padding-bottom: var(--sp-2xl);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 80% 0%, rgba(234,243,238,0.9) 0%, transparent 60%);
}
.page-hero-layout {
  display: flex;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero-layout .page-hero-inner {
  flex: 1 1 65%;
  min-width: 0;
  max-width: none;
}
.page-hero-layout .page-hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-img {
  flex: 0 0 280px;
  max-width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.page-hero-title {
  font-size: clamp(40px, 6vw, 76px);
  margin-bottom: var(--sp-md);
}
.page-hero-desc {
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.75;
  max-width: 52ch;
}
.page-hero-ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-top: var(--sp-lg);
}

/* ── Services Page ───────────────────────────────────────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: var(--t-base);
}
.service-detail-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  transition: var(--t-base);
}
.service-detail-card:hover .service-detail-icon {
  background: var(--green);
  color: var(--white);
}
.service-detail-title {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.service-detail-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tag {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

/* Commercial banner */
.commercial-banner {
  background: var(--green-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.commercial-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(132,200,23,0.08);
}
.commercial-banner-text { position: relative; z-index: 1; }
.commercial-banner h3 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: var(--sp-sm);
}
.commercial-banner h3 em { color: var(--gold-light); }
.commercial-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 50ch;
  line-height: 1.7;
}
.commercial-banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--sh-md);
}
.form-title {
  font-size: 36px;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.form-subtitle {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: var(--sp-xl);
  line-height: 1.65;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-sm);
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(124,63,168,0.1);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
textarea { resize: vertical; min-height: 120px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236E6C66' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-submit { margin-top: var(--sp-md); }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: var(--sp-sm);
  line-height: 1.6;
  text-align: center;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-xl) 0;
  gap: var(--sp-md);
}
.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.form-success h3 { font-size: 32px; color: var(--ink); }
.form-success p { font-size: 16px; color: var(--ink-soft); max-width: 36ch; }

/* Contact sidebar */
.contact-info { display: flex; flex-direction: column; gap: var(--sp-lg); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.contact-card-title {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--sp-md);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
}
.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--green-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.contact-detail-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.contact-detail-val a:hover { color: var(--green); text-decoration: underline; }
.contact-detail-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  height: 260px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-md);
}
.area-chip {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(124,63,168,0.2);
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* Guarantee section */
.guarantee {
  background: var(--gold-pale);
  border: 1px solid rgba(132,200,23,0.25);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.guarantee-inner {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border: 1.5px solid rgba(132,200,23,0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.guarantee-title {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.guarantee-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Animations / Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Hero load animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-content > * { animation: heroFadeUp 0.9s var(--ease-out) both; }
.hero-content > :nth-child(1) { animation-delay: 0.1s; }
.hero-content > :nth-child(2) { animation-delay: 0.25s; }
.hero-content > :nth-child(3) { animation-delay: 0.40s; }
.hero-content > :nth-child(4) { animation-delay: 0.55s; }
.hero-content > :nth-child(5) { animation-delay: 0.65s; }
.hero-visual { animation: heroScaleIn 1.1s var(--ease-out) 0.2s both; }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-gold { color: var(--gold-dark); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --sp-3xl: 100px; --sp-2xl: 72px; }
  .hero-inner { gap: var(--sp-lg); }
  .hero-art-wrap { width: 380px; height: 380px; }
  .plans-grid { gap: var(--sp-sm); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
}

@media (max-width: 900px) {
  :root { --sp-3xl: 80px; --sp-2xl: 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .trust-bar-inner { flex-wrap: wrap; gap: var(--sp-sm); }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 calc(50% - 8px); }
  .pests-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .safety-inner { grid-template-columns: 1fr; }
  .safety-visual { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .cta-banner-inner { flex-direction: column; }
  .services-intro { grid-template-columns: 1fr; }
  .services-grid-full { grid-template-columns: repeat(2, 1fr); }
  .commercial-banner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .pests-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --container-pad: 20px; --sp-3xl: 64px; --sp-2xl: 48px; --sp-xl: 40px; }
  .main-nav, .header-cta { display: none; }
  .menu-btn { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .pests-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .services-grid-full { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .wa-fab { bottom: 20px; right: 20px; }
}

/* ── Nav Dropdown ─────────────────────────────────────────── */
.nav-item {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-trigger .dd-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-item:hover .dd-arrow,
.nav-item:focus-within .dd-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(44,10,82,0.13);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-dropdown-menu a.active {
  background: var(--green-pale);
  color: var(--green);
}

.nav-dropdown-menu .dd-item-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-xs);
  background: var(--cream-warm);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

/* Mobile nav: sub-items */
.mobile-nav-sub {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--sand-deep);
  margin: 4px 0 4px 8px;
}

.mobile-nav-sub.open {
  display: flex;
}

.mobile-nav-sub .nav-link {
  font-size: 13px;
  opacity: 0.85;
}

.mobile-nav-services-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.mobile-nav-services-trigger .dd-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
  opacity: 0.6;
}

.mobile-nav-services-trigger.open .dd-arrow {
  transform: rotate(180deg);
}

/* Division cards — Two Divisions section on homepage */
.division-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.division-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--green-mid);
  transform: translateY(-3px);
}

.division-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.division-card-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.division-card-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

.division-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
  margin-top: auto;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}

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

/* ── Security Plans CTA ──────────────────────────────────── */
.security-plans-cta {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #f0fbe0 100%);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-xl);
}

.security-plans-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-lg);
  align-items: center;
}

.security-plans-cta-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-plans-cta-label {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--sp-xs);
}

.security-plans-cta-heading {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--sp-xs);
  line-height: 1.3;
}

.security-plans-cta-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

.security-plans-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .security-plans-cta-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .security-plans-cta-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .security-plans-cta {
    padding: var(--sp-lg);
  }
  .security-plans-cta-inner {
    grid-template-columns: 1fr;
  }
  .security-plans-cta-icon {
    width: 52px;
    height: 52px;
  }
  .security-plans-cta-actions {
    flex-direction: column;
  }
}

/* ── Photo Images ────────────────────────────────────────── */
.division-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-xs);
}

.section-photo-break {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: var(--sp-xl) 0;
}
.section-photo-break img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.safety-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  position: relative;
  z-index: 1;
}

.hero-photo-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(124,63,168,0.15);
  box-shadow: 0 24px 64px rgba(44,10,82,0.18);
}

.page-hero-photo {
  display: none;
}

.contact-photo {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.intro-photo {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 900px) {
  .hero-photo { width: 300px; height: 300px; }
  .page-hero-img { height: 300px; }
  .section-photo-break img { height: 220px; }
}
@media (max-width: 700px) {
  .page-hero-layout { flex-direction: column; }
  .page-hero-img { flex: 0 0 auto; max-width: 100%; height: 200px; width: 100%; }
}
@media (max-width: 768px) {
  .division-card-img { height: 140px; }
  .section-photo-break img { height: 180px; }
}

/* ── Reduced Motion ──────────────────────────────────────── */
@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; }
}
