/*
Theme Name: Get Leads Fast
Theme URI: https://getleadsfast.co.uk
Author: Get Leads Fast
Description: One-page landing site for Get Leads Fast — done-for-you websites for UK tradesmen. Sova-style dark theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: get-leads-fast
*/

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Container ───────────────────────────────────────────── */
.glf-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.glf-container--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section label ───────────────────────────────────────── */
.glf-label {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.glf-label span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}
.glf-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
}

/* ── Headings ────────────────────────────────────────────── */
.glf-h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.glf-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Cards ───────────────────────────────────────────────── */
.glf-card {
  background: #0d0d1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  transition: border-color 0.2s;
}
.glf-card:hover { border-color: rgba(255,255,255,0.15); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #3b5bff;
  color: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-blue:hover { background: #4f6bff; transform: translateY(-1px); color: #fff; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: none;
  transition: background 0.2s;
}
.btn-white:hover { background: #e8e8e8; color: #000; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); color: #fff; }

.btn-pricing-filled {
  display: block;
  width: 100%;
  text-align: center;
  background: #3b5bff;
  color: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  transition: background 0.2s;
}
.btn-pricing-filled:hover { background: #4f6bff; color: #fff; }

.btn-pricing-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-pricing-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); color: #fff; }

/* ── NAV ─────────────────────────────────────────────────── */
.glf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.glf-nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.glf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.glf-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.glf-nav__logo-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3b5bff 0%, #6b8aff 100%);
  display: flex; align-items: center; justify-content: center;
}
.glf-nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.glf-nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.glf-nav__links a:hover { color: #fff; }

/* ── HERO ────────────────────────────────────────────────── */
.glf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}
.glf-hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(50,80,255,0.35) 0%, rgba(80,40,200,0.15) 40%, transparent 70%);
}
.glf-hero__glow-l {
  position: absolute; top: 5%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(40,60,220,0.12); filter: blur(100px); pointer-events: none;
}
.glf-hero__glow-r {
  position: absolute; top: 5%; right: -5%;
  width: 450px; height: 450px; border-radius: 50%;
  background: rgba(100,40,220,0.1); filter: blur(100px); pointer-events: none;
}
.glf-hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 900px; padding: 0 1.5rem;
}
.glf-hero__eyebrow {
  display: flex; justify-content: center; margin-bottom: 1.75rem;
}
.glf-hero__eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 100px;
  padding: 0.35rem 1rem 0.35rem 0.5rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.65);
}
.glf-hero__eyebrow-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25); font-size: 0.6rem;
}
.glf-hero__h1 {
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 3.875rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.glf-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto 0.75rem; line-height: 1.65;
}
.glf-hero__support {
  font-size: 1rem; color: rgba(255,255,255,0.45);
  line-height: 1.65; margin-bottom: 2rem;
}
.glf-hero__btns {
  display: flex; gap: 0.875rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}
.glf-hero__mockup {
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  box-shadow: 0 -4px 60px rgba(50,80,255,0.15), 0 0 0 1px rgba(255,255,255,0.05);
}
.glf-hero__mockup img { width: 100%; display: block; }

/* ── SECTIONS ────────────────────────────────────────────── */
.glf-section { padding: 100px 0; background: #000; }
.glf-section--first { padding-top: 120px; }
.glf-section__head { text-align: center; margin-bottom: 3rem; }

/* ── Steps 3-col ─────────────────────────────────────────── */
.glf-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.glf-step { padding: 2rem; }
.glf-step__num {
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem; letter-spacing: 0.02em;
}
.glf-step__title {
  font-weight: 600; font-size: 1.125rem; color: #fff;
  margin-bottom: 0.75rem; line-height: 1.3;
}
.glf-step__body { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── Asymmetric grid ─────────────────────────────────────── */
.glf-asym {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.glf-asym__tall {
  grid-column: 1; grid-row: 1 / 3;
  padding: 2rem;
  display: flex; flex-direction: column;
  min-height: 340px;
}
.glf-asym__visual {
  flex: 1; border-radius: 0.75rem; margin-bottom: 1.5rem;
  background: linear-gradient(160deg, rgba(59,91,255,0.12) 0%, rgba(100,60,255,0.08) 100%);
  border: 1px solid rgba(59,91,255,0.15);
  display: flex; align-items: center; justify-content: center;
  min-height: 160px;
}
.glf-asym__visual-inner { text-align: center; padding: 1rem; }
.glf-asym__visual-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.glf-asym__visual-label { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.glf-asym__card { padding: 1.75rem; }
.glf-asym__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.glf-asym__title { font-weight: 600; font-size: 1.0625rem; color: #fff; margin-bottom: 0.5rem; }
.glf-asym__body { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── Benefits 2×2 ────────────────────────────────────────── */
.glf-benefits-wrap { position: relative; max-width: 700px; margin: 0 auto; }
.glf-benefits-hub {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #3b5bff, #6b8aff);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 0 30px rgba(59,91,255,0.4);
}
.glf-benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.glf-benefit { padding: 2rem; text-align: center; }
.glf-benefit__icon { font-size: 2rem; margin-bottom: 1rem; }
.glf-benefit__title { font-weight: 600; font-size: 1rem; color: #fff; margin-bottom: 0.5rem; line-height: 1.3; }
.glf-benefit__body { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── Pricing ─────────────────────────────────────────────── */
.glf-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem;
}
.glf-pricing-card { padding: 2rem; position: relative; }
.glf-pricing-card--popular { border-color: rgba(59,91,255,0.4) !important; }
.glf-pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #3b5bff; color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 0.2rem 0.875rem; border-radius: 100px; white-space: nowrap;
}
.glf-pricing-name { font-weight: 600; font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }
.glf-pricing-price { font-weight: 700; font-size: 2.25rem; color: #fff; margin-bottom: 0.625rem; }
.glf-pricing-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.5rem; }
.glf-pricing-bullets { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.glf-pricing-bullets li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
}
.glf-pricing-check {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(59,91,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; font-size: 0.55rem; color: #6b8aff;
}

/* ── Integrations hub ────────────────────────────────────── */
.glf-integrations-wrap { position: relative; max-width: 640px; margin: 0 auto 2.5rem; }
.glf-integrations-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.glf-integrations-hub {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, #3b5bff, #6b8aff);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 0 40px rgba(59,91,255,0.5);
}
.glf-integrations-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem 8rem; padding: 1.5rem 3rem;
  position: relative; z-index: 1;
}
.glf-integration-item {
  padding: 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; text-align: center;
}
.glf-integration-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(59,91,255,0.15); border: 1px solid rgba(59,91,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.glf-integration-label { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* ── FAQ ─────────────────────────────────────────────────── */
.glf-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.glf-faq-item { overflow: hidden; }
.glf-faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none; border: none; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 0.9375rem; text-align: left; line-height: 1.4;
  cursor: pointer;
}
.glf-faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1;
}
.glf-faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem; color: rgba(255,255,255,0.6); line-height: 1.7;
}
.glf-faq-item.open .glf-faq-answer { display: block; }

/* ── Final CTA ───────────────────────────────────────────── */
.glf-cta {
  padding: 120px 0; background: #000;
  position: relative; overflow: hidden; text-align: center;
}
.glf-cta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(50,80,255,0.2) 0%, rgba(80,40,200,0.1) 40%, transparent 70%);
}
.glf-cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.glf-cta__h2 {
  font-weight: 500; font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: #fff; line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.glf-cta__body {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 580px; margin: 0 auto 2.5rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.glf-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 32px;
}
.glf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.glf-footer__logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.875rem; font-weight: 600; font-size: 0.9375rem; color: #fff; }
.glf-footer__logo-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, #3b5bff, #6b8aff);
  display: flex; align-items: center; justify-content: center;
}
.glf-footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 220px; margin-bottom: 1.5rem; }
.glf-footer__newsletter-label { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.55); margin-bottom: 0.625rem; }
.glf-footer__newsletter-form { display: flex; gap: 0.5rem; }
.glf-footer__newsletter-input {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 0.5rem 0.75rem; color: #fff; font-size: 0.875rem; outline: none;
  font-family: 'Inter', sans-serif;
}
.glf-footer__newsletter-btn {
  background: #3b5bff; color: #fff; border: none; border-radius: 8px;
  padding: 0.5rem 0.875rem; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.glf-footer__col-title { font-size: 0.8125rem; font-weight: 600; color: #fff; margin-bottom: 1rem; letter-spacing: 0.03em; }
.glf-footer__col a {
  display: block; font-size: 0.875rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.glf-footer__col a:hover { color: #fff; }
.glf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem; text-align: center;
  font-size: 0.8125rem; color: rgba(255,255,255,0.3);
}

/* ── Utility ─────────────────────────────────────────────── */
.glf-center { display: flex; justify-content: center; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .glf-nav__links { display: none; }
  .glf-steps { grid-template-columns: 1fr; }
  .glf-asym { grid-template-columns: 1fr; }
  .glf-asym__tall { grid-column: 1; grid-row: auto; min-height: auto; }
  .glf-benefits-grid { grid-template-columns: 1fr; }
  .glf-benefits-hub { display: none; }
  .glf-pricing-grid { grid-template-columns: 1fr; }
  .glf-integrations-grid { grid-template-columns: 1fr 1fr; gap: 2rem 2rem; padding: 1rem; }
  .glf-integrations-svg { display: none; }
  .glf-integrations-hub { display: none; }
  .glf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .glf-footer__grid { grid-template-columns: 1fr; }
  .glf-integrations-grid { grid-template-columns: 1fr; }
}


/* ── MOBILE FIXES (updated) ─────────────────────────────── */
@media (max-width: 768px) {
  .glf-nav__links { display: none; }
  .glf-container, .glf-container--wide { padding: 0 1rem; }
  .glf-section { padding: 64px 0; }
  .glf-section--first { padding-top: 80px; }
  .glf-steps { grid-template-columns: 1fr; }
  .glf-asym {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem;
  }
  .glf-asym__tall {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: auto;
    width: 100%;
  }
  .glf-asym__card {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100%;
  }
  .glf-benefits-wrap { max-width: 100%; }
  .glf-benefits-grid { grid-template-columns: 1fr; }
  .glf-benefits-hub { display: none; }
  .glf-pricing-grid { grid-template-columns: 1fr; }
  .glf-integrations-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 1rem; }
  .glf-integrations-svg { display: none; }
  .glf-integrations-hub { display: none; }
  .glf-footer__grid { grid-template-columns: 1fr 1fr; }
  .glf-hero__h1 { font-size: 2.25rem; }
  .glf-hero__btns { flex-direction: column; align-items: center; }
  .glf-h2 { font-size: 1.875rem; }
}
@media (max-width: 480px) {
  .glf-footer__grid { grid-template-columns: 1fr; }
  .glf-asym__tall, .glf-asym__card, .glf-step, .glf-benefit, .glf-pricing-card { width: 100%; }
  .glf-section { padding: 48px 0; }
  .glf-hero__h1 { font-size: 2rem; }
}