/* ============================================
   LANDSCAPING BUSINESS STARTER - GLOBAL STYLES
   ============================================ */

:root {
  --green-deep: #1B3A0A;
  --green-forest: #2D5016;
  --green-mid: #3D6B1E;
  --green-sage: #5A8C2A;
  --green-light: #7DB53A;
  --green-pale: #C8E6A0;
  --green-tint: #E8F5E9;
  --earth-warm: #8B6914;
  --earth-light: #C4963A;
  --beige: #F5F0E8;
  --cream: #FAFAF7;
  --charcoal: #1C1C1C;
  --charcoal-mid: #3A3A3A;
  --gray: #6B7280;
  --gray-light: #D1D5DB;
  --gray-pale: #F3F4F6;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.07);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: 'Inter', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-forest);
  color: var(--white);
  border-color: var(--green-forest);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--green-tint);
  color: var(--green-forest);
  border-color: var(--green-pale);
}
.btn-secondary:hover { background: var(--green-pale); border-color: var(--green-pale); }

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

.btn-ghost {
  background: transparent;
  color: var(--gray);
  border-color: var(--gray-light);
}
.btn-ghost:hover { background: var(--gray-pale); color: var(--charcoal); }

.btn-white {
  background: var(--white);
  color: var(--green-forest);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-danger {
  background: #DC2626;
  color: var(--white);
  border-color: #DC2626;
}
.btn-danger:hover { background: #B91C1C; }

.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 6px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }

.btn-full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

/* Transparent state over hero */
.site-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header--transparent .logo-brand,
.site-header--transparent .nav-link,
.site-header--transparent .header-logo {
  color: rgba(255,255,255,0.95);
}
.site-header--transparent .nav-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.site-header--transparent .btn-primary {
  background: #1B5E20;
  border-color: #1B5E20;
}
.site-header--transparent .logo-sub,
.site-header--transparent .vo-link {
  color: rgba(255,255,255,0.65);
}
.site-header--transparent .mobile-toggle span {
  background: #fff;
}
/* Solid state after scroll */
.site-header--solid {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--gray-light);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  flex-shrink: 0;
  min-width: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
}

.logo-brand {
  font-weight: 700;
  font-size: 15px;
  color: var(--green-forest);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-sub {
  font-size: 11px;
  color: var(--gray);
  white-space: nowrap;
}

.vo-link { color: var(--green-sage); }
.vo-link:hover { text-decoration: underline; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--green-forest);
  background: var(--green-tint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1%, 0.5%); }
  50%  { transform: scale(1.10) translate(-1.5%, -0.5%); }
  75%  { transform: scale(1.06) translate(0.5%, -1%); }
  100% { transform: scale(1)    translate(0%, 0%); }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,10,0.88) 0%, rgba(45,80,22,0.75) 50%, rgba(27,58,10,0.60) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-highlight {
  color: var(--green-light);
  display: inline-block;
  min-width: 240px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* HERO ANIMATION */
.hero-right {
  display: flex;
  justify-content: center;
}

.hero-animation {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.anim-path {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
}

.anim-step {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.anim-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-step > span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  min-width: 65px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.anim-connector {
  width: 2px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  margin-left: 30px;
  border-radius: 2px;
}

.anim-card {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 180px;
  flex: 1;
  box-shadow: var(--shadow-sm);
}

.anim-card--blank .anim-card-line {
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  margin-bottom: 6px;
}
.anim-card--blank .anim-card-line.short { width: 60%; }

.anim-card--name {
  background: var(--green-tint);
  border: 1px solid var(--green-pale);
}
.anim-biz-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--green-forest);
}

.anim-card--logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.anim-logo-text {
  font-weight: 800;
  font-size: 18px;
  color: var(--green-forest);
  letter-spacing: 0.1em;
}

.anim-card--estimate {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.anim-est-line {
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
}
.anim-est-total {
  font-weight: 700;
  font-size: 15px;
  color: var(--green-forest);
  margin-top: 4px;
}

.anim-card--agreement {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.anim-doc-line {
  height: 5px;
  background: var(--gray-light);
  border-radius: 3px;
}
.anim-doc-line.short { width: 50%; }
.anim-sig {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-sage);
  margin-top: 4px;
}

.anim-card--website {
  padding: 8px;
}
.anim-browser-bar {
  height: 6px;
  background: var(--gray-pale);
  border-radius: 3px;
  margin-bottom: 6px;
}
.anim-browser-body { display: flex; flex-direction: column; gap: 4px; }
.anim-web-line { height: 5px; background: var(--green-tint); border-radius: 3px; }
.anim-web-line.short { width: 55%; }
.anim-badge-vo {
  font-size: 9px;
  font-weight: 600;
  color: var(--green-forest);
  background: var(--green-pale);
  padding: 2px 6px;
  border-radius: 10px;
  margin-top: 6px;
  display: inline-block;
}

.deco-grass {
  position: absolute;
  bottom: -8px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.deco-grass span {
  display: block;
  width: 6px;
  height: 18px;
  background: var(--green-light);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom center;
  animation: sway 2s ease-in-out infinite alternate;
  opacity: 0.6;
}

.deco-grass span:nth-child(2) { animation-delay: 0.3s; height: 22px; }
.deco-grass span:nth-child(3) { animation-delay: 0.6s; height: 15px; }
.deco-grass span:nth-child(4) { animation-delay: 0.9s; height: 20px; }
.deco-grass span:nth-child(5) { animation-delay: 1.2s; height: 16px; }

@keyframes sway {
  0% { transform: rotate(-8deg); }
  100% { transform: rotate(8deg); }
}

/* Grass blades at bottom of hero */
.hero-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  padding: 0 40px;
  pointer-events: none;
}

.grass-blade {
  width: 8px;
  height: 32px;
  background: linear-gradient(to top, var(--green-sage), var(--green-light));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  animation: sway 2.5s ease-in-out infinite alternate;
  opacity: 0.5;
}

.grass-blade:nth-child(2n) { height: 42px; animation-delay: 0.4s; }
.grass-blade:nth-child(3n) { height: 28px; animation-delay: 0.8s; }
.grass-blade:nth-child(4n) { height: 38px; animation-delay: 1.2s; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 80px 24px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--charcoal);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.feature-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-forest);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--beige);
  padding: 80px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: flex-start;
}

.process-step:last-child { border-bottom: none; }

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-forest);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.step-content p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 60%, var(--green-mid) 100%);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand a { color: var(--green-light); }
.footer-brand a:hover { text-decoration: underline; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* ============================================
   PROGRESS INDICATOR
   ============================================ */
.progress-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0;
  position: sticky;
  top: 57px;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}

.progress-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.progress-inner::-webkit-scrollbar { display: none; }

.progress-step {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 8px;
  white-space: nowrap;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  text-decoration: none;
}

.progress-step.active { color: var(--green-forest); }
.progress-step.complete { color: var(--green-sage); }

.progress-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.progress-step.active .progress-dot {
  border-color: var(--green-forest);
  background: var(--green-forest);
  color: var(--white);
}

.progress-step.complete .progress-dot {
  border-color: var(--green-sage);
  background: var(--green-sage);
  color: var(--white);
}

.progress-connector {
  width: 32px;
  height: 2px;
  background: var(--gray-light);
  flex-shrink: 0;
  margin: 0 4px;
}

.progress-step.complete + .progress-connector { background: var(--green-pale); }

/* ============================================
   MODULE LAYOUT
   ============================================ */
.module-page {
  min-height: calc(100vh - 120px);
  padding: 40px 0 80px;
}

.module-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

.module-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.module-header p {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.module-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   FORM COMPONENTS
   ============================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.form-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-card h2 .card-icon {
  width: 28px;
  height: 28px;
  background: var(--green-tint);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.form-grid.full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.span-2 { grid-column: span 2; }
.form-group.span-3 { grid-column: span 3; }
.form-group.span-full { grid-column: 1 / -1; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.label-required { color: #DC2626; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="url"],
select,
textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-forest);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}

input.error, select.error, textarea.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.field-error {
  font-size: 12px;
  color: #DC2626;
  display: none;
}

.field-error.visible { display: block; }

textarea { resize: vertical; min-height: 90px; }

select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-hint {
  font-size: 12px;
  color: var(--gray);
}

/* TOOLTIP */
.tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
}

.tooltip-icon {
  width: 16px;
  height: 16px;
  background: var(--gray-light);
  border-radius: 50%;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tooltip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  max-width: 220px;
  white-space: normal;
  width: max-content;
  max-width: 200px;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity var(--transition);
}

.tooltip-wrap:hover .tooltip-box { opacity: 1; }

/* ============================================
   DYNAMIC TABLE
   ============================================ */
.dynamic-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dynamic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.dynamic-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--gray-pale);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-light);
  white-space: nowrap;
}

.dynamic-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
}

.dynamic-table td input,
.dynamic-table td select {
  padding: 7px 10px;
  font-size: 13px;
}

.dynamic-table tr:last-child td { border-bottom: none; }
.dynamic-table tr:hover td { background: var(--gray-pale); }

.table-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-forest);
  border: 1.5px dashed var(--green-pale);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 12px;
}

.table-add-btn:hover {
  background: var(--green-tint);
  border-color: var(--green-sage);
}

.remove-row-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: transparent;
  color: var(--gray);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.remove-row-btn:hover { background: #FEE2E2; color: #DC2626; }

/* ============================================
   ESTIMATE SUMMARY
   ============================================ */
.estimate-summary {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.summary-header {
  background: var(--green-forest);
  color: var(--white);
  padding: 20px 28px;
}

.summary-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.summary-body {
  padding: 24px 28px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--gray-light);
}

.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-weight: 700; font-size: 18px; padding-top: 16px; }
.summary-row.profit { color: var(--green-forest); }
.summary-row.warning { color: #D97706; }
.summary-row.discount { color: #2563EB; }

.margin-warning {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: #92400E;
  display: none;
  margin-top: 12px;
}

.margin-warning.visible { display: block; }

.profit-slider-wrap {
  margin: 20px 0;
}

.profit-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--green-forest) 0%, var(--green-forest) var(--slider-pct, 30%), var(--gray-light) var(--slider-pct, 30%));
  outline: none;
  cursor: pointer;
}

.profit-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-forest);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* ============================================
   RESULT CARDS
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-light);
  padding: 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.result-card:hover { border-color: var(--green-pale); box-shadow: var(--shadow-md); }
.result-card.selected { border-color: var(--green-forest); box-shadow: 0 0 0 3px rgba(45,80,22,0.1); }
.result-card.favorited { border-color: var(--earth-light); }

.result-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.result-card .result-slogan {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 14px;
}

.result-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: var(--green-tint);
  color: var(--green-forest);
  margin-bottom: 10px;
}

.result-palette {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.palette-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
}

.palette-swatch .swatch-hex {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.palette-swatch:hover .swatch-hex { opacity: 1; }

.result-domain {
  font-size: 12px;
  color: var(--gray);
  font-family: monospace;
  background: var(--gray-pale);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
}

.result-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================
   LOGO DIRECTION CARDS
   ============================================ */
.logo-direction-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.logo-direction-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-pale); }
.logo-direction-card.selected { border-color: var(--green-forest); }

.logo-preview {
  padding: 32px;
  background: var(--gray-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.logo-preview-inner {
  text-align: center;
}

.logo-icon-preview {
  font-size: 40px;
  margin-bottom: 8px;
}

.logo-name-preview {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
}

.logo-slogan-preview {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}

.logo-card-body {
  padding: 20px;
}

.logo-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.logo-card-body p { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 14px; }

.logo-font-info {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
}

.logo-font-info span { font-weight: 600; color: var(--charcoal-mid); }

/* ============================================
   AGREEMENT SECTION
   ============================================ */
.agreement-section {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.agreement-section-header {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gray-pale);
  transition: background var(--transition);
  user-select: none;
}

.agreement-section-header:hover { background: var(--gray-light); }

.agreement-section-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.agreement-section-body {
  padding: 24px;
  display: none;
}

.agreement-section-body.open { display: block; }

.agreement-text-area {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal);
  resize: vertical;
  transition: border-color var(--transition);
}

.agreement-text-area:focus {
  outline: none;
  border-color: var(--green-forest);
}

/* SIGNATURE AREA */
.signature-area {
  background: var(--gray-pale);
  border: 1.5px dashed var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.signature-line {
  border-bottom: 2px solid var(--charcoal);
  margin: 12px 0;
  height: 40px;
}

.signature-label { font-size: 12px; color: var(--gray); }

/* ============================================
   DASHBOARD / SAVED PROJECTS
   ============================================ */
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.project-card:hover { box-shadow: var(--shadow-md); }

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.project-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.project-card-date {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

.project-completion {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.completion-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
}

.completion-fill {
  height: 100%;
  background: var(--green-sage);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.completion-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-forest);
  white-space: nowrap;
}

.project-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.project-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green-forest);
}

.project-tag.done { background: #D1FAE5; color: #065F46; }
.project-tag.partial { background: #FEF3C7; color: #92400E; }
.project-tag.empty { background: var(--gray-pale); color: var(--gray); }

.project-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============================================
   REVIEW DASHBOARD
   ============================================ */
.review-header {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 100%);
  padding: 48px 24px;
  text-align: center;
  color: var(--white);
}

.review-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 8px;
}

.review-score-label {
  font-size: 18px;
  opacity: 0.85;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.review-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 6px;
}

.review-card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.review-card-sub { font-size: 13px; color: var(--gray); margin-top: 2px; }

.missing-items {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 0 24px 20px;
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 20px 24px;
}

.missing-items h3 { font-size: 14px; font-weight: 700; color: #92400E; margin-bottom: 10px; }

.missing-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #78350F;
  padding: 4px 0;
}

/* ============================================
   VIBEOTTER POPUP
   ============================================ */
.vo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.vo-popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  position: relative;
}

.vo-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--gray-pale);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}
.vo-popup-close:hover { background: var(--gray-light); color: var(--charcoal); }

.vo-popup-left {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 100%);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.vo-device-mockup {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  justify-content: center;
}

.vo-desktop {
  background: rgba(255,255,255,0.12);
  border-radius: 8px 8px 0 0;
  padding: 6px 6px 0;
  width: 160px;
  border: 2px solid rgba(255,255,255,0.25);
  border-bottom: none;
}

.vo-screen {
  background: var(--white);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.vo-screen-header {
  height: 14px;
  background: var(--green-forest);
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 3px;
}

.vo-screen-hero {
  height: 36px;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vo-screen-biz {
  font-size: 7px;
  font-weight: 700;
  color: var(--green-forest);
}

.vo-screen-body {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vo-screen-line { height: 4px; background: var(--gray-light); border-radius: 2px; }
.vo-screen-line.short { width: 60%; }
.vo-screen-btn { height: 8px; width: 60px; background: var(--green-forest); border-radius: 4px; margin-top: 4px; }

.vo-tablet {
  width: 80px;
  height: 100px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 4px;
}

.vo-tablet-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green-tint), var(--white));
}

.vo-phone {
  width: 50px;
  height: 90px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 3px;
}

.vo-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-forest), var(--green-sage));
  border-radius: 8px;
  opacity: 0.8;
}

.vo-popup-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.vo-popup-right {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.vo-popup-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-forest);
}

.vo-popup-right h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.vo-popup-right p { font-size: 14px; color: var(--gray); line-height: 1.6; }

.vo-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vo-feature-list li {
  font-size: 14px;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vo-feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green-tint);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4 9l3.5 3.5 6.5-7' stroke='%232D5016' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.vo-main-btn { width: 100%; }

.vo-footer-note {
  font-size: 11px !important;
  color: var(--gray) !important;
  text-align: center;
  border-top: 1px solid var(--gray-light);
  padding-top: 12px !important;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .site-footer, .progress-bar, .btn, .vo-popup-overlay,
  .mobile-menu, .mobile-toggle, .header-actions, .main-nav { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }

  .print-document {
    max-width: 100%;
    padding: 0;
  }

  .print-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16pt;
    border-bottom: 2pt solid #2D5016;
    margin-bottom: 24pt;
  }

  .print-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9pt;
    color: #888;
    padding: 8pt;
    border-top: 1pt solid #ddd;
  }

  .page-break { page-break-after: always; }
  .no-break { page-break-inside: avoid; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-green { color: var(--green-forest); }
.text-gray { color: var(--gray); }
.text-small { font-size: 13px; }
.text-muted { color: var(--gray); font-size: 12px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-green { background: var(--green-tint); color: var(--green-forest); }
.badge-gray { background: var(--gray-pale); color: var(--gray); }
.badge-amber { background: #FEF3C7; color: #92400E; }
.badge-blue { background: #DBEAFE; color: #1E40AF; }

.divider {
  height: 1px;
  background: var(--gray-light);
  margin: 20px 0;
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray);
}

.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--charcoal-mid); margin-bottom: 8px; }
.empty-state p { font-size: 15px; margin-bottom: 20px; }

.success-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green-forest);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  max-width: 300px;
}

.success-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

/* SEO PAGE STYLES */
.seo-page .breadcrumb {
  font-size: 13px;
  color: var(--gray);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.seo-page .breadcrumb a { color: var(--green-forest); }
.seo-page .breadcrumb a:hover { text-decoration: underline; }

.seo-page .page-intro {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 32px;
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover { background: var(--gray-pale); }

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 500px;
  padding: 16px 20px;
}

.faq-toggle {
  font-size: 20px;
  color: var(--green-forest);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Disclaimer box */
.disclaimer-box {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 13px;
  color: #7B5800;
  line-height: 1.6;
  margin: 20px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }
  .header-actions .btn-primary { display: none; }

  .hero-content { padding-top: 48px; padding-bottom: 48px; }
  .hero { min-height: 60vh; }
  .hero-headline { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  .feature-cards { grid-template-columns: 1fr; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid.cols-3, .form-grid.cols-4 { grid-template-columns: 1fr; }
  .form-group.span-2, .form-group.span-3 { grid-column: 1; }

  .review-cards { grid-template-columns: 1fr; }

  .vo-popup { grid-template-columns: 1fr; max-height: 85vh; }
  .vo-popup-left { display: none; }
  .vo-popup-right { border-radius: var(--radius-xl); }

  .hero-grass { display: none; }

  .progress-bar { top: 57px; }

  .dynamic-table th, .dynamic-table td { padding: 8px 6px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 10px 16px; }
  .logo-brand { font-size: 13px; }
  .logo-sub { display: none; }
  .container { padding: 0 16px; }
  .form-card { padding: 20px 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .process-step { flex-direction: column; gap: 12px; }
}

/* ============================================
   CINEMATIC HERO
   ============================================ */

/* Hero full-screen cinematic */
.hero--cinematic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Cinematic overlay — deep green gradient with warm sunrise tones */
.hero-overlay--cinematic {
  background: linear-gradient(
    160deg,
    rgba(10, 30, 10, 0.72) 0%,
    rgba(27, 94, 32, 0.55) 45%,
    rgba(10, 20, 5, 0.78) 100%
  );
}

/* Centered cinematic content */
.hero-content--cinematic {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 860px;
  margin: 0 auto;
  animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(27, 94, 32, 0.35);
  backdrop-filter: blur(8px);
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
  animation: heroFadeIn 1.4s ease 0.2s both;
}

/* Cinematic headline */
.hero-headline--cinematic {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  letter-spacing: -0.01em;
  animation: heroFadeIn 1.4s ease 0.35s both;
}

.hero-headline-accent {
  display: block;
  color: #A5D6A7;
  font-style: italic;
}

/* Cinematic subheadline */
.hero-sub--cinematic {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  animation: heroFadeIn 1.4s ease 0.5s both;
}

/* CTA buttons */
.hero-ctas--cinematic {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeIn 1.4s ease 0.65s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #1B5E20;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #1B5E20;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(27,94,32,0.45);
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-hero-primary:hover {
  background: #2E7D32;
  border-color: #2E7D32;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27,94,32,0.55);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  cursor: pointer;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
}

/* Floating light particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 220, 0.7);
  animation: floatParticle linear infinite;
}

.particle:nth-child(1)  { left: 8%;  bottom: -10px; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 15%; bottom: -10px; width: 5px; height: 5px; animation-duration: 16s; animation-delay: 2s; }
.particle:nth-child(3)  { left: 25%; bottom: -10px; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 4s; }
.particle:nth-child(4)  { left: 38%; bottom: -10px; width: 4px; height: 4px; animation-duration: 18s; animation-delay: 1s; }
.particle:nth-child(5)  { left: 50%; bottom: -10px; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 3s; }
.particle:nth-child(6)  { left: 62%; bottom: -10px; width: 5px; height: 5px; animation-duration: 17s; animation-delay: 5s; }
.particle:nth-child(7)  { left: 72%; bottom: -10px; width: 3px; height: 3px; animation-duration: 11s; animation-delay: 0.5s; }
.particle:nth-child(8)  { left: 80%; bottom: -10px; width: 4px; height: 4px; animation-duration: 15s; animation-delay: 2.5s; }
.particle:nth-child(9)  { left: 88%; bottom: -10px; width: 3px; height: 3px; animation-duration: 19s; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 20%; bottom: -10px; width: 2px; height: 2px; animation-duration: 14s; animation-delay: 6s; }
.particle:nth-child(11) { left: 55%; bottom: -10px; width: 3px; height: 3px; animation-duration: 16s; animation-delay: 3.5s; }
.particle:nth-child(12) { left: 92%; bottom: -10px; width: 2px; height: 2px; animation-duration: 12s; animation-delay: 7s; }

@keyframes floatParticle {
  0%   { transform: translateY(0) translateX(0) scale(1);   opacity: 0; }
  10%  { opacity: 0.8; }
  80%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) translateX(30px) scale(0.5); opacity: 0; }
}

/* Enhanced grass blades for cinematic hero */
.hero-grass--cinematic {
  z-index: 3;
  padding: 0 0;
  gap: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.hero-grass--cinematic .grass-blade {
  width: 10px;
  height: 48px;
  opacity: 0.65;
  background: linear-gradient(to top, #1B5E20, #4CAF50);
}
.hero-grass--cinematic .grass-blade:nth-child(2n)  { height: 60px; animation-delay: 0.3s; }
.hero-grass--cinematic .grass-blade:nth-child(3n)  { height: 40px; animation-delay: 0.7s; }
.hero-grass--cinematic .grass-blade:nth-child(4n)  { height: 55px; animation-delay: 1.1s; }
.hero-grass--cinematic .grass-blade:nth-child(5n)  { height: 44px; animation-delay: 0.5s; }
.hero-grass--cinematic .grass-blade:nth-child(6n)  { height: 52px; animation-delay: 1.4s; }

/* Curved SVG divider at bottom of hero */
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}
.hero-curve svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* Parallax: JS sets --parallax-y on the section; Ken Burns still runs on the img */
.hero--cinematic {
  --parallax-y: 0px;
}
.hero--cinematic .hero-bg-img {
  will-change: transform;
  transform: translateY(var(--parallax-y)) scale(1);
  animation: kenBurnsParallax 24s ease-in-out infinite;
}

@keyframes kenBurnsParallax {
  0%   { transform: translateY(var(--parallax-y)) scale(1.0)  translate(0%, 0%); }
  25%  { transform: translateY(var(--parallax-y)) scale(1.06) translate(-1%, 0.5%); }
  50%  { transform: translateY(var(--parallax-y)) scale(1.10) translate(-1.5%, -0.5%); }
  75%  { transform: translateY(var(--parallax-y)) scale(1.06) translate(0.5%, -1%); }
  100% { transform: translateY(var(--parallax-y)) scale(1.0)  translate(0%, 0%); }
}

/* Compensate for fixed header on non-hero pages */
body.has-fixed-header .features-section,
body.has-fixed-header .process-section {
  scroll-margin-top: 70px;
}

/* Responsive cinematic hero */
@media (max-width: 768px) {
  .hero--cinematic { min-height: 100svh; }
  .hero-content--cinematic { padding-top: 100px; padding-bottom: 100px; }
  .hero-headline--cinematic { font-size: clamp(2.4rem, 8vw, 3.6rem); }
  .hero-sub--cinematic { font-size: 1rem; max-width: 90%; }
  .btn-hero-primary, .btn-hero-secondary { padding: 14px 28px; font-size: 15px; }
  .hero-ctas--cinematic { gap: 12px; }
}

@media (max-width: 480px) {
  .hero-headline--cinematic { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-ctas--cinematic { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; }
  .hero-content--cinematic { text-align: justify; align-items: flex-start; }
  .hero-eyebrow { align-self: flex-start; }
  .hero-headline--cinematic { text-align: justify; }
  .hero-sub--cinematic { text-align: justify; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
