/* ============================================================
   HOME PAGE — Carolina Sod Solutions
   ============================================================ */

/* ── Top bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--green-900);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .45rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 36px;
  display: flex;
  align-items: center;
  transition: transform var(--dur-m) var(--ease);
}

/* Slide the top-bar up out of view once the user scrolls */
body.scrolled .top-bar {
  transform: translateY(-100%);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Hide top-bar on small screens so it doesn't overflow / wrap */
@media (max-width: 768px) {
  .top-bar { display: none; }
  body.has-top-bar .site-header { top: 0; }
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.top-bar-divider { color: rgba(255,255,255,.18); }

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  color: var(--green-300);
  font-weight: 500;
  letter-spacing: .04em;
  transition: color var(--dur-s);
}

.top-bar-phone:hover { color: #fff; }

/* ── Hero ────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-color: var(--green-800);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(8, 18, 8, .90) 0%,
    rgba(8, 18, 8, .75) 50%,
    rgba(8, 18, 8, .50) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.25rem;
}

.hero-badges {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: .55rem .9rem;
  backdrop-filter: blur(4px);
}

.hero-badge__icon { color: var(--green-400); flex-shrink: 0; display: flex; }

.hero-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-badge__text strong {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--white);
}

.hero-badge__text span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
}

.hero-headline {
  color: var(--white);
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -.035em;
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
}

.hero-headline__accent {
  color: var(--white);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.03em;
  font-size: 1.12em;
  line-height: .9;
}

.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.08rem);
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-checks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
}

.hero-check svg { color: var(--green-400); flex-shrink: 0; }

/* ── Dark glass form card ────────────────────────────────── */
.hero-form-wrap { position: relative; }

.hero-dark-card {
  background: rgba(8, 18, 8, .88);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  width: 100%;
}

.hero-dark-card__header {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 1.75rem 1.25rem;
  text-align: center;
}

.hero-dark-card__pre {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .25rem;
  font-weight: 400;
}

.hero-dark-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.hero-dark-form {
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.hf-input {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  font-size: .92rem;
  color: var(--white);
  transition: border-color var(--dur-s), background var(--dur-s);
  appearance: none;
  -webkit-appearance: none;
}

.hf-input::placeholder { color: rgba(255,255,255,.38); }

.hf-input:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255,255,255,.10);
}

.hf-input option { background: #0d1f0d; color: var(--white); }

.hf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .95rem 1.5rem;
  background: var(--green-600);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: background var(--dur-m), transform var(--dur-s), box-shadow var(--dur-m);
  box-shadow: 0 4px 16px rgba(49,117,52,.4);
  margin-top: .25rem;
  border: none;
  text-decoration: none;
  font-family: var(--font-serif);
  letter-spacing: -.01em;
}

.hf-submit:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(39,92,42,.5);
}

.hf-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 1.75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  gap: .5rem;
}

.hf-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  text-align: center;
}

.hf-trust-item__logo {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}

.hf-trust-item__icon { color: var(--green-400); display: flex; }

.hf-trust-item__stars {
  font-size: .7rem;
  color: #FBBC04;
  letter-spacing: .05em;
}

.hf-trust-item__label {
  font-size: .62rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hf-trust-divider {
  width: 1px;
  height: 2.25rem;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-hero { padding-top: 8rem; padding-bottom: 3.5rem; min-height: auto; }
  .hero-overlay { background: rgba(8,18,8,.80); }
  .hero-headline { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}

@media (max-width: 600px) {
  .hero-badges { gap: .65rem; }
  .hero-checks { gap: 1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar { border-top: none; }

/* ── Services section ────────────────────────────────────── */
.service-card__label {
  /* override to green pill style */
}

/* ── Why section ─────────────────────────────────────────── */
.why-section { padding: 5rem 0 4.5rem; }

/* ── Process section ─────────────────────────────────────── */
.process-section { position: relative; }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.process-step-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.1rem;
}

.process-step-item__num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}

.process-step-item h3 {
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.3;
}

.process-step-item p {
  color: rgba(255,255,255,.52);
  font-size: .82rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 860px) {
  .process-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .process-steps-grid { grid-template-columns: 1fr; }
}

