/* ============================================================
   Hacked Website Fix — redesign
   Calm, trustworthy palette (emerald primary instead of alarm
   red), consistent typography (Sora headings / Inter body),
   one conversion path, even grids, consistent components.
   ============================================================ */

:root {
  --ink: #12283a;
  --ink-soft: #44607a;
  --ink-faint: #6b8299;

  --navy-950: #081726;
  --navy-900: #0a1e30;
  --navy-800: #0e2a42;
  --navy-700: #143852;

  --green-700: #0a7d56;
  --green-600: #0e9f6e;
  --green-500: #16b981;
  --green-100: #d8f5e8;
  --mint: #f0fbf6;

  --amber: #f5b942;
  --bg: #f6f9fb;
  --card: #ffffff;
  --line: #e3ebf1;
  --line-dark: rgba(255, 255, 255, 0.12);

  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(18, 40, 58, 0.06), 0 8px 24px rgba(18, 40, 58, 0.08);
  --shadow-lg: 0 2px 4px rgba(18, 40, 58, 0.08), 0 20px 48px rgba(18, 40, 58, 0.14);

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: inherit;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { color: var(--ink-soft); }

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

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

section { padding: 72px 0; }

.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { margin-bottom: 12px; }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

/* ---------- Buttons: one primary action style, used everywhere ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 99px;
  border: 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14, 159, 110, 0.35);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--line-dark);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); }

.btn-quiet {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-quiet:hover { border-color: var(--ink-faint); }

.btn-sm { padding: 9px 18px; font-size: 0.92rem; }

/* ---------- Emergency strip ---------- */

.topbar {
  background: var(--navy-950);
  color: #cfe3d9;
  font-size: 0.88rem;
  text-align: center;
  padding: 8px 16px;
}
.topbar strong { color: #fff; }
.topbar .dot { color: var(--green-500); margin: 0 8px; }

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 30, 48, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none !important;
}
.logo .fix { color: var(--green-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 2px solid var(--green-500); padding-bottom: 3px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(14, 159, 110, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero p.lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.13rem;
  margin: 18px 0 28px;
  max-width: 34em;
}
.hero p.lede strong { color: #fff; }

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d9f3e7;
  background: rgba(14, 159, 110, 0.18);
  border: 1px solid rgba(14, 159, 110, 0.45);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

/* URL quick-start: the single primary conversion path */
.urlstart {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border-radius: 99px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}
.urlstart input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1rem;
  padding: 8px 10px 8px 18px;
  color: var(--ink);
  background: transparent;
}
.urlstart input::placeholder { color: var(--ink-faint); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--green-500); flex: none; }

.paymarks {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.paymark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* Gavin card */
.gavin-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(4px);
}
.gavin-photo {
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #1c4a68, #0f3049);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
}
.gavin-photo svg { width: 42%; opacity: 0.85; }
.gavin-photo img { width: 100%; height: 100%; object-fit: cover; }
.gavin-card blockquote {
  color: #eaf4ef;
  font-size: 1.02rem;
  line-height: 1.55;
}
.gavin-card cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Logo bar (even padding above & below) ---------- */

.logobar { background: #fff; border-bottom: 1px solid var(--line); padding: 34px 0; }
.logobar .label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.logobar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 64px;
  filter: grayscale(1);
  opacity: 0.65;
}
.brandmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brandmark.light { font-weight: 400; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.94rem; }

/* ---------- Reviews ---------- */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { display: flex; gap: 3px; color: var(--amber); }
.review p { font-size: 0.96rem; flex: 1; }
.review footer { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.review footer span { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.83rem; }
.reviews-cta { text-align: center; margin-top: 34px; }

/* ---------- What we fix: even 5 x 2 grid ---------- */

.fix-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.fix-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.fix-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.fix-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--mint);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.fix-card h3 { font-size: 0.99rem; margin-bottom: 6px; }
.fix-card p { font-size: 0.86rem; line-height: 1.5; }

/* ---------- Platform band ---------- */

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.platform-pill {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ---------- About / Meet Gavin ---------- */

.about { background: var(--navy-900); color: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about p { color: rgba(255, 255, 255, 0.75); margin-bottom: 16px; }
.about .kicker { background: rgba(14, 159, 110, 0.18); color: #a9e8cd; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--green-500);
}
.stat span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Happy-customer photo strip ---------- */

.photostrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photostrip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Guarantee band: ONE consistent full-width component ---------- */

.guarantee {
  background: linear-gradient(120deg, var(--green-700), var(--green-600));
  color: #fff;
  padding: 56px 0;
}
.guarantee-grid {
  display: flex;
  align-items: center;
  gap: 36px;
}
.guarantee .badge-img {
  flex: none;
  width: 138px;
  height: 138px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}
.guarantee h2 { font-size: 1.55rem; margin-bottom: 8px; }
.guarantee p { color: rgba(255, 255, 255, 0.88); max-width: 46em; }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 24px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green-600);
  transition: transform 0.15s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; font-size: 0.96rem; }

/* ---------- Contact ---------- */

.contact { background: #fff; border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-side h2 { margin-bottom: 14px; }
.contact-side ul { list-style: none; margin: 22px 0; }
.contact-side li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.contact-side li svg { color: var(--green-600); flex: none; margin-top: 3px; }

form.lead {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
form.lead .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.lead label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  display: grid;
  gap: 6px;
}
form.lead input, form.lead textarea {
  font: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
}
form.lead input:focus, form.lead textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 159, 110, 0.15);
}
form.lead textarea { resize: vertical; min-height: 110px; }
form.lead .form-marks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}
form.lead .form-marks .paymark { color: var(--ink-faint); }
.form-success {
  display: none;
  background: var(--mint);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ---------- Pricing ---------- */

.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero p { color: rgba(255, 255, 255, 0.75); max-width: 40em; margin: 14px auto 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--green-600);
  box-shadow: var(--shadow-lg);
}
.price-card .flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 10px 0 4px;
}
.price-card .price small { font-size: 0.95rem; font-weight: 500; color: var(--ink-faint); }
.price-card .desc { font-size: 0.92rem; margin-bottom: 20px; }
.price-card ul { list-style: none; margin: 0 0 26px; flex: 1; }
.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 6px 0;
}
.price-card li svg { color: var(--green-600); flex: none; margin-top: 4px; }
.price-card .btn { justify-content: center; }

.addons { background: var(--mint); border: 1px solid var(--green-100); border-radius: var(--radius-lg); padding: 30px; margin-top: 36px; }
.addons h3 { margin-bottom: 14px; }
.addons ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.addons li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink-soft); }
.addons li svg { color: var(--green-700); flex: none; margin-top: 4px; }

/* ---------- Services page ---------- */

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.svc-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.svc-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.95rem; margin-bottom: 16px; }
.svc-card ul { list-style: none; margin-bottom: 22px; }
.svc-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding: 5px 0;
}
.svc-card li svg { color: var(--green-600); flex: none; margin-top: 4px; }

/* ---------- CTA band ---------- */

.cta-band { background: var(--navy-900); color: #fff; text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.72); margin-bottom: 28px; max-width: 38em; margin-inline: auto; }

/* ---------- Get started ---------- */

.start-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.start-panel .urlstart { box-shadow: none; border: 1.5px solid var(--line); max-width: none; }

/* ---------- Footer: finished, roomy, clear targets ---------- */

footer.site {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 32px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
footer.site h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 4px; }
footer.site ul a {
  color: rgba(255, 255, 255, 0.72);
  display: inline-block;
  padding: 6px 0; /* generous tap targets */
}
footer.site ul a:hover { color: #fff; text-decoration: none; }
.footer-brand p { margin-top: 14px; max-width: 30em; color: rgba(255, 255, 255, 0.55); }
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.footer-trust .paymark { color: rgba(255, 255, 255, 0.65); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .fix-grid { grid-template-columns: repeat(2, 1fr); } /* 10 cards stay even: 2 x 5 */
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { order: -1; }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--line-dark);
    padding: 12px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; align-items: stretch; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-links .btn { width: 100%; justify-content: center; margin-top: 10px; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .fix-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .urlstart { flex-direction: column; border-radius: var(--radius-lg); }
  .urlstart .btn { justify-content: center; }
  .photostrip { grid-template-columns: 1fr; }
  .guarantee-grid { flex-direction: column; text-align: center; }
  form.lead .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .addons ul { grid-template-columns: 1fr; }
}
