/* ==========================================================================
   Lillyfields Live-in Care — Landing page styles
   Palette: Ink + Sage + Gold on Cream
   ========================================================================== */

:root {
  --green: #1D9E75;
  --green-dark: #167a5b;
  --green-soft: #e8f4ef;
  --ink: #1f2d28;
  --ink-soft: #2d3d36;
  --body: #4a5550;
  --cream: #fbf8f3;
  --cream-warm: #f4ede0;
  --gold: #c9a961;
  --line: #e5dfd2;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.hidden { display: none; }

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

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  opacity: 0.8;
}

.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar-right span {
  opacity: 0.8;
}

.topbar-right .phone {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-right .phone:hover {
  color: #d8bd7a;
}

/* ==========================================================================
   NAV
   ========================================================================== */

nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(251, 248, 243, 0.92);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  /* The logo is dark navy on transparent — works on cream */
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

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

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(29, 158, 117, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.08), transparent 60%),
    var(--cream);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.hero-text {
  padding-top: 8px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green);
}

.hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-bottom: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--ink);
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ink-soft);
}

.btn-ghost {
  color: var(--ink);
  padding: 16px 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid var(--ink);
}

.btn-ghost:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.btn-ghost-light {
  color: var(--cream);
  padding: 16px 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid var(--cream);
}

.btn-ghost-light:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Button size + colour variants */
.btn-sm {
  padding: 12px 22px;
  font-size: 14px;
}

.btn-ghost.btn-sm,
.btn-ghost-light.btn-sm {
  padding: 12px 4px;
}

.btn-green {
  background: var(--green);
}

.btn-green:hover {
  background: var(--green-dark);
}

/* ==========================================================================
   INLINE CTA STRIP (sits between sections)
   ========================================================================== */

.cta-strip {
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.cta-strip-dark {
  background: var(--ink);
  color: var(--cream);
  border-top: 0;
  border-bottom: 0;
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip-text {
  font-size: 16px;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
}

.cta-strip-dark .cta-strip-text {
  color: var(--cream);
}

.cta-strip-text strong {
  font-style: normal;
  font-weight: 500;
  font-family: 'Fraunces', serif;
  color: var(--ink);
}

.cta-strip-dark .cta-strip-text strong {
  color: white;
}

.cta-strip-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   STICKY MOBILE CALL BAR
   ========================================================================== */

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 12px;
  gap: 8px;
  z-index: 200;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-call-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 13px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.mobile-call-btn:hover {
  background: var(--green-dark);
}

.mobile-callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-callback-btn:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
}

.hero-rating .stars-row {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 16px;
}

.hero-rating strong {
  color: var(--ink);
  font-weight: 600;
}

/* ==========================================================================
   LEAD FORM CARD
   ========================================================================== */

.lead-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow:
    0 1px 2px rgba(31, 45, 40, 0.04),
    0 12px 32px rgba(31, 45, 40, 0.08);
  position: relative;
  margin-top: 8px;
}

.lead-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 12px;
  bottom: 12px;
  background: var(--green-soft);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.lead-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
}

.lead-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.lead-card .lead-sub {
  font-size: 14px;
  color: var(--body);
  margin-bottom: 22px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.field label .req {
  color: var(--green);
}

.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border 0.2s, background 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

.field textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--body);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   PROOF BAR
   ========================================================================== */

.proof-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 44px 0;
}

.proof-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.proof-item .num {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.proof-item .num .star {
  color: var(--gold);
}

.proof-item .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */

section.content {
  padding: 90px 0;
}

.section-eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

.section-subtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(27px, 3.4vw, 37px);
  font-style: italic;
  color: var(--green);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: -10px;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 18px;
  max-width: 620px;
  line-height: 1.6;
}

/* ==========================================================================
   WHO WE ARE
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 24px;
  background: var(--cream-warm);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4ede0, #e8dfc8);
  position: relative;
}

.team-initial {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(80px, 12vw, 120px);
  color: var(--green);
  line-height: 1;
}

.placeholder-tag {
  position: absolute;
  bottom: 20px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.team-role {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--green);
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 400;
}

.team-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

.team-bio strong {
  color: var(--ink);
  font-weight: 600;
}

.pricing-explainer {
  background: var(--cream-warm);
  border-left: 4px solid var(--green);
  padding: 28px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 820px;
  margin-top: 8px;
}

.pricing-explainer h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pricing-explainer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}

/* ==========================================================================
   WHY
   ========================================================================== */

.why-section {
  background: var(--cream-warm);
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31, 45, 40, 0.08);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-card p {
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing {
  padding: 90px 0;
  background: var(--cream);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-top: 44px;
  align-items: start;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid var(--line);
  transition: border 0.2s, transform 0.2s;
  position: relative;
}

.tier:hover {
  border-color: var(--green);
  transform: translateX(4px);
}

.tier.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.tier.featured h4 {
  color: white;
}

.tier.featured .tier-desc {
  color: rgba(255, 255, 255, 0.7);
}

.tier.featured .price {
  color: var(--gold);
}

.tier.featured .price-per {
  color: rgba(255, 255, 255, 0.6);
}

.tier-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
}

.tier-info {
  flex: 1;
}

.tier-info h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.tier-desc {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.55;
}

.tier-price {
  text-align: right;
  flex-shrink: 0;
}

.price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.price-per {
  font-size: 12px;
  color: var(--body);
  display: block;
  margin-top: 4px;
}

.pricing-aside h3 {
  font-size: 26px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.included-list {
  list-style: none;
  margin-bottom: 26px;
}

.included-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.included-list li:last-child {
  border-bottom: 0;
}

.check {
  width: 22px;
  height: 22px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison {
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  padding: 22px;
  border-left: 4px solid var(--gold);
}

.comparison h5 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.comparison-row .strike {
  color: var(--body);
  text-decoration: line-through;
}

.comparison-row.us {
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.extras-note {
  font-size: 13px;
  color: var(--body);
  margin-top: 20px;
  text-align: center;
}

.extras-note a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid var(--green);
}

.extras-note a:hover {
  color: var(--green-dark);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how {
  padding: 90px 0;
  background: var(--cream-warm);
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.step {
  text-align: left;
  position: relative;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 54px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
  opacity: 0.9;
}

.step h4 {
  font-size: 19px;
  margin-bottom: 8px;
}

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

.step::after {
  content: '';
  position: absolute;
  top: 26px;
  right: -16px;
  width: 32px;
  height: 1px;
  background-image: linear-gradient(to right, var(--green) 50%, transparent 50%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}

.step:last-child::after {
  display: none;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.12), transparent 70%);
  pointer-events: none;
}

.reviews .section-title {
  color: white;
}

.reviews .section-title em {
  color: var(--gold);
}

.reviews .section-eyebrow {
  color: var(--gold);
}

.reviews .section-eyebrow::before {
  background: var(--gold);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.review-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.5;
  color: white;
  margin-bottom: 22px;
  font-weight: 400;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-family: 'Fraunces', serif;
}

.author-info .name {
  font-weight: 600;
  color: white;
  font-size: 15px;
}

.author-info .loc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.google-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  transition: background 0.2s;
}

.google-bar:hover {
  background: rgba(255, 255, 255, 0.1);
}

.google-bar strong {
  color: var(--gold);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: 90px 0;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 16px;
}

.faq-side {
  position: sticky;
  top: 90px;
  align-self: start;
}

.faq-side h3 {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.faq-side h3 em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

.faq-side p {
  font-size: 16px;
  margin-bottom: 24px;
}

.helper {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.helper strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}

.helper a {
  color: var(--green);
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.helper a:hover {
  color: var(--green-dark);
}

.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--green);
}

.faq-q-text {
  padding-right: 16px;
}

.faq-toggle {
  font-size: 24px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1;
}

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

.faq-a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 22px;
}

.faq-a p {
  margin-bottom: 10px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-list-inline {
  margin: 0 0 12px 0;
  padding-left: 22px;
}

.faq-list-inline:last-child {
  margin-bottom: 0;
}

.faq-list-inline li {
  margin-bottom: 6px;
  padding-left: 4px;
}

.faq-list-inline li:last-child {
  margin-bottom: 0;
}

.faq-list-inline strong {
  color: var(--ink);
  font-weight: 600;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.1), transparent 70%);
  pointer-events: none;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}

.final-cta-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.final-cta-text p {
  max-width: none;
  margin: 0 0 32px;
}

.final-cta-text .cta-buttons {
  justify-content: flex-start;
}

.final-cta h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-buttons {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.final-cta .btn-primary {
  background: var(--green);
}

.final-cta .btn-primary:hover {
  background: var(--green-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: #14201c;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 300px;
}

footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
  font-size: 13px;
}

footer ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero .container,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pricing-explainer {
    padding: 22px 24px;
  }

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

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

  .step::after {
    display: none;
  }

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

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }

  .topbar {
    font-size: 12px;
    padding: 8px 0;
  }

  .topbar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .topbar-left {
    display: none;
  }

  nav {
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .logo-img {
    height: 38px;
  }

  .nav-cta {
    padding: 9px 16px;
    font-size: 13px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .hero-text {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .lead-card {
    padding: 28px 22px;
  }

  .lead-card h3 {
    font-size: 22px;
  }

  .proof-bar {
    padding: 32px 0;
  }

  .proof-bar .container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .proof-item .num {
    font-size: 32px;
  }

  section.content,
  .why-section,
  .pricing,
  .how,
  .reviews,
  .faq {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

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

  .tier {
    flex-direction: column;
    text-align: left;
    gap: 16px;
  }

  .tier-price {
    text-align: left;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .faq-side h3 {
    font-size: 26px;
  }

  .faq-side {
    position: static;
  }

  .faq-q {
    font-size: 17px;
    padding: 18px 0;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .final-cta-image img {
    height: 320px;
  }

  .final-cta-text .cta-buttons {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .final-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* CTA strips stack on mobile */
  .cta-strip {
    padding: 20px 0;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-strip-text {
    font-size: 15px;
  }

  .cta-strip-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-ghost,
  .cta-strip-actions .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  /* Show sticky mobile call bar */
  .mobile-call-bar {
    display: flex;
  }

  /* Bottom padding so the call bar doesn't cover the footer */
  footer {
    padding-bottom: 100px;
  }
}
