/* ==========================================================================
   Old South Lawn Care — Modern Redesign Stylesheet
   Bright, white + green, conversion-focused home-service brand.
   Pure HTML5 / CSS3 — no frameworks.
   Fonts: Poppins (headings), Inter (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --white: #FFFFFF;
  --green: #2E8B57;          /* Fresh Green */
  --green-dark: #246c44;
  --green-darker: #1c5435;
  --lime: #A7D129;           /* Lime Accent */
  --lime-dark: #8fb81f;
  --text: #17221B;           /* Deep Text */
  --mint: #EEF8F1;           /* Soft Mint Background */
  --gray: #F6F7F5;           /* Light Gray */
  --warm: #F4B860;           /* Warm Accent */

  --muted: #5d6b62;
  --border: #e6ebe6;

  /* Type */
  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.25rem;
  --sp-5: 3.5rem;
  --sp-6: 5rem;
  --sp-section: 6.5rem;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Soft shadows */
  --sh-sm: 0 4px 16px rgba(23, 34, 27, 0.06);
  --sh-md: 0 14px 38px rgba(23, 34, 27, 0.09);
  --sh-lg: 0 28px 64px rgba(23, 34, 27, 0.13);
  --sh-green: 0 16px 34px rgba(46, 139, 87, 0.28);

  /* Gradients */
  --grad-green: linear-gradient(135deg, #2E8B57 0%, #246c44 100%);
  --grad-lime: linear-gradient(120deg, #2E8B57 0%, #57a86b 55%, #A7D129 130%);
  --grad-cta: linear-gradient(130deg, #1c5435 0%, #2E8B57 60%, #3aa566 100%);

  --container: 1200px;
  --header-h: 80px;
  --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin-bottom: var(--sp-2); }

a { color: var(--green); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--green-dark); }

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.6rem;
}

.section { padding: var(--sp-section) 0; }
.section--mint { background: var(--mint); }
.section--gray { background: var(--gray); }
.section--white { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-5);
}
.section-head p { color: var(--muted); font-size: 1.15rem; }

/* Eyebrow pill label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--mint);
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.eyebrow--solid { background: rgba(255,255,255,0.16); color: #fff; }
.eyebrow--solid::before { background: var(--lime); }

.text-center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); }

/* Angled / curved dividers */
.divider-angle {
  height: 90px;
  background: inherit;
  clip-path: polygon(0 0, 100% 55%, 100% 100%, 0 100%);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--sh-green);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(46,139,87,0.36);
}

.btn--lime {
  background: var(--lime);
  color: var(--text);
}
.btn--lime:hover {
  background: var(--lime-dark);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(167,209,41,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--mint);
  transform: translateY(-3px);
}

.btn--white {
  background: #fff;
  color: var(--green-dark);
}
.btn--white:hover { background: var(--lime); color: var(--text); transform: translateY(-3px); }

.btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: #fff; color: var(--green-dark); transform: translateY(-3px); }

.btn--lg { padding: 1.15rem 2.3rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: box-shadow var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: var(--sh-sm); background: rgba(255,255,255,0.97); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.05;
}
.nav__logo:hover { color: var(--green); }
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad-green);
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--sh-green);
}
.nav__logo-mark svg { width: 26px; height: 26px; }
.nav__logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 3px;
  background: var(--lime);
  border-radius: 3px;
  transition: width var(--t);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--green); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 0.9rem; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
}
.nav__phone svg { width: 18px; height: 18px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px; height: 21px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav__toggle span { display: block; height: 3px; width: 100%; background: var(--green-dark); border-radius: 3px; transition: all var(--t); }
.nav__toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Split Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(167,209,41,0.14), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(46,139,87,0.12), transparent 45%),
    var(--white);
  padding: var(--sp-6) 0 calc(var(--sp-6) + 1rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-5);
  align-items: center;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}
.hero__stars { color: var(--warm); letter-spacing: 2px; font-size: 1rem; }

.hero h1 { margin-bottom: var(--sp-3); }
.hero h1 .accent { color: var(--green); position: relative; }
.hero__sub { font-size: 1.22rem; color: var(--muted); max-width: 520px; margin-bottom: var(--sp-4); }

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.hero__phone-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__phone-icon svg { width: 24px; height: 24px; }
.hero__phone small { display: block; font-size: 0.8rem; color: var(--muted); }
.hero__phone a { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--text); }
.hero__phone a:hover { color: var(--green); }

/* Hero image card with floating badges */
.hero__media { position: relative; }
.hero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 4.4;
  background:
    linear-gradient(170deg, rgba(28,84,53,0.15), rgba(28,84,53,0.45)),
    repeating-linear-gradient(115deg, #3aa566 0 38px, #2E8B57 38px 76px);
}
.hero__card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(28,84,53,0.55));
}
.hero__card-tag {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  z-index: 2;
  color: #fff;
}
.hero__card-tag strong { font-family: var(--font-head); font-size: 1.2rem; display: block; }
.hero__card-tag span { font-size: 0.9rem; opacity: 0.9; }

.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  padding: 0.7rem 1.05rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  z-index: 3;
  animation: floaty 4.5s ease-in-out infinite;
}
.float-badge svg { width: 18px; height: 18px; }
.float-badge i {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-badge--1 { top: 8%; left: -4%; }
.float-badge--2 { top: 30%; right: -7%; animation-delay: 0.6s; }
.float-badge--3 { bottom: 24%; left: -7%; animation-delay: 1.2s; }
.float-badge--4 { bottom: 5%; right: -3%; animation-delay: 1.8s; }
.float-badge--4 i { background: #fbeccb; color: #c98a1f; }

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

/* --------------------------------------------------------------------------
   7. Quick Quote Mini-Form (homepage)
   -------------------------------------------------------------------------- */
.quick-quote {
  position: relative;
  margin-top: calc(var(--sp-5) * -1);
  z-index: 5;
}
.quick-quote__inner {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  border: 1px solid var(--border);
}
.quick-quote__title {
  max-width: 150px;
}
.quick-quote__title strong { font-family: var(--font-head); font-size: 1.1rem; display: block; line-height: 1.2; }
.quick-quote__title span { font-size: 0.82rem; color: var(--muted); }
.quick-quote .field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quick-quote .field input,
.quick-quote .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--gray);
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
}
.quick-quote .field input:focus,
.quick-quote .field select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,139,87,0.12);
}
.quick-quote .field input.invalid,
.quick-quote .field select.invalid { border-color: #d4564a; background: #fdf3f2; }
.quick-quote__msg {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 600;
  display: none;
}
.quick-quote__msg.show { display: block; }

/* --------------------------------------------------------------------------
   8. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--grad-cta);
  color: #fff;
  padding: calc(var(--sp-6)) 0 calc(var(--sp-6) + 2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(167,209,41,0.25), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(167,209,41,0.16), transparent 45%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: var(--sp-2); }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.2rem; color: rgba(255,255,255,0.9); }
.page-hero__crumb { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: var(--sp-2); }
.page-hero__crumb a { color: var(--lime); }
.page-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; width: 100%;
  line-height: 0;
}
.page-hero__wave svg { width: 100%; height: 70px; display: block; }

/* --------------------------------------------------------------------------
   9. Stat strip
   -------------------------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: var(--sp-4);
  margin-top: calc(var(--sp-5) * -1);
  position: relative;
  z-index: 4;
}
.stat { text-align: center; padding: 0 var(--sp-2); }
.stat + .stat { border-left: 1px solid var(--border); }
.stat__num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat__label { font-size: 0.92rem; color: var(--muted); margin-top: 0.4rem; }

/* --------------------------------------------------------------------------
   10. Horizontal service tiles
   -------------------------------------------------------------------------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.service-tile {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.7rem;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(46,139,87,0.35);
}
.service-tile__icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--mint);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
.service-tile:hover .service-tile__icon { background: var(--grad-green); color: #fff; }
.service-tile__icon svg { width: 32px; height: 32px; }
.service-tile__body { flex: 1; }
.service-tile__body h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.service-tile__body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.5rem; }
.service-tile__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
}
.service-tile__link svg { width: 16px; height: 16px; transition: transform var(--t); }
.service-tile__link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   11. Package cards
   -------------------------------------------------------------------------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  align-items: stretch;
}
.package-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.package-card--featured {
  background: var(--grad-cta);
  color: #fff;
  border: none;
  box-shadow: var(--sh-green);
}
.package-card--featured h3 { color: #fff; }
.package-card--featured .package-card__desc { color: rgba(255,255,255,0.85); }
.package-card--featured .package-card__list li { color: rgba(255,255,255,0.95); }
.package-card--featured .package-card__list svg { color: var(--lime); }
.package-card__tag {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: var(--lime);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.32rem 0.8rem;
  border-radius: var(--r-pill);
}
.package-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
}
.package-card--featured .package-card__icon { background: rgba(255,255,255,0.16); color: var(--lime); }
.package-card__icon svg { width: 30px; height: 30px; }
.package-card h3 { margin-bottom: 0.4rem; }
.package-card__desc { color: var(--muted); margin-bottom: var(--sp-3); }
.package-card__list { margin-bottom: var(--sp-4); flex: 1; }
.package-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.97rem;
}
.package-card__list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.package-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   12. Split feature blocks
   -------------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.feature--reverse .feature__media { order: 2; }
.feature__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(160deg, rgba(28,84,53,0.1), rgba(28,84,53,0.4)),
    repeating-linear-gradient(120deg, #3aa566 0 36px, #2E8B57 36px 72px);
  position: relative;
}
.feature__media-tag {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: rgba(255,255,255,0.95);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
}
.check-list { margin: var(--sp-3) 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.check-list__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}
.check-list__icon svg { width: 17px; height: 17px; }
.check-list strong { display: block; font-family: var(--font-head); font-size: 1.02rem; }
.check-list span { color: var(--muted); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   13. Why-choose feature cards
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.why-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  transition: transform var(--t), box-shadow var(--t);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.why-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--grad-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
  box-shadow: var(--sh-green);
}
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. Results / Gallery grid
   -------------------------------------------------------------------------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: var(--sp-2);
}
.result-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.result-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.result-card--tall { grid-row: span 2; }
.result-card--wide { grid-column: span 2; }
.result-card__img {
  position: absolute; inset: 0;
}
.result-card:nth-child(1) .result-card__img { background: repeating-linear-gradient(115deg, #3aa566 0 30px, #2E8B57 30px 60px); }
.result-card:nth-child(2) .result-card__img { background: repeating-linear-gradient(100deg, #57a86b 0 26px, #246c44 26px 52px); }
.result-card:nth-child(3) .result-card__img { background: repeating-linear-gradient(130deg, #6cb87f 0 32px, #2E8B57 32px 64px); }
.result-card:nth-child(4) .result-card__img { background: repeating-linear-gradient(95deg, #3aa566 0 28px, #1c5435 28px 56px); }
.result-card:nth-child(5) .result-card__img { background: repeating-linear-gradient(120deg, #4f9e68 0 30px, #246c44 30px 60px); }
.result-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(23,34,27,0.62));
}
.result-card__cap {
  position: absolute;
  left: 1.1rem; bottom: 1rem;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.result-card__cap svg { width: 18px; height: 18px; color: var(--lime); }
.result-card__cap span { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }

/* --------------------------------------------------------------------------
   15. Big gradient CTA block
   -------------------------------------------------------------------------- */
.cta-block {
  background: var(--grad-cta);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(167,209,41,0.3), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(167,209,41,0.18), transparent 45%);
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-block p { color: rgba(255,255,255,0.9); max-width: 580px; margin: 0 auto var(--sp-4); font-size: 1.18rem; }
.cta-block__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }

/* Quick estimate inline block */
.estimate-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: var(--mint);
  border: 1px solid #d7ecdd;
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  flex-wrap: wrap;
}
.estimate-block h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.estimate-block p { color: var(--muted); margin: 0; }
.estimate-block__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   15b. Detailed service cards (services page)
   -------------------------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(46,139,87,0.35); }
.svc-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: var(--sp-2); }
.svc-card__icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
.svc-card:hover .svc-card__icon { background: var(--grad-green); color: #fff; }
.svc-card__icon svg { width: 30px; height: 30px; }
.svc-card__head h3 { margin: 0; }
.svc-card > p { color: var(--muted); }
.svc-card__for {
  background: var(--mint);
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
  margin-bottom: var(--sp-2);
}
.svc-card__for strong { color: var(--green-dark); }
.svc-card__list { margin-bottom: var(--sp-3); }
.svc-card__list li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.95rem; margin-bottom: 0.5rem;
}
.svc-card__list svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; margin-top: 3px; }
.svc-card .btn { margin-top: auto; align-self: flex-start; }

/* Modern process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step__num {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--grad-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  margin-bottom: var(--sp-2);
  box-shadow: var(--sh-green);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* --------------------------------------------------------------------------
   16. Badges / chips
   -------------------------------------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.chip svg { width: 16px; height: 16px; color: var(--green); }
.chip--mint { background: var(--mint); border-color: #d7ecdd; }

/* --------------------------------------------------------------------------
   17. Programs page — comparison cards + table
   -------------------------------------------------------------------------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.3rem 2rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(46,139,87,0.4); }
.plan-card--featured { border: 2px solid var(--green); }
.plan-card__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-green);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-green);
  white-space: nowrap;
}
.plan-card__name { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; margin-bottom: 0.35rem; }
.plan-card__for { color: var(--muted); font-size: 0.95rem; margin-bottom: var(--sp-3); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--border); }
.plan-card__list { flex: 1; margin-bottom: var(--sp-4); }
.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.97rem;
}
.plan-card__list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.plan-card__list .yes { color: var(--green); }
.plan-card__list .no { color: #c8cfc9; }
.plan-card__list .no + span { color: #aab2ac; }

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  background: #fff;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table th, .compare-table td {
  padding: 1.15rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
}
.compare-table thead th {
  background: var(--gray);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
}
.compare-table tbody tr { transition: background var(--t); }
.compare-table tbody tr:hover { background: var(--mint); }
.compare-table td:first-child { font-weight: 600; color: var(--green-dark); }
.compare-table .ck { color: var(--green); font-weight: 700; }
.compare-table .dash { color: #c8cfc9; }
.compare-table .btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   18. Contact — booking form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-5);
  align-items: start;
}
.contact-aside { position: sticky; top: calc(var(--header-h) + 20px); }
.info-card {
  background: var(--grad-cta);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2.3rem;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(167,209,41,0.25), transparent 45%);
}
.info-card > * { position: relative; z-index: 1; }
.info-card h3 { color: #fff; margin-bottom: var(--sp-3); }
.info-row { display: flex; align-items: flex-start; gap: 0.9rem; padding: var(--sp-2) 0; }
.info-row__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  color: var(--lime);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-row__icon svg { width: 22px; height: 22px; }
.info-row strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); margin-bottom: 0.15rem; }
.info-row a, .info-row p { color: #fff; margin: 0; }
.info-row a:hover { color: var(--lime); }
.info-card .btn { margin-top: var(--sp-3); }

/* Booking form with grouped steps */
.booking-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-md);
}
.form-step { margin-bottom: var(--sp-4); }
.form-step__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: var(--sp-3);
}
.form-step__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--sh-green);
}
.form-step__head h3 { font-size: 1.2rem; margin: 0; }
.form-step__head span { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 400; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-3); }
.field-group { display: flex; flex-direction: column; }
.field-group--full { grid-column: 1 / -1; }
.field-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.field-group label .req { color: var(--warm); }
.field-control {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--gray);
  color: var(--text);
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field-control:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,139,87,0.12);
}
.field-control.invalid { border-color: #d4564a; background: #fdf3f2; }
textarea.field-control { resize: vertical; min-height: 120px; }
select.field-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%232E8B57' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.error-text { color: #d4564a; font-size: 0.8rem; margin-top: 0.3rem; font-weight: 500; display: none; }
.field-group.has-error .error-text { display: block; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--mint);
  border: 1px solid #d7ecdd;
  padding: 1rem 1.1rem;
  border-radius: var(--r-sm);
}
.checkbox-row input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.checkbox-row label { margin: 0; font-weight: 500; font-size: 0.9rem; color: var(--muted); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
}
.form-success.show { display: block; animation: pop 0.4s ease; }
.form-success__icon {
  width: 84px; height: 84px;
  margin: 0 auto var(--sp-3);
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-green);
}
.form-success__icon svg { width: 44px; height: 44px; }
.form-success p { color: var(--muted); }

/* --------------------------------------------------------------------------
   19. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t);
}
.faq-item.open { box-shadow: var(--sh-md); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq-item.open .faq-question__icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-answer__inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   20. Map card
   -------------------------------------------------------------------------- */
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  max-width: 900px;
  margin: 0 auto;
}
.map-card__visual {
  height: 280px;
  background: linear-gradient(135deg, var(--mint), #d8edde);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.map-card__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,139,87,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,139,87,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map-card__pin { position: relative; z-index: 2; color: var(--green); }
.map-card__pin svg { width: 60px; height: 60px; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2)); }
.map-card__body { padding: var(--sp-4); text-align: center; }
.map-card__body h3 { margin-bottom: 0.3rem; }
.map-card__body p { color: var(--muted); }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--text); color: #c2ccc6; padding-top: var(--sp-6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: var(--sp-2);
}
.footer-brand { display: flex; align-items: center; gap: 0.65rem; margin-bottom: var(--sp-2); }
.footer-brand__mark {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad-green);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-brand__mark svg { width: 26px; height: 26px; }
.footer-brand span { font-family: var(--font-head); font-size: 1.2rem; color: #fff; }
.footer-col p { color: #9aa69f; font-size: 0.95rem; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: #c2ccc6; font-size: 0.95rem; }
.footer-links a:hover { color: var(--lime); padding-left: 4px; transition: all var(--t); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #c2ccc6; }
.footer-contact a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-3) 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-2);
  font-size: 0.85rem; color: #828d86;
}

/* --------------------------------------------------------------------------
   22. Back to top
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-green);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t);
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 24px; height: 24px; }

/* --------------------------------------------------------------------------
   23. Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pop {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-badge { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   24. Responsive — Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --sp-section: 5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .quick-quote__inner { grid-template-columns: 1fr 1fr; }
  .quick-quote__title { grid-column: 1 / -1; max-width: none; }
  .quick-quote .btn { width: 100%; }
  .package-grid, .plan-grid, .why-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: var(--sp-4); }
  .feature--reverse .feature__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .results-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .result-card--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
}

/* --------------------------------------------------------------------------
   25. Responsive — Mobile nav + small screens
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: var(--header-h); right: 0;
    width: min(330px, 86vw);
    height: calc(100vh - var(--header-h));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-3);
    box-shadow: var(--sh-lg);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__link { padding: 1rem 0.5rem; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__actions { flex-direction: column; align-items: stretch; width: 100%; margin-top: var(--sp-2); gap: var(--sp-2); }
  .nav__actions .btn { width: 100%; }
  .nav__phone { justify-content: center; padding: 0.6rem; }
}

@media (max-width: 680px) {
  :root { --sp-section: 4rem; }
  .tile-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-top: calc(var(--sp-4) * -1); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-left: none !important; }
  .results-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .result-card--wide, .result-card--tall { grid-column: auto; grid-row: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-card { padding: var(--sp-3); }
  .cta-block { padding: var(--sp-5) var(--sp-3); }
  .estimate-block { flex-direction: column; text-align: center; align-items: stretch; }
  .estimate-block__actions { justify-content: center; }
  .hero__actions .btn, .cta-block__actions .btn { width: 100%; }
  .service-tile { flex-direction: column; text-align: center; }
  .float-badge { font-size: 0.8rem; padding: 0.55rem 0.85rem; }
  .float-badge--1 { left: 0; }
  .float-badge--2 { right: 0; }
  .float-badge--3 { left: 0; }
  .float-badge--4 { right: 0; }
}
