/* ============================================
   BIG MOWSKI LAWNCARE LLC
   Fonts: Fredoka (display/fun) + Inter (body) + Permanent Marker (accent)
   Palette: Grass green (#2D8B4E) primary, Sky blue (#4A9FD9) secondary,
            Lawn dark (#1A5E35) deep, Sunshine yellow (#F5C518) accent,
            Light cream bg (#F8FBF5)
   Vibe: Fun, approachable, laid-back. Clean mow stripes as motif.
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary -- grass greens */
  --green-900: #0D3B1F;
  --green-800: #1A5E35;
  --green-700: #238B42;
  --green-600: #2D8B4E;
  --green-500: #3DA864;
  --green-400: #4CBB6A;
  --green-300: #6DD98A;
  --green-200: #A5E8B8;
  --green-100: #D0F4DB;
  --green-50:  #EAF9EF;

  /* Secondary -- sky blues */
  --blue-700: #2A6FA0;
  --blue-600: #3A8CC5;
  --blue-500: #4A9FD9;
  --blue-400: #6DB8E8;
  --blue-300: #A8D8F0;
  --blue-200: #C9E8F7;
  --blue-100: #E4F3FB;

  /* Accent -- sunshine yellow */
  --yellow-600: #D4A800;
  --yellow-500: #F5C518;
  --yellow-400: #FFD54F;
  --yellow-300: #FFE082;

  /* Neutrals */
  --white:     #FFFFFF;
  --gray-50:   #F8FBF5;
  --gray-100:  #EFF5EA;
  --gray-200:  #DDE6D5;
  --gray-300:  #C0CCB6;
  --gray-400:  #8DA082;
  --gray-500:  #637558;
  --gray-600:  #4A5C3F;
  --gray-700:  #3A4A30;
  --gray-800:  #2A3A22;
  --gray-900:  #1A2A14;

  /* Semantic */
  --text-primary:   #1A2A14;
  --text-secondary: #4A5C3F;
  --text-muted:     #637558;
  --bg-primary:     #F8FBF5;
  --bg-alt:         #EFF5EA;

  /* Typography */
  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Permanent Marker', cursive;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 120px);
  --container-px: clamp(20px, 4vw, 40px);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

ul, ol { list-style: none; }

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

input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Section spacing */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--green-600);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.95em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-header .section-tag::before {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}

.btn--primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 139, 78, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--green-600);
  border-color: var(--green-600);
}

.btn--outline:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(45, 139, 78, 0.1);
  border: 1px solid rgba(45, 139, 78, 0.2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.02em;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 251, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.nav--scrolled {
  background: rgba(248, 251, 245, 0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 72px;
  transition: height 0.3s var(--ease-out);
}

.nav--scrolled .nav__inner {
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark svg {
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-800);
  letter-spacing: -0.01em;
}

.logo__sub {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--blue-500);
  letter-spacing: 0.04em;
}

.logo--light .logo__name {
  color: var(--white);
}

.logo--light .logo__sub {
  color: var(--yellow-400);
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--green-600);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  text-decoration: none;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger--active .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(248, 251, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px var(--container-px) 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  z-index: 999;
}

.mobile-menu--open {
  display: flex;
  opacity: 1;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 8px 16px;
  transition: color 0.3s var(--ease-out);
}

.mobile-menu__link:hover {
  color: var(--green-600);
}

.mobile-menu__cta {
  margin-top: 16px;
  text-decoration: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-100) 0%, var(--green-50) 50%, var(--bg-primary) 100%);
}

/* Lawn stripe pattern overlay on hero */
.hero__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 40px,
    rgba(45, 139, 78, 0.03) 40px,
    rgba(45, 139, 78, 0.03) 80px
  );
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 139, 78, 0.12), transparent 70%);
  top: -10%;
  right: -10%;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 159, 217, 0.1), transparent 70%);
  bottom: 10%;
  left: -10%;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.1), transparent 70%);
  top: 30%;
  left: 40%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--green-900);
}

.hero__title em {
  font-style: normal;
  color: var(--green-600);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 1em;
}

.hero__description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero__trust-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-300);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 480px;
}

.hero__illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

/* Hero SVG Animations */
.hero-svg__sun {
  animation: gentleSpin 60s linear infinite;
  transform-origin: 400px 65px;
}

.hero-svg__ray {
  animation: rayPulse 3s ease-in-out infinite;
}

.hero-svg__ray:nth-child(even) {
  animation-delay: 0.5s;
}

@keyframes gentleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-svg__cloud--1 {
  animation: cloudDrift 30s ease-in-out infinite;
}

.hero-svg__cloud--2 {
  animation: cloudDrift 40s ease-in-out infinite reverse;
}

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

.hero-svg__mower {
  animation: mowerBounce 2s ease-in-out infinite;
}

@keyframes mowerBounce {
  0%, 100% { transform: translate(320px, 265px) translateY(0); }
  50% { transform: translate(320px, 265px) translateY(-3px); }
}

.hero-svg__clippings rect {
  animation: clippingFloat 2s ease-in-out infinite;
}

.hero-svg__clippings rect:nth-child(1) { animation-delay: 0s; }
.hero-svg__clippings rect:nth-child(2) { animation-delay: 0.4s; }
.hero-svg__clippings rect:nth-child(3) { animation-delay: 0.8s; }

@keyframes clippingFloat {
  0%, 100% { opacity: 0.8; transform: translate(0, 0); }
  50% { opacity: 0.3; transform: translate(-5px, -8px); }
}

.hero-svg__shades {
  animation: shadesFloat 4s ease-in-out infinite;
}

@keyframes shadesFloat {
  0%, 100% { transform: translate(355px, 250px) rotate(0deg); }
  50% { transform: translate(355px, 246px) rotate(3deg); }
}

.hero-svg__flower--1 { animation: flowerSway 4s ease-in-out infinite; transform-origin: 70px 255px; }
.hero-svg__flower--2 { animation: flowerSway 4.5s ease-in-out infinite; transform-origin: 82px 255px; }
.hero-svg__flower--3 { animation: flowerSway 3.5s ease-in-out infinite; transform-origin: 92px 255px; }

@keyframes flowerSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

/* Stats Bar */
.hero__stats {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
}

.stats-bar__suffix {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--blue-500);
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero__scroll {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: var(--gray-300);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  width: 2px;
  height: 12px;
  background: var(--green-500);
  border-radius: 1px;
  position: absolute;
  top: 0;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--green-800);
  padding: 14px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
  white-space: nowrap;
}

.marquee__content span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--yellow-500);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.about__owner-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about__owner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.about__owner-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.about__owner-info strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.about__owner-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Quote */
.about__quote {
  margin-top: 28px;
  padding: 24px;
  background: var(--green-50);
  border-left: 3px solid var(--green-500);
  border-radius: var(--radius-md);
}

.about__quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 8px;
}

.about__quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--green-600);
  font-family: var(--font-display);
}

/* About content */
.about__text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.about__value:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}

.about__value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.about__value strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.about__value span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

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

.service-card--featured {
  border-color: var(--green-300);
  background: linear-gradient(135deg, rgba(45, 139, 78, 0.04), rgba(74, 159, 217, 0.04));
}

.service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  background: var(--yellow-500);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: var(--green-600);
  color: var(--white);
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-card__features {
  margin-bottom: 18px;
}

.service-card__features li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
  transition: all 0.3s var(--ease-out);
}

.service-card__cta:hover {
  color: var(--blue-500);
  gap: 10px;
}

/* ---------- PROCESS ---------- */
.process__timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.process__step {
  display: flex;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--green-300);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-600);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease-out);
}

.process__step:hover .process__number {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.process__content {
  padding-top: 10px;
}

.process__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process__content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- WHY CHOOSE US ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.why__card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.why-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.why-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}

.why-card__number {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--blue-500);
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Service areas */
.why__areas {
  position: sticky;
  top: 100px;
  padding: 32px;
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg);
}

.why__areas-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 12px;
}

.why__areas-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.why__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
  cursor: default;
}

.area-tag:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.area-tag--active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

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

.testimonial-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

.testimonial-card--featured .testimonial-card__text {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card--featured .testimonial-card__author span {
  color: var(--green-300);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: var(--yellow-500);
  color: var(--green-900);
}

.testimonial-card__author strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 40%, var(--blue-700) 100%);
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  /* Lawn stripe pattern overlay */
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact__info-inner {
  padding: 36px;
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.contact__info-inner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact__info-inner > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact__detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--green-400);
}

.contact__detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.contact__detail span,
.contact__detail a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact__detail a:hover {
  color: var(--yellow-400);
}

.contact__areas {
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.contact__areas strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact__areas span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* Map */
.contact__map {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact__map-placeholder {
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.contact__map-placeholder span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Contact Form */
.contact-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__group {
  margin-bottom: 16px;
}

.contact-form__group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.required {
  color: #E53935;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 139, 78, 0.1);
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: var(--gray-400);
}

.contact-form__group input.error,
.contact-form__group select.error {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.contact-form__error {
  display: block;
  font-size: 0.78rem;
  color: #E53935;
  margin-top: 4px;
  min-height: 0;
}

.contact-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23637558' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 8px;
}

.contact-form__submit-loading {
  display: none;
  animation: spin 1s linear infinite;
}

.contact-form__submit--loading .contact-form__submit-text {
  display: none;
}

.contact-form__submit--loading .contact-form__submit-loading {
  display: block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success Message */
.contact-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact-form__success--visible {
  display: block;
}

.contact-form__success h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--green-600);
}

.contact-form__success p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  max-width: 320px;
}

.footer__about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
  background: var(--green-600);
  color: var(--white);
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s var(--ease-out);
}

.footer__links a:hover {
  color: var(--yellow-400);
}

.footer__contact address {
  font-style: normal;
}

.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.55);
}

.footer__contact a:hover {
  color: var(--yellow-400);
}

.footer__hours {
  margin-top: 16px;
}

.footer__hours strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__hours p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Footer Bottom */
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s var(--ease-out);
}

.footer__legal a:hover {
  color: var(--yellow-400);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-600);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- SCROLL REVEAL ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__description {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-bar {
    gap: 20px;
    padding: 24px 28px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why__areas {
    position: static;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 2;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-py: 64px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .stats-bar__divider {
    width: 60px;
    height: 1px;
  }

  .hero__trust {
    flex-direction: column;
    gap: 8px;
  }

  .hero__trust-divider {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why__card-grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 1;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .contact__info-inner {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- PRINT ---------- */
@media print {
  .nav,
  .hero__orb,
  .hero__stripes,
  .hero__scroll,
  .back-to-top,
  .cta-banner,
  .marquee,
  .mobile-menu,
  .nav__hamburger,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 24px 0;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}