/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --green-dark:   #1C4A32;
  --green-mid:    #2E6B4F;
  --green-light:  #4A9B6F;
  --green-pale:   #E8F4EC;
  --green-wash:   #F2F9F5;
  --cream:        #FDFAF6;
  --cream-dark:   #F5EFE6;
  --sand:         #E8DFD0;
  --charcoal:     #1A1A1A;
  --text:         #2C2C2C;
  --text-muted:   #6B6B6B;
  --text-light:   #9A9A9A;
  --white:        #FFFFFF;
  --border:       #E2DDD6;
  --shadow-sm:    0 2px 8px rgba(28,74,50,0.08);
  --shadow-md:    0 8px 32px rgba(28,74,50,0.12);
  --shadow-lg:    0 20px 60px rgba(28,74,50,0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Tags */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-mid); background: var(--green-pale);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); display: inline-block; }

/* Headings */
.display-xl { font-family: var(--font-display); font-size: clamp(42px,6vw,80px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--charcoal); }
.display-lg { font-family: var(--font-display); font-size: clamp(34px,4.5vw,60px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); }
.display-md { font-family: var(--font-display); font-size: clamp(26px,3.5vw,42px); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; color: var(--charcoal); }
.display-sm { font-family: var(--font-display); font-size: clamp(20px,2.5vw,28px); font-weight: 600; line-height: 1.3; color: var(--charcoal); }
.body-lg { font-size: 18px; line-height: 1.7; color: var(--text-muted); }
.body-md { font-size: 16px; line-height: 1.7; color: var(--text-muted); }

/* Section heading helpers */
.section-title { font-family: var(--font-display); font-size: clamp(34px,4.5vw,60px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 16px; }
.section-sub { font-size: 18px; line-height: 1.7; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 15px 28px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--green-mid); color: var(--white);
  box-shadow: 0 4px 16px rgba(46,107,79,0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,107,79,0.4); }
.btn-secondary {
  background: transparent; color: var(--green-mid);
  border: 2px solid var(--green-mid);
}
.btn-secondary:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 18px 36px; border-radius: 14px; }
.btn-xl { font-size: 18px; padding: 20px 44px; border-radius: 14px; }

.arrow { font-size: 18px; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--green-dark);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--white); font-weight: 500; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-items { display: flex; gap: 24px; align-items: center; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { opacity: 0.7; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 72px; max-width: 1180px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--green-mid);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.8; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--green-dark); letter-spacing: -0.01em; }
.nav-logo-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text); transition: var(--transition); }
.nav-link:hover, .nav-link.active { background: var(--green-pale); color: var(--green-dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--green-dark); padding: 8px 14px; border-radius: 8px; background: var(--green-pale); }
.nav-phone:hover { background: var(--green-pale); }
.nav-cta { background: var(--green-mid); color: var(--white); padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: var(--transition); }
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); display: block; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 200; padding: 24px; flex-direction: column; gap: 12px; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mobile-close { background: none; font-size: 28px; color: var(--charcoal); line-height: 1; }
.mobile-link { padding: 16px; font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74,155,111,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(46,107,79,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; max-width: 760px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #5FD68A; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
.hero-title { font-family: var(--font-display); font-size: clamp(40px,5vw,68px); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; color: var(--white); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: #7ED9A4; }
.hero-subtitle { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
.stars { display: flex; gap: 2px; }
.star { color: #F5C842; font-size: 14px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 10px 28px; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }
.trust-icon { width: 36px; height: 36px; background: var(--green-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 18px; height: 18px; stroke: var(--green-mid); stroke-width: 1.8; fill: none; }
.trust-text { line-height: 1.3; }
.trust-num { font-size: 17px; font-weight: 700; color: var(--green-dark); font-family: var(--font-display); }
.trust-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.section-header { margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--green-dark); border-color: var(--green-dark); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.service-card.featured .service-icon svg { stroke: var(--white); }
.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
.service-card.featured .service-link { color: #7ED9A4; }
.service-card.featured::before { background: rgba(255,255,255,0.3); }
.service-featured-badge { display: inline-block; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 16px; }
.service-icon { width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--green-mid); stroke-width: 1.7; fill: none; }
.service-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-list { list-style: none; margin-bottom: 20px; }
.service-list li { font-size: 13px; color: var(--text-muted); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.service-list.white li { color: rgba(255,255,255,0.7); }
.service-list.white li::before { background: rgba(255,255,255,0.4); }
.service-link { font-size: 13px; font-weight: 600; color: var(--green-mid); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.service-link:hover { gap: 8px; }

.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.addon-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.addon-card:hover { border-color: var(--green-mid); background: var(--green-wash); }
.addon-icon { width: 40px; height: 40px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.addon-icon svg { width: 20px; height: 20px; stroke: var(--green-mid); stroke-width: 1.7; fill: none; }
.addon-title { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.addon-sub { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--green-dark); color: var(--white); }
.how-it-works .tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.how-title { font-family: var(--font-display); font-size: clamp(30px,4vw,48px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.how-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px; background: rgba(255,255,255,0.12); z-index: 0; }
.step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white);
  margin: 0 auto 20px; transition: var(--transition);
}
.step-item:hover .step-number { background: var(--green-mid); border-color: var(--green-mid); transform: scale(1.05); }
.step-icon { width: 28px; height: 28px; stroke: rgba(255,255,255,0.8); stroke-width: 1.6; fill: none; }
.step-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-time { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #7ED9A4; background: rgba(126,217,164,0.1); padding: 3px 10px; border-radius: 100px; margin-top: 10px; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after { background: var(--cream-dark); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.ba-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-side { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-before { background: linear-gradient(135deg, #8B7355 0%, #6B5A42 100%); }
.ba-after  { background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-wash) 100%); }
.ba-label {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.ba-before .ba-label { background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.9); }
.ba-after .ba-label  { background: rgba(46,107,79,0.15); color: var(--green-dark); }
.ba-info { padding: 20px 24px; }
.ba-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-mid); background: var(--green-pale); padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.ba-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.ba-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.ba-meta { display: flex; gap: 16px; margin-top: 12px; }
.ba-stat { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.ba-stat strong { color: var(--green-dark); font-weight: 600; }

/* Room visuals */
.ba-before-visual { width: 100%; height: 100%; background: linear-gradient(135deg, #8B7355 0%, #6B5A42 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 20px; }
.ba-after-visual  { width: 100%; height: 100%; background: linear-gradient(135deg, #e8f4ec 0%, #f2f9f5 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 20px; }
.clutter-items { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; opacity: 0.85; }
.clutter-item { width: 24px; height: 18px; background: rgba(255,255,255,0.2); border-radius: 3px; }
.clutter-item:nth-child(2n) { width: 32px; height: 24px; }
.clutter-item:nth-child(3n) { width: 18px; height: 28px; background: rgba(255,255,255,0.15); }
.clean-room { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.clean-floor { width: 100px; height: 8px; background: rgba(46,107,79,0.2); border-radius: 4px; }
.clean-check { width: 44px; height: 44px; background: var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.clean-check svg { width: 22px; height: 22px; stroke: white; stroke-width: 2.5; fill: none; }
.clean-text { font-size: 13px; font-weight: 600; color: var(--green-dark); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-card {
  border-radius: var(--radius-lg); padding: 32px;
  border: 2px solid var(--border);
  transition: var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-mid); }
.pricing-card.popular {
  border-color: var(--green-mid);
  background: var(--green-dark); color: var(--white);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-light); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 8px; }
.popular .pricing-plan { color: rgba(255,255,255,0.6); }
.pricing-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.popular .pricing-name { color: var(--white); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-from { font-size: 13px; color: var(--text-muted); }
.popular .pricing-from { color: rgba(255,255,255,0.5); }
.pricing-amount { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--green-dark); }
.popular .pricing-amount { color: var(--white); }
.pricing-period { font-size: 14px; color: var(--text-muted); }
.popular .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.5; }
.popular .pricing-desc { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.1); }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); }
.popular .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-features li::before { content: '✓'; color: var(--green-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.popular .pricing-features li::before { color: #7ED9A4; }
.pricing-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 24px; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { background: var(--cream); }
.locations-intro { max-width: 600px; }
.locations-layout { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; margin-top: 56px; }
.locations-list { display: flex; flex-direction: column; gap: 16px; }
.location-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition); cursor: pointer;
}
.location-item:hover, .location-item.active { border-color: var(--green-mid); background: var(--green-wash); }
.location-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.location-dot.premium { background: var(--green-dark); box-shadow: 0 0 0 3px rgba(28,74,50,0.15); }
.location-info { flex: 1; }
.location-name { font-weight: 700; font-size: 16px; color: var(--charcoal); margin-bottom: 2px; }
.location-areas { font-size: 12px; color: var(--text-muted); }
.location-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--green-pale); color: var(--green-dark); flex-shrink: 0; }
.location-badge.new { background: #FFF4E0; color: #9B6B00; }

.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 32px;
  height: 520px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8f4ec 0%, #f0f7f2 50%, #e0edd4 100%);
}
.australia-outline {
  position: absolute; inset: 20px;
  border: 2px dashed rgba(46,107,79,0.25);
  border-radius: 20px;
}
.map-pins { position: absolute; inset: 0; }
.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; transition: var(--transition); }
.map-pin:hover { transform: scale(1.1); }
.map-pin-dot { width: 16px; height: 16px; background: var(--green-mid); border-radius: 50%; border: 3px solid white; box-shadow: 0 2px 8px rgba(46,107,79,0.4); animation: pinPulse 3s infinite; }
.map-pin-dot.main { width: 20px; height: 20px; background: var(--green-dark); animation-delay: 0.5s; }
@keyframes pinPulse { 0%,100%{box-shadow:0 2px 8px rgba(46,107,79,0.4)} 50%{box-shadow:0 2px 20px rgba(46,107,79,0.6)} }
.map-pin-label { font-size: 11px; font-weight: 600; color: var(--green-dark); background: white; padding: 2px 8px; border-radius: 100px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); white-space: nowrap; }
.map-coverage-note { position: relative; z-index: 2; text-align: center; }
.map-coverage-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.map-coverage-sub { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream-dark); }
.reviews-summary { display: flex; align-items: center; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.reviews-score { text-align: center; }
.reviews-num { font-family: var(--font-display); font-size: 64px; font-weight: 700; color: var(--green-dark); line-height: 1; }
.reviews-stars-row { display: flex; gap: 4px; justify-content: center; margin: 6px 0; }
.reviews-count { font-size: 13px; color: var(--text-muted); }
.reviews-divider { width: 1px; height: 80px; background: var(--border); }
.reviews-platforms { display: flex; flex-direction: column; gap: 12px; }
.platform-row { display: flex; align-items: center; gap: 12px; }
.platform-name { font-size: 13px; font-weight: 600; color: var(--text); width: 90px; }
.rating-bar { flex: 1; height: 6px; background: var(--border); border-radius: 100px; overflow: hidden; max-width: 160px; }
.rating-fill { height: 100%; background: #F5C842; border-radius: 100px; }
.platform-score { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: #F5C842; }
.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.author-location { font-size: 12px; color: var(--text-muted); }
.testimonial-service { display: inline-block; font-size: 11px; font-weight: 600; color: var(--green-mid); background: var(--green-pale); padding: 2px 8px; border-radius: 100px; margin-top: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  background: none; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--charcoal); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-chevron { width: 20px; height: 20px; stroke: var(--text-muted); stroke-width: 2; fill: none; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--green-mid); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-cta-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  position: sticky; top: 100px;
}
.faq-cta-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.faq-cta-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.6; }
.faq-cta-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.faq-cta-features li { font-size: 13px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.faq-cta-features li::before { content: '✓'; color: #7ED9A4; font-weight: 700; }
.faq-phone { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: rgba(255,255,255,0.08); border-radius: 12px; margin-top: 12px; }
.faq-phone-num { font-size: 22px; font-weight: 700; color: var(--white); font-family: var(--font-display); }
.faq-phone-label { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================================
   BLOG
   ============================================================ */
.blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.blog-thumb-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blog-cat { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--green-mid); display: flex; align-items: center; gap: 4px; }
.blog-read:hover { gap: 8px; }

/* ============================================================
   PARTNERS / REFERRALS
   ============================================================ */
.partners { background: var(--green-wash); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.partners-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.partner-card {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  border: 1.5px solid var(--border); text-align: center; transition: var(--transition);
}
.partner-card:hover { border-color: var(--green-mid); background: var(--green-pale); }
.partner-icon-wrap { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.partner-icon-wrap svg { width: 24px; height: 24px; stroke: var(--green-mid); stroke-width: 1.7; fill: none; }
.partner-label { font-size: 13px; font-weight: 700; color: var(--charcoal); margin-bottom: 2px; }
.partner-sub { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--green-dark);
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(74,155,111,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px; line-height: 1.6; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-trust-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.55); }
.cta-trust-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); stroke-width: 2; fill: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0F2B1C; color: rgba(255,255,255,0.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--green-mid); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 1.8; }
.footer-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white; }
.footer-about { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.75); }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--green-light); stroke-width: 2; fill: none; flex-shrink: 0; }
.footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-right a:hover { color: rgba(255,255,255,0.7); }
.footer-accreditations { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.accred-badge { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 6px 12px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); }
.accred-badge svg { width: 13px; height: 13px; stroke: var(--green-light); stroke-width: 2; fill: none; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-step { display: flex; align-items: flex-start; gap: 16px; }
.contact-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); color: var(--green-dark); font-family: var(--font-display); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-step-title { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.contact-step-sub { font-size: 13px; color: var(--text-muted); }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: var(--radius); background: var(--white); border: 1.5px solid var(--border); transition: var(--transition); }
.contact-detail-item:hover { border-color: var(--green-mid); background: var(--green-wash); }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--green-mid); stroke-width: 1.8; fill: none; }
.contact-detail-label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail-value { font-size: 14px; font-weight: 600; color: var(--charcoal); }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; border: 1.5px solid var(--border); }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.form-required { color: var(--green-mid); }
.form-input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--cream); transition: var(--transition); outline: none; }
.form-input:focus { border-color: var(--green-mid); background: var(--white); box-shadow: 0 0 0 3px rgba(46,107,79,0.1); }
.form-input.error { border-color: #DC3545; }
.form-error { font-size: 12px; color: #DC3545; display: none; margin-top: 4px; }
.form-error.visible { display: block; }

.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pill { cursor: pointer; }
.service-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.service-pill span { display: inline-block; padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-muted); background: var(--cream); transition: var(--transition); cursor: pointer; user-select: none; }
.service-pill:hover span { border-color: var(--green-mid); color: var(--green-dark); background: var(--green-pale); }
.service-pill input:checked + span { background: var(--green-mid); border-color: var(--green-mid); color: var(--white); font-weight: 600; }
.service-pill input:focus-visible + span { outline: 2px solid var(--green-mid); outline-offset: 2px; }
.service-pills.error .service-pill span { border-color: rgba(220,53,69,0.4); }

.contact-success { text-align: center; padding: 40px 16px; }
.contact-success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-success-icon svg { width: 34px; height: 34px; stroke: var(--green-mid); }
.contact-success-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.contact-success-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   STICKY CTA BAR (mobile)
   ============================================================ */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 20px; gap: 10px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* ============================================================
   NOTIFICATION POPUP
   ============================================================ */
.social-proof-toast {
  position: fixed; bottom: 80px; left: 24px; z-index: 999;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  max-width: 300px; transform: translateX(-120%); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.social-proof-toast.show { transform: translateX(0); }
.toast-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 14px; flex-shrink: 0; }
.toast-text { font-size: 12px; color: var(--text); line-height: 1.4; }
.toast-text strong { font-weight: 700; color: var(--charcoal); }
.toast-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .ba-grid { grid-template-columns: 1fr; }
  .locations-layout { grid-template-columns: 1fr; }
  .map-placeholder { height: 300px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .partners-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; gap: 0; scrollbar-width: none; }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; padding: 8px 18px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .top-bar .container { justify-content: center; }
  .top-bar-items:first-child { display: none; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 20px; }
  .reviews-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .ba-images { grid-template-columns: 1fr 1fr; }
  .partners-icons { grid-template-columns: repeat(2, 1fr); }
  .contact-form-card { padding: 28px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 72px 0 60px; }
  .display-xl { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .addons-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.animate-up-delay-1 { animation-delay: 0.1s; }
.animate-up-delay-2 { animation-delay: 0.2s; }
.animate-up-delay-3 { animation-delay: 0.3s; }
.animate-up-delay-4 { animation-delay: 0.4s; }

[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].in-view { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(-20px); }
[data-aos="fade-left"].in-view { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(20px); }
[data-aos="fade-right"].in-view { transform: translateX(0); }
