/* ============================================================
   SAFE ZONE PEST CONTROL — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand */
  --sz-black:        #080C0A;
  --sz-deep:         #0A1F14;
  --sz-forest:       #0F3D24;
  --sz-green:        #1A6B3C;
  --sz-mid:          #2D9B5A;
  --sz-accent:       #3EC96E;
  --sz-lime:         #8BF5B0;

  /* Action */
  --sz-orange:       #E8621A;
  --sz-orange-glow:  #FF7A33;
  --sz-amber:        #F5A623;

  /* Surfaces */
  --sz-surface:      #F8FAF9;
  --sz-surface-alt:  #EFF5F1;
  --sz-card:         #111A14;
  --sz-card-alt:     #1A2B1F;
  --sz-border:       #1E3328;
  --sz-border-light: #D4E8DB;

  /* Text */
  --sz-white:          #FFFFFF;
  --sz-text-primary:   #0D1F14;
  --sz-text-secondary: #4A6B54;
  --sz-text-muted:     #6EE7A0;
  --sz-text-dim:       #3D5C47;

  /* Section tints */
  --hero-glow:       rgba(62,201,110,0.12);
  --stats-tint:      rgba(26,107,60,0.15);
  --process-line:    rgba(62,201,110,0.4);
  --testimonial-bg:  #0C1A10;
  --commercial-dark: #081208;
  --cta-strip:       #0A2918;
  --map-tint:        rgba(15,61,36,0.7);

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

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;

  /* Z-index scale */
  --z-dropdown:       100;
  --z-sticky:         200;
  --z-modal-backdrop: 300;
  --z-modal:          400;
  --z-toast:          500;
  --z-tooltip:        600;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--sz-text-primary);
  background: var(--sz-black);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  text-wrap: balance;
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  text-wrap: balance;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
}
p { text-wrap: pretty; }

.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  margin-bottom: 16px;
}

.section-underline {
  width: 60px;
  height: 2px;
  background: var(--sz-accent);
  margin-bottom: 40px;
  transform-origin: left;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ---- Announcement Bar ---- */
.announce-bar {
  background: var(--sz-black);
  border-bottom: 1px solid var(--sz-border);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: var(--z-sticky);
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.announce-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.announce-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--sz-lime);
  flex-shrink: 0;
}

.announce-item a {
  color: var(--sz-lime);
}

.announce-item a:hover { color: var(--sz-white); }

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sz-orange);
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}

.announce-divider {
  width: 1px;
  height: 16px;
  background: var(--sz-border);
  flex-shrink: 0;
}

/* ---- Navigation ---- */
nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--sz-forest);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--sz-white);
  letter-spacing: 0.03em;
}

.nav-logo-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--sz-white);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sz-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--sz-accent); }
.nav-link.active { color: var(--sz-accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sz-card);
  border: 1px solid var(--sz-border);
  border-radius: 20px;
  padding: 6px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--sz-amber);
}

.btn-call {
  background: var(--sz-orange);
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--sz-orange-glow);
  box-shadow: 0 8px 30px rgba(232,98,26,0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sz-white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--sz-deep);
  z-index: calc(var(--z-modal) - 10);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--sz-white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--sz-white);
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--sz-accent); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 10px;
  padding: 14px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--sz-orange);
  color: var(--sz-white);
  box-shadow: 0 4px 20px rgba(232,98,26,0.3);
}

.btn-primary:hover {
  background: var(--sz-orange-glow);
  box-shadow: 0 8px 30px rgba(232,98,26,0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--sz-white);
  border: 2px solid var(--sz-border);
}

.btn-secondary:hover {
  border-color: var(--sz-accent);
  color: var(--sz-accent);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--sz-accent);
  border: 2px solid var(--sz-accent);
}

.btn-outline-accent:hover {
  background: var(--sz-accent);
  color: var(--sz-black);
  transform: translateY(-2px);
}

/* ---- Hero Section ---- */
.hero {
  background: var(--sz-deep);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--sz-accent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

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

.hero-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
  background: rgba(62,201,110,0.1);
  border: 1px solid rgba(62,201,110,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-h1 { color: var(--sz-white); margin-bottom: 24px; }
.hero-h1 .highlight { color: var(--sz-accent); }

.hero-sub {
  font-size: var(--text-lg);
  color: var(--sz-text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--sz-text-muted);
}

.hero-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--sz-accent);
}

/* Hero Visual Side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-shield {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shield-main {
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, var(--sz-forest), var(--sz-green));
  clip-path: polygon(50% 0%, 100% 15%, 100% 65%, 50% 100%, 0% 65%, 0% 15%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(62,201,110,0.2);
}

.shield-main::before {
  content: '';
  position: absolute;
  inset: 4px;
  clip-path: polygon(50% 0%, 100% 15%, 100% 65%, 50% 100%, 0% 65%, 0% 15%);
  background: linear-gradient(135deg, var(--sz-deep), var(--sz-card));
}

.shield-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.shield-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(62,201,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.shield-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--sz-white);
  line-height: 1;
}

.shield-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sz-accent);
}

.guarantee-stamp {
  margin-top: 20px;
  background: var(--sz-orange);
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 6px;
  transform: rotate(-2deg);
  box-shadow: 0 4px 20px rgba(232,98,26,0.4);
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--sz-black);
  border-top: 1px solid var(--sz-border);
  border-bottom: 1px solid var(--sz-border);
  padding: 32px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--sz-accent);
  flex-shrink: 0;
}

/* ---- Services Section ---- */
.services-section {
  background: var(--sz-surface);
}

.services-section .section-title,
.services-section p { color: var(--sz-text-primary); }
.services-section .section-label { color: var(--sz-green); }
.services-section .section-underline { background: var(--sz-green); }
.services-section .section-secondary { color: var(--sz-text-secondary); margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border-light);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--sz-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleY(1); }

.service-card:hover {
  box-shadow: 0 16px 48px rgba(26,107,60,0.12);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,107,60,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sz-green);
  transition: transform 0.3s, background 0.3s;
}

.service-card:hover .card-icon {
  background: rgba(26,107,60,0.15);
}

.card-badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sz-amber);
  color: var(--sz-black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--sz-text-primary);
  margin-bottom: 8px;
}

.card-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--sz-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.service-card:hover .card-link {
  gap: 10px;
  color: var(--sz-mid);
}

/* Dark service cards variant */
.service-card.dark {
  background: var(--sz-card);
  border-color: var(--sz-border);
}

.service-card.dark .card-title { color: var(--sz-white); }
.service-card.dark .card-desc { color: var(--sz-text-muted); opacity: 0.8; }
.service-card.dark .card-link { color: var(--sz-accent); }
.service-card.dark .card-icon { background: rgba(62,201,110,0.1); color: var(--sz-accent); }
.service-card.dark:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

/* ---- Stats Section ---- */
.stats-section {
  background: var(--sz-forest);
  padding: 80px 0;
}

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

.stat-block {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(62,201,110,0.15);
  border-radius: 16px;
  background: rgba(62,201,110,0.04);
  transition: transform 0.2s;
  cursor: default;
}

.stat-block:hover { transform: scale(1.05); }

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--sz-accent);
  margin: 0 auto 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sz-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
}

/* ---- Process Section ---- */
.process-section {
  background: var(--sz-surface-alt);
}

.process-section .section-title { color: var(--sz-text-primary); }
.process-section .section-label { color: var(--sz-green); }
.process-section .section-underline { background: var(--sz-green); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--sz-border-light);
  z-index: 0;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--sz-accent), var(--sz-mid));
  z-index: 1;
  transform-origin: left;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sz-green);
  border: 4px solid var(--sz-surface-alt);
  box-shadow: 0 0 0 2px var(--sz-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--sz-white);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--sz-text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
  line-height: 1.6;
}

/* ---- Audience Split ---- */
.audience-split {
  background: var(--sz-deep);
  padding: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.audience-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.audience-panel.residential {
  background: var(--sz-deep);
  border-right: 1px solid var(--sz-border);
}

.audience-panel.commercial {
  background: var(--sz-black);
}

.audience-icon {
  width: 64px;
  height: 64px;
  color: var(--sz-accent);
  margin-bottom: 24px;
}

.audience-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
  margin-bottom: 16px;
}

.audience-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--sz-white);
  margin-bottom: 16px;
}

.audience-desc {
  color: var(--sz-text-muted);
  margin-bottom: 32px;
  font-size: var(--text-base);
  line-height: 1.7;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.audience-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
}

.audience-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sz-accent);
  flex-shrink: 0;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--testimonial-bg);
}

.testimonials-section .section-title { color: var(--sz-white); }
.testimonials-section .section-label { color: var(--sz-accent); }
.testimonials-section .section-underline { background: var(--sz-accent); }

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sz-card);
  border: 1px solid var(--sz-border);
  border-radius: 12px;
  padding: 12px 20px;
}

.google-badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--sz-white);
}

.google-badge-sub {
  font-size: var(--text-xs);
  color: var(--sz-text-muted);
}

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

.testimonial-card {
  background: var(--sz-card);
  border: 1px solid var(--sz-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px var(--sz-accent), 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 18px;
  height: 18px;
  color: var(--sz-amber);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--sz-white);
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sz-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--sz-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--sz-white);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--sz-text-muted);
}

/* Carousel nav */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sz-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--sz-accent);
  transform: scale(1.3);
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sz-border);
  background: var(--sz-card);
  color: var(--sz-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.carousel-btn:hover { border-color: var(--sz-accent); background: var(--sz-card-alt); }

/* ---- Commercial Panel ---- */
.commercial-panel {
  background: var(--sz-surface);
}

.commercial-panel .section-title { color: var(--sz-text-primary); }
.commercial-panel .section-label { color: var(--sz-green); }
.commercial-panel .section-underline { background: var(--sz-green); }

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

.industry-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,107,60,0.1);
  border-color: var(--sz-border-light);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,107,60,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--sz-green);
  font-size: 1.75rem;
}

.industry-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--sz-text-primary);
  margin-bottom: 8px;
}

.industry-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
  line-height: 1.6;
}

/* ---- Guarantee / Urgency ---- */
.guarantee-section {
  background: var(--commercial-dark);
  padding: 80px 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee-left .section-label { color: var(--sz-amber); }
.guarantee-left h2 { color: var(--sz-white); }

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.guarantee-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.guarantee-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(62,201,110,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-accent);
  flex-shrink: 0;
}

.guarantee-feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--sz-white);
  margin-bottom: 4px;
}

.guarantee-feat-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
  line-height: 1.6;
}

.shield-float {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.shield-big {
  width: 220px;
  height: 252px;
  background: linear-gradient(135deg, var(--sz-forest), var(--sz-green));
  clip-path: polygon(50% 0%, 100% 15%, 100% 65%, 50% 100%, 0% 65%, 0% 15%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shield-big::before {
  content: '';
  position: absolute;
  inset: 4px;
  clip-path: polygon(50% 0%, 100% 15%, 100% 65%, 50% 100%, 0% 65%, 0% 15%);
  background: var(--commercial-dark);
}

.shield-big-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.shield-big-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--sz-accent);
  line-height: 1;
}

.shield-big-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sz-white);
}

.guarantee-note {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--sz-accent);
  text-align: center;
}

/* ---- About Preview ---- */
.about-preview {
  background: var(--sz-surface-alt);
}

.about-preview .section-title { color: var(--sz-text-primary); }
.about-preview .section-label { color: var(--sz-green); }
.about-preview .section-underline { background: var(--sz-green); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, var(--sz-forest), var(--sz-deep));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(62,201,110,0.15), transparent);
}

.about-img-icon {
  width: 80px;
  height: 80px;
  color: var(--sz-accent);
  opacity: 0.4;
}

.about-credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}

.credential-badge {
  background: rgba(26,107,60,0.1);
  border: 1px solid rgba(26,107,60,0.2);
  color: var(--sz-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ---- CTA Strip ---- */
.cta-strip {
  background: var(--cta-strip);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(62,201,110,0.08), transparent 70%);
  pointer-events: none;
}

.cta-strip h2 { color: var(--sz-white); margin-bottom: 16px; }
.cta-strip p { color: var(--sz-text-muted); margin-bottom: 40px; font-size: var(--text-lg); }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--sz-text-muted);
}

/* ---- Map Section ---- */
.map-section {
  background: var(--sz-black);
  padding: 80px 20px;
  text-align: center;
}

.map-inner { max-width: 520px; margin: 0 auto; }

.map-label {
  color: var(--sz-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.map-title {
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.map-address {
  color: var(--sz-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 32px;
}

.map-frame-wrap {
  display: inline-block;
  padding: 4px;
  background: linear-gradient(135deg, var(--sz-accent), var(--sz-forest));
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(62,201,110,0.15);
}

.map-frame-wrap iframe {
  display: block;
  border-radius: 16px;
}

/* ---- Footer ---- */
footer {
  background: var(--sz-forest);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--sz-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--sz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-icon:hover {
  border-color: var(--sz-accent);
  color: var(--sz-accent);
  background: rgba(62,201,110,0.08);
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--sz-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
  margin-bottom: 12px;
}

.footer-contact-item a { color: var(--sz-text-muted); }
.footer-contact-item a:hover { color: var(--sz-white); }

.footer-bottom {
  background: var(--sz-black);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--sz-text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--sz-text-dim);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--sz-text-muted); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: var(--z-modal);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--sz-black);
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- Chatbot FAB + Panel ---- */
.chatbot-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sz-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-white);
  box-shadow: 0 8px 28px rgba(26,107,60,0.5);
  z-index: var(--z-modal);
  cursor: pointer;
  border: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  transition: background 0.2s, transform 0.2s;
}

.chatbot-fab:hover { background: var(--sz-mid); }

.chatbot-notif {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E53E3E;
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sz-black);
  transition: opacity 0.3s;
}

.chatbot-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  height: 520px;
  background: var(--sz-card);
  border-radius: 20px;
  border: 1px solid var(--sz-border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  z-index: var(--z-modal);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-panel.open { display: flex; }

.chatbot-header {
  background: var(--sz-green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chatbot-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--sz-white);
}

.chatbot-status {
  font-size: var(--text-xs);
  color: var(--sz-lime);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 1.1rem;
}

.chatbot-close:hover { background: rgba(255,255,255,0.15); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--sz-border); border-radius: 2px; }

.msg {
  max-width: 85%;
  word-wrap: break-word;
}

.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; }

.msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.msg.bot .msg-bubble {
  background: var(--sz-card-alt);
  color: var(--sz-white);
  border-bottom-left-radius: 4px;
}

.msg.user .msg-bubble {
  background: var(--sz-green);
  color: var(--sz-white);
  border-bottom-right-radius: 4px;
}

.quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 12px;
}

.quick-chip {
  background: var(--sz-card-alt);
  border: 1px solid var(--sz-border);
  color: var(--sz-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.quick-chip:hover {
  background: rgba(62,201,110,0.1);
  border-color: var(--sz-accent);
}

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--sz-border);
  background: var(--sz-card);
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  background: var(--sz-card-alt);
  border: 1px solid var(--sz-border);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--sz-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color 0.2s;
}

.chatbot-input:focus { border-color: var(--sz-accent); }
.chatbot-input::placeholder { color: var(--sz-text-dim); }

.chatbot-send {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sz-orange);
  color: var(--sz-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.chatbot-send:hover {
  background: var(--sz-orange-glow);
  transform: scale(1.05);
}

/* ---- Mobile Sticky Bar ---- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--sz-forest);
  border-top: 1px solid var(--sz-border);
  z-index: calc(var(--z-sticky) + 10);
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}

.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--sz-text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 8px;
  flex: 1;
  text-align: center;
}

.mobile-bar-item:hover { color: var(--sz-accent); }
.mobile-bar-icon { font-size: 1.2rem; }

.mobile-bar-call {
  background: var(--sz-orange);
  color: var(--sz-white) !important;
  border-radius: 24px;
  padding: 8px 14px;
  flex: 1.5;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  box-shadow: 0 -4px 16px rgba(232,98,26,0.3);
}

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sz-card);
  border: 1px solid var(--sz-border);
  color: var(--sz-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: var(--z-sticky);
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); background: var(--sz-card-alt); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--sz-deep);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(62,201,110,0.1), transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
  background: rgba(62,201,110,0.1);
  border: 1px solid rgba(62,201,110,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  gap: 8px;
  margin-bottom: 24px;
}

.page-hero h1 { color: var(--sz-white); margin-bottom: 20px; }
.page-hero p { color: var(--sz-text-muted); font-size: var(--text-lg); max-width: 600px; margin: 0 auto 36px; }

.page-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Contact Page ---- */
.contact-section {
  background: var(--sz-surface);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border-light);
  border-radius: 20px;
  padding: 40px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--sz-text-primary);
  margin-bottom: 28px;
}

/* Form */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
  pointer-events: none;
  transition: transform 0.2s, font-size 0.2s, color 0.2s;
  background: var(--sz-white);
  padding: 0 4px;
}

.form-field {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sz-border-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--sz-text-primary);
  background: var(--sz-white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-field:focus { border-color: var(--sz-green); }

.form-field:focus + .form-label,
.form-field:not(:placeholder-shown) + .form-label {
  transform: translateY(-23px) scale(0.8);
  color: var(--sz-green);
}

.form-field::placeholder { color: transparent; }

select.form-field { cursor: pointer; }

textarea.form-field {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: var(--sz-orange);
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  background: var(--sz-orange-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,98,26,0.4);
}

.form-success {
  display: none;
  background: rgba(62,201,110,0.1);
  border: 1px solid var(--sz-accent);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  color: var(--sz-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: 16px;
}

/* Direct contact */
.direct-contact-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--sz-green);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.direct-contact-phone:hover { color: var(--sz-mid); }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sz-border-light);
  text-decoration: none;
  color: var(--sz-text-primary);
  transition: color 0.2s;
}

.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:hover { color: var(--sz-green); }

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,107,60,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-green);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-hours {
  margin-top: 20px;
  padding: 16px;
  background: var(--sz-surface-alt);
  border-radius: 10px;
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
}

.contact-hours strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sz-text-primary);
  display: block;
  margin-bottom: 8px;
}

/* Social cards */
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--sz-surface-alt);
  border: 1px solid var(--sz-border-light);
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.social-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(26,107,60,0.1);
  border-color: var(--sz-green);
}

.social-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.social-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--sz-text-primary);
}

.social-card-handle {
  font-size: var(--text-xs);
  color: var(--sz-text-secondary);
}

/* Emergency strip */
.emergency-strip {
  background: var(--sz-orange);
  padding: 40px 0;
  text-align: center;
}

.emergency-strip h2 {
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 8px;
}

.emergency-strip p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.emergency-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sz-white);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.emergency-phone:hover { transform: scale(1.05); }

/* FAQ */
.faq-section {
  background: var(--sz-surface-alt);
  padding: 80px 0;
}

.faq-section .section-title { color: var(--sz-text-primary); }
.faq-section .section-label { color: var(--sz-green); }
.faq-section .section-underline { background: var(--sz-green); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--sz-border-light);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--sz-border-light);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--sz-white);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--sz-text-primary);
  text-align: left;
  transition: background 0.2s, color 0.2s;
  gap: 16px;
}

.faq-question:hover { background: var(--sz-surface); color: var(--sz-green); }
.faq-question.open { color: var(--sz-green); background: rgba(26,107,60,0.04); }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--sz-text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  height: 0;
  overflow: hidden;
  background: var(--sz-white);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
  line-height: 1.7;
}

/* ---- Commercial Page ---- */
.commercial-hero {
  background: var(--sz-black);
}

.why-commercial {
  background: var(--sz-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-title { color: var(--sz-text-primary); }
.why-text .section-label { color: var(--sz-green); }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--sz-surface-alt);
  border: 1px solid var(--sz-border-light);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-feat:hover {
  border-color: var(--sz-border-light);
  box-shadow: 0 4px 20px rgba(26,107,60,0.08);
}

.why-feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,107,60,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-green);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.why-feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--sz-text-primary);
  margin-bottom: 4px;
}

.why-feat-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
  line-height: 1.6;
}

/* Pricing tiers */
.pricing-section {
  background: var(--sz-deep);
  padding: 100px 0;
}

.pricing-section .section-title { color: var(--sz-white); }
.pricing-section .section-label { color: var(--sz-accent); }
.pricing-section .section-underline { background: var(--sz-accent); }

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

.pricing-card {
  background: var(--sz-card);
  border: 1px solid var(--sz-border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card.featured {
  border-color: var(--sz-accent);
  background: var(--sz-card-alt);
  transform: scale(1.04);
}

.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sz-accent);
  color: var(--sz-black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sz-accent);
  margin-bottom: 12px;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--sz-white);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
}

.pricing-feat-icon {
  width: 18px;
  height: 18px;
  color: var(--sz-accent);
  flex-shrink: 0;
}

/* ---- About Page ---- */
.founding-section {
  background: var(--sz-surface);
}

.founding-section .section-title { color: var(--sz-text-primary); }
.founding-section .section-label { color: var(--sz-green); }

.values-section {
  background: var(--sz-deep);
  padding: 100px 0;
}

.values-section .section-title { color: var(--sz-white); }
.values-section .section-label { color: var(--sz-accent); }
.values-section .section-underline { background: var(--sz-accent); }

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

.value-card {
  background: var(--sz-card);
  border: 1px solid var(--sz-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(62,201,110,0.3);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(62,201,110,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.value-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--sz-white);
  margin-bottom: 8px;
}

.value-desc {
  font-size: var(--text-sm);
  color: var(--sz-text-muted);
  line-height: 1.6;
}

.team-section {
  background: var(--sz-surface-alt);
  padding: 100px 0;
}

.team-section .section-title { color: var(--sz-text-primary); }
.team-section .section-label { color: var(--sz-green); }
.team-section .section-underline { background: var(--sz-green); }

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

.team-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,107,60,0.1);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sz-forest), var(--sz-green));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--sz-white);
}

.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--sz-text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: var(--text-xs);
  color: var(--sz-text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.certs-section {
  background: var(--sz-surface);
  padding: 80px 0;
}

.certs-section .section-title { color: var(--sz-text-primary); }
.certs-section .section-label { color: var(--sz-green); }
.certs-section .section-underline { background: var(--sz-green); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.cert-badge-item {
  background: var(--sz-surface-alt);
  border: 1px solid var(--sz-border-light);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.cert-badge-item:hover {
  border-color: var(--sz-green);
  transform: translateY(-2px);
}

.cert-icon { font-size: 2rem; margin-bottom: 10px; }

.cert-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--sz-text-primary);
  margin-bottom: 4px;
}

.cert-body {
  font-size: var(--text-xs);
  color: var(--sz-text-secondary);
}

/* ---- Compliance Section ---- */
.compliance-section {
  background: var(--sz-surface-alt);
  padding: 80px 0;
}

.compliance-section .section-title { color: var(--sz-text-primary); }
.compliance-section .section-label { color: var(--sz-green); }

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--sz-text-secondary);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(26,107,60,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sz-green);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ---- Services Detail ---- */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-detail-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border-light);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--sz-accent);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.service-detail-card:hover::before { transform: scaleY(1); }

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,107,60,0.12);
}

.service-price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--sz-green);
  background: rgba(26,107,60,0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-accent { color: var(--sz-accent); }
.text-white { color: var(--sz-white); }
.text-muted { color: var(--sz-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-auto { margin-top: auto; }

.section-header { margin-bottom: 56px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  section { padding: 80px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-ctas, .hero-badges { justify-content: center; }
  .about-grid, .guarantee-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-panel { padding: 60px 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .nav-links { display: none; }
  .nav-rating { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-bar { display: flex; }
  .chatbot-fab { bottom: 80px; }
  .whatsapp-float { bottom: 140px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before, .process-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .cta-trust { gap: 16px; }
  .hero-inner { padding: 60px 24px; }
  .announce-bar { display: none; }
  .chatbot-panel { width: calc(100vw - 32px); right: 16px; }
  .industries-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .page-hero-ctas { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* Print */
@media print {
  .announce-bar, nav, .mobile-bar, .whatsapp-float, .chatbot-fab, .chatbot-panel,
  .scroll-top, .hero-bg-particles, .hero-glow { display: none !important; }
  body { background: white; color: black; }
  section { padding: 40px 0; }
}

/* ============================================================
   REAL IMAGE STYLES
   ============================================================ */

/* Hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
  pointer-events: none;
  will-change: transform;
}

/* Hero visual — real photo */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-photo {
  width: 100%;
  max-width: 520px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(62,201,110,0.15);
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--sz-orange);
  color: var(--sz-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(232,98,26,0.45);
  transform: rotate(-2deg);
  line-height: 1.3;
}

.hero-photo-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--sz-accent), var(--sz-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(62,201,110,0.4);
}

/* About section real image */
.about-img-real {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.about-img:hover .about-img-real { transform: scale(1.03); }

/* Team cards — real photos */
.team-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--sz-border-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Team group photo */
.team-group-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Commercial section images */
.commercial-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.commercial-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Services section process images */
.process-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.services-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

/* Image section: services split */
.services-img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.services-img-split img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-img-split img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 48px rgba(26,107,60,0.15);
}

@media (max-width: 768px) {
  .hero-photo { height: 360px; max-width: 100%; }
  .services-img-split { grid-template-columns: 1fr; }
  .services-img-split img { height: 220px; }
  .commercial-img-wrap img { height: 280px; }
  .team-group-img { height: 260px; }
  .about-img-real { height: 320px; }
}
