/* =================================================================
   SERVICE4FREE — Landing styles
   Type: Manrope · Colors: Orange #F58220 · Navy #152136 · Cream #F7F5F1
   ================================================================= */

:root {
  --orange: #F58220;
  --orange-deep: #E0701A;
  --orange-soft: #FFE9D5;
  --navy: #152136;
  --navy-soft: #2A3550;
  --ink: #1B2740;
  --muted: #5C677D;
  --line: #E5E1D8;
  --cream: #F7F5F1;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(21,33,54,.06), 0 2px 8px rgba(21,33,54,.04);
  --shadow-md: 0 4px 12px rgba(21,33,54,.08), 0 12px 32px rgba(21,33,54,.06);
  --shadow-lg: 0 12px 32px rgba(21,33,54,.12), 0 32px 80px rgba(21,33,54,.10);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.022em; color: var(--navy); margin: 0; line-height: 1.08; }
h1 { font-size: clamp(36px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4.2vw, 48px); }
h3 { font-size: 20px; line-height: 1.25; }
p  { margin: 0; }

.hi-light { color: var(--orange); }

/* -------- BUTTONS ---------------------------------------------------*/
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(245,130,32,.35); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(245,130,32,.45); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #0c1626; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid rgba(21,33,54,.15); }
.btn-ghost:hover { background: rgba(21,33,54,.05); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* -------- TOP BAR ---------------------------------------------------*/
.topbar {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.topbar.is-scrolled { background: rgba(247,245,241,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; }
.topbar-nav { display: flex; gap: 26px; flex: 1; justify-content: center; font-weight: 600; font-size: 14px; color: var(--navy); }
.topbar-nav a { position: relative; padding: 4px 0; }
.topbar-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.topbar-nav a:hover::after { transform: scaleX(1); }
@media (max-width: 800px) { .topbar-nav { display: none; } }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line1 { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo-line2 { font-weight: 600; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; opacity: .55; margin-top: 3px; }

/* -------- HERO ------------------------------------------------------*/
.hero { position: relative; padding: 40px 0 80px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -10% -5% auto -5%; height: 78%;
  background-size: cover; background-position: center 35%;
  filter: saturate(.9);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,33,54,.55) 0%, rgba(21,33,54,.7) 50%, var(--cream) 100%);
}
.hero-tint { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(245,130,32,.18), transparent 50%); pointer-events: none; }
.hero-grid {
  position: relative;
  max-width: 1240px; margin: 0 auto; padding: 60px 24px 0;
  display: grid; grid-template-columns: 1fr 380px; gap: 56px;
  align-items: end;
  min-height: 580px;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-bg { height: 68%; }
}
.hero-copy { color: #fff; max-width: 720px; }
.hero-copy h1 { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  padding: 8px 16px 8px 12px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 22px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.hero-sub { font-size: 18px; line-height: 1.55; opacity: .92; margin: 22px 0 30px; max-width: 580px; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-cta .btn-ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,.18); }

.hero-trust { display: flex; align-items: center; gap: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.trust-num { font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.trust-num span { color: var(--orange); margin-left: 2px; }
.trust-label { font-size: 12px; line-height: 1.4; opacity: .85; }
.trust-label strong { color: #fff; }
.trust-divider { width: 1px; height: 38px; background: rgba(255,255,255,.2); }
.trust-stars { display: flex; gap: 2px; color: var(--orange); margin-bottom: 4px; }

/* hero card */
.hero-card {
  background: #fff; padding: 26px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--orange); }
.hero-card-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #F0FAF3; color: #1F7A3F;
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  align-self: flex-start;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #28A745; position: relative; }
.pulse::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: #28A745; opacity: .35; animation: pulse 1.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.8); opacity: .5; } 100% { transform: scale(2); opacity: 0; } }
.hero-card h3 { font-size: 22px; }
.hero-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: flex; flex-direction: column; gap: 10px; }
.hero-steps li { counter-increment: step; padding-left: 36px; position: relative; font-size: 14.5px; color: var(--muted); padding-top: 4px; min-height: 28px; }
.hero-steps li b { color: var(--navy); font-weight: 700; }
.hero-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-deep);
  font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-foot { font-size: 12.5px; color: var(--muted); text-align: center; }
.hero-card-foot b { color: var(--navy); }

/* -------- TICKER ---------------------------------------------------*/
.ticker {
  background: var(--navy); color: #fff;
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: ticker 40s linear infinite; width: max-content; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; padding: 0 28px; }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* -------- SECTIONS --------------------------------------------------*/
.section { max-width: 1240px; margin: 0 auto; padding: 100px 24px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 12px; background: var(--orange-soft); border-radius: var(--radius-pill);
}
.kicker.light { background: rgba(255,255,255,.18); color: #fff; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 16px; }

/* -------- SERVICES --------------------------------------------------*/
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .services-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-img {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  position: relative;
  transition: transform .4s ease;
}
.svc-card:hover .svc-img { transform: scale(1.04); }
.svc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(21,33,54,.4) 100%); }
.svc-num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.svc-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.svc-body p { font-size: 14px; color: var(--muted); flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; font-size: 13.5px; margin-top: 10px; }
.svc-link svg { transition: transform .2s ease; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* -------- WHY -------------------------------------------------------*/
.why { padding-top: 40px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff; padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-soft); color: var(--orange-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.why-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* -------- BOOK ------------------------------------------------------*/
.book {
  background: var(--navy);
  max-width: none; padding: 100px 24px;
  position: relative; overflow: hidden;
}
.book::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(245,130,32,.18), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(245,130,32,.10), transparent 50%);
}
.book-grid {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; gap: 36px; } }
.book-copy { color: #fff; }
.book-copy h2 { color: #fff; }
.book-copy p { color: rgba(255,255,255,.78); font-size: 17px; margin-top: 18px; max-width: 500px; }
.book-bullets { list-style: none; padding: 0; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.book-bullets li, .pro-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.92);
}
.book-bullets li svg, .pro-bullets li svg {
  flex-shrink: 0;
  background: var(--orange); color: #fff; border-radius: 50%;
  width: 22px; height: 22px; padding: 4px;
}
.book-call {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 16px 20px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill); width: fit-content;
}
.book-call span { font-size: 14px; color: rgba(255,255,255,.7); }
.book-call a { color: var(--orange); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.book-call a:hover { color: #fff; }

/* form */
.book-form, .pros-form {
  background: #fff; padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.book-form .form-foot { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 14px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #FAFAF7; transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(245,130,32,.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.field.has-err input, .field.has-err select { border-color: #E0414A; background: #FFF5F5; }
.field small { color: #E0414A; font-size: 12px; font-weight: 600; }

.book-form h3, .pros-form h3 { font-size: 22px; margin-bottom: 4px; }

.sent { text-align: center; padding: 22px 12px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sent-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: #ECFDF3; color: #1F7A3F;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  animation: pop .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sent h3 { color: var(--navy); }
.sent p { color: var(--muted); font-size: 15px; max-width: 320px; }

/* -------- PROS ------------------------------------------------------*/
.pros { padding-top: 0; }
.pros-card {
  background: linear-gradient(135deg, #fff 0%, #fff7f0 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.pros-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,32,.15), transparent 70%);
}
@media (max-width: 900px) { .pros-card { grid-template-columns: 1fr; padding: 36px; gap: 32px; } }
.pros-left { position: relative; }
.pros-left p { color: var(--muted); font-size: 16px; margin-top: 16px; }
.pro-bullets { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.pro-bullets li { color: var(--ink); }
.pros-form { background: #fff; padding: 28px; }

/* -------- FOOTER ----------------------------------------------------*/
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 24px 24px; }
.footer-top { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 3fr; gap: 48px; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1240px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
}

/* -------- STICKY MOBILE CTA -----------------------------------------*/
.sticky-call {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--orange); color: #fff;
  padding: 14px 18px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 15px;
  display: none; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(245,130,32,.45);
  z-index: 100;
}
@media (max-width: 600px) { .sticky-call { display: flex; } body { padding-bottom: 70px; } }
