/* GullyVisit landing — Gully design system translated to plain CSS. */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Lato:wght@400;600;700;800&display=swap');

:root {
  --brand-50: #fbf5fb;
  --brand-100: #f6e5f5;
  --brand-200: #edc7ea;
  --brand-300: #de9dda;
  --brand-400: #c769c4;
  --brand-600: #7e2b85;
  --brand-700: #611f69;
  --brand-800: #4a154b;
  --brand-900: #350e38;
  --brand-950: #210725;
  --sky-50: #effbfe;
  --sky-100: #d9f3fc;
  --sky-500: #36c5f0;
  --sky-700: #1487ad;
  --signal-50: #effcf6;
  --signal-100: #d7f7e7;
  --signal-500: #2eb67d;
  --signal-700: #187d56;
  --ink: #020618;
  --ink-2: #45556c;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --danger: #e11d48;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Lato', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--brand-700); text-decoration: none; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

.gradient-text {
  background: linear-gradient(90deg, var(--brand-600), var(--sky-500), var(--signal-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font: 700 11px var(--font-body);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-600);
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; }
h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
h2 { font-size: clamp(28px, 4vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: 19px; font-weight: 700; }
p.lead { font-size: 18px; color: var(--ink-2); }
p { color: var(--ink-2); }

/* Buttons — one filled primary per view, outline secondary. */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 15px var(--font-body);
  border-radius: 12px; padding: 13px 22px; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  border: none;
}
.btn-primary {
  background: var(--brand-600); color: #fff;
  box-shadow: 0 8px 22px rgba(126, 43, 133, .30);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); }
.btn-outline {
  background: #fff; color: var(--brand-700);
  border: 1.5px solid var(--brand-200);
}
.btn-outline:hover { border-color: var(--brand-400); }
.btn-ghost { background: transparent; color: var(--brand-700); padding: 13px 10px; }
.btn-white { background: #fff; color: var(--brand-700); }
.btn-white:hover { transform: translateY(-1px); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--slate-100); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font: 800 21px var(--font-display); color: var(--ink); letter-spacing: -0.02em; }
.brand img { width: 34px; height: 26px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav-links a { font: 600 14.5px var(--font-body); color: var(--ink-2); }
.nav-links a:hover { color: var(--brand-700); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }

/* Sections */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head p { margin-top: 10px; }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: 16px;
  box-shadow: 0 3px 14px rgba(2, 6, 24, .04); padding: 24px;
}
.chip {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  margin-bottom: 14px;
}
.chip-brand { background: var(--brand-100); }
.chip-sky { background: var(--sky-100); }
.chip-signal { background: var(--signal-100); }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font: 700 10.5px var(--font-body); letter-spacing: .08em; text-transform: uppercase;
  background: var(--brand-50); color: var(--brand-700);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Hero */
.hero { padding: 84px 0 72px; background: linear-gradient(180deg, var(--brand-50), #fff 65%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero .lead { margin: 20px 0 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 16px; font: 600 13px var(--font-body); color: var(--slate-500); }
.hero-note span { color: var(--signal-700); }

/* Phone mockup */
.phone {
  width: 320px; margin: 0 auto; background: #0f172b; border-radius: 40px; padding: 10px;
  box-shadow: 0 40px 80px rgba(2, 6, 24, .25);
}
.phone-screen { background: var(--slate-50); border-radius: 32px; padding: 18px 14px; }
.ps-title { font: 800 17px var(--font-display); letter-spacing: -0.02em; }
.ps-sub { font: 600 10.5px var(--font-body); color: var(--slate-500); margin-bottom: 12px; }
.ps-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.ps-kpi { background: #fff; border: 1px solid var(--slate-100); border-radius: 12px; padding: 10px; }
.ps-kpi b { display: block; font: 800 16px var(--font-display); }
.ps-kpi span { font: 600 9.5px var(--font-body); color: var(--slate-500); }
.ps-stop { background: #fff; border: 1px solid var(--slate-100); border-radius: 12px; padding: 12px; }
.ps-stop .row { display: flex; align-items: center; gap: 8px; }
.ps-avatar { width: 34px; height: 34px; border-radius: 10px; background: var(--brand-100); color: var(--brand-700); display: flex; align-items: center; justify-content: center; font: 700 12px var(--font-display); }
.ps-stop b { font: 700 12.5px var(--font-display); display: block; }
.ps-stop small { font: 600 9.5px var(--font-body); color: var(--slate-500); }
.ps-btn { margin-top: 10px; background: var(--brand-600); color: #fff; border-radius: 9px; text-align: center; padding: 8px; font: 700 11.5px var(--font-body); }

/* Stats band */
.stats { border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); background: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 0; }
.stat b { font: 800 26px var(--font-display); letter-spacing: -0.02em; display: block; }
.stat span { font: 600 13px var(--font-body); color: var(--slate-500); }

/* Steps */
.step-num { font: 800 15px var(--font-display); width: 34px; height: 34px; border-radius: 999px; background: var(--brand-600); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

/* Dark band */
.dark-band { background: linear-gradient(120deg, var(--brand-800), var(--brand-950)); border-radius: 24px; padding: 48px; color: #fff; }
.dark-band .eyebrow { color: var(--brand-400); }
.dark-band h2 { color: #fff; }
.dark-band p { color: #90a1b9; }

/* Pricing */
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card .amount { font: 800 40px var(--font-display); letter-spacing: -0.02em; }
.price-card .amount small { font: 600 14px var(--font-body); color: var(--slate-500); letter-spacing: 0; }
.price-card ul { list-style: none; margin: 18px 0 24px; padding: 0; flex: 1; }
.price-card li { padding: 7px 0 7px 26px; position: relative; font-size: 14.5px; color: var(--ink-2); }
.price-card li::before { content: '✓'; position: absolute; left: 2px; color: var(--signal-500); font-weight: 800; }
.popular { border: 2px solid var(--brand-600); box-shadow: 0 16px 40px rgba(126,43,133,.14); }
.popular-flag { position: absolute; top: -13px; left: 24px; background: var(--brand-600); color: #fff; font: 700 10.5px var(--font-body); letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }

table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.compare th, table.compare td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--slate-100); }
table.compare th { font: 700 13px var(--font-body); text-transform: uppercase; letter-spacing: .06em; color: var(--slate-500); }
table.compare td:first-child { color: var(--ink-2); }
table.compare td { color: var(--ink); font-weight: 600; }

/* FAQ */
details { border-bottom: 1px solid var(--slate-100); padding: 18px 0; }
details summary { font: 700 16px var(--font-display); cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
details summary::after { content: '+'; color: var(--brand-600); font-weight: 800; }
details[open] summary::after { content: '–'; }
details p { margin: 12px 0 0; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--brand-600), var(--brand-800)); border-radius: 24px; padding: 56px 48px; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0 0 28px; }

/* Forms */
.field label { display: block; font: 700 11px var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--slate-500); margin: 0 0 7px; }
.field { margin-bottom: 16px; }
input, select, textarea {
  width: 100%; border: none; background: var(--slate-100); border-radius: 10px;
  padding: 13px 14px; font: 600 14.5px var(--font-body); color: var(--ink); outline: none;
}
input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 1.5px var(--brand-600), 0 0 0 5px rgba(126,43,133,.12); }

/* Footer */
footer { background: var(--brand-950); color: #90a1b9; margin-top: 72px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
footer .brand { color: #fff; }
footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
footer a { display: block; color: #90a1b9; font-size: 14.5px; padding: 4px 0; }
footer a:hover { color: var(--brand-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Legal pages */
.legal h2 { font-size: 22px; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 15.5px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone { margin-top: 20px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .dark-band, .cta-band { padding: 36px 24px; }
}
