:root {
  --background: hsl(220 20% 97%);
  --foreground: hsl(222 47% 11%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(222 47% 11%);
  --primary: hsl(217 91% 50%);
  --primary-fg: hsl(0 0% 100%);
  --muted: hsl(220 9% 46%);
  --accent: hsl(25 95% 53%);
  --accent-fg: hsl(0 0% 100%);
  --border: hsl(220 13% 91%);
  --danger: hsl(0 84% 60%);
  --radius: 0.75rem;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --hero-gradient: linear-gradient(135deg, hsl(217 91% 10%) 0%, hsl(217 91% 20%) 50%, hsl(222 47% 15%) 100%);
  --card-shadow: 0 4px 24px -4px hsl(217 91% 50% / 0.08);
  --card-shadow-hover: 0 8px 32px -4px hsl(217 91% 50% / 0.15);
  --glow-accent: 0 0 40px hsl(25 95% 53% / 0.15);
  --container: 80rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] {
  scroll-margin-top: 5rem;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-main { flex: 1; }

.container-x {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.icon-svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(217 91% 55%), hsl(200 91% 65%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }
.relative { position: relative; z-index: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.92; }
.btn-sm { height: 2.25rem; padding: 0 0.75rem; font-size: 0.875rem; }
.btn-xl { height: 3.5rem; padding: 0 2.5rem; font-size: 1.125rem; border-radius: 0.75rem; }
.btn-accent {
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 58%));
  color: var(--accent-fg);
  box-shadow: var(--glow-accent);
}
.btn-primary {
  width: 100%;
  height: 2.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 0.5rem;
}
.btn-outline {
  width: 100%;
  height: 2.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
}
.btn-hero-outline {
  border: 2px solid hsl(210 40% 90% / 0.45);
  background: hsl(0 0% 100% / 0.08);
  color: #fff;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.brand span { color: var(--accent); }
.nav-desktop { display: none; align-items: center; gap: 1.5rem; }
.nav-desktop a {
  font-size: 0.875rem;
  color: var(--muted);
}
.nav-desktop a:hover { color: var(--foreground); }
.menu-toggle {
  background: none;
  border: 0;
  padding: 0.25rem;
  color: var(--foreground);
  cursor: pointer;
}
.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--card);
}
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}
.nav-mobile-inner a {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle, .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: var(--hero-gradient);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, hsl(217 91% 50% / 0.15), transparent 60%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: hsl(25 95% 53% / 0.2);
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-lead { color: hsl(220 14% 80%); font-size: 1.125rem; margin-bottom: 1rem; }
.hero-sub { color: hsl(220 14% 60%); font-size: 0.9rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions.center { justify-content: center; }
.hero-media { display: none; position: relative; }
.hero-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.hero-photo img { width: 100%; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(222 47% 8% / 0.6), transparent);
}
.hero-float {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--card-shadow);
  animation: float 3s ease-in-out infinite;
}
.hero-float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 58%));
}
.hero-float strong { display: block; font-size: 0.9rem; }
.hero-float span { font-size: 0.75rem; color: var(--muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-media { display: block; }
}

/* Trust */
.trust {
  padding: 4rem 0;
  background: var(--card);
  border-block: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}
.trust-icon { color: var(--primary); margin-bottom: 0.75rem; }
.trust-icon .icon-svg { width: 2rem; height: 2rem; }
.trust-icon.accent-orange { color: var(--accent); }
.trust-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
}
.trust-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Sections */
.section { padding: 6rem 0; background: var(--background); }
.section-dark {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(180deg, hsl(222 47% 8%) 0%, hsl(217 91% 12%) 100%);
  color: #fff;
}
.section-bg {
  position: absolute;
  inset: 0;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
}
.section-bg.faint img { opacity: 0.03; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); max-width: 36rem; margin-inline: auto; }
.section-dark .section-head p { color: hsl(220 14% 65%); }

.about-grid { display: grid; gap: 4rem; align-items: center; }
.about-grid > div > h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.about-grid > div > .muted { margin-bottom: 2rem; }
.feature-grid {
  display: grid;
  gap: 1rem;
}
.feature-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
}
.feature-icon { color: var(--primary); margin-bottom: 0.75rem; }
.feature-icon .icon-svg { width: 2rem; height: 2rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted); }
.about-media { display: none; }
.about-media img { border-radius: 1rem; box-shadow: var(--card-shadow); width: 100%; }

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-media { display: block; }
}

.type-grid {
  display: grid;
  gap: 1.5rem;
}
.type-card {
  background: hsl(0 0% 100% / 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(220 13% 91% / 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.type-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 58%));
}
.type-icon .icon-svg { width: 1.5rem; height: 1.5rem; }
.type-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.type-card p { font-size: 0.875rem; color: hsl(220 14% 60%); }

@media (min-width: 640px) {
  .type-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .type-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.how-grid { display: grid; gap: 3rem; align-items: center; }
.steps-grid { display: grid; gap: 1.5rem; }
.step-card { text-align: center; }
.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsl(217 91% 50% / 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  position: relative;
}
.step-icon .icon-svg { width: 1.75rem; height: 1.75rem; }
.step-icon span {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 58%));
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--muted); }
.how-media { display: none; }
.how-media img { width: 100%; border-radius: 1rem; box-shadow: var(--card-shadow); }

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card { text-align: left; }
  .step-icon { margin: 0 0 1rem; }
}
@media (min-width: 1024px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-media { display: block; }
}

.pricing { background: var(--card); }
.plan-grid {
  display: grid;
  gap: 1.5rem;
}
.plan-card {
  position: relative;
  background: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.plan-card.is-popular {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--card-shadow-hover);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 58%));
}
.plan-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.plan-price { margin-bottom: 1rem; }
.plan-price strong { font-family: var(--font-display); font-size: 1.875rem; }
.plan-price span { font-size: 0.875rem; color: var(--muted); }
.plan-card.is-popular .plan-price span { color: hsl(0 0% 100% / 0.7); }
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.75rem;
  flex: 1;
}
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.plan-card.is-popular li { color: hsl(0 0% 100% / 0.9); }
.plan-card li .icon-svg { width: 1rem; height: 1rem; color: var(--primary); margin-top: 0.15rem; }
.plan-card.is-popular li .icon-svg { color: var(--accent); }

@media (min-width: 640px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .plan-grid { grid-template-columns: repeat(4, 1fr); }
}

.who { position: relative; overflow: hidden; }
.audience-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.audience-card {
  width: 10rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem 1rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.audience-card .icon-svg { width: 2.5rem; height: 2.5rem; color: var(--primary); }
.audience-card p { font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; }

.quote-grid { display: grid; gap: 2rem; }
.quote-card {
  background: hsl(0 0% 100% / 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(220 13% 91% / 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--accent); }
.stars .icon-svg { width: 1rem; height: 1rem; }
.quote-card p { font-size: 0.9rem; color: hsl(220 14% 75%); margin-bottom: 1.5rem; }
.quote-card strong { display: block; }
.quote-card span { font-size: 0.75rem; color: hsl(220 14% 55%); }

@media (min-width: 768px) {
  .quote-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.faq-wrap { max-width: 48rem; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon-svg { transition: transform 0.2s; }
.faq-item[open] summary .icon-svg { transform: rotate(180deg); }
.faq-item p { color: var(--muted); padding-bottom: 1.1rem; }

.cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at bottom left, hsl(25 95% 53% / 0.12), transparent 60%),
    hsl(222 47% 8% / 0.88);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; margin-bottom: 1.5rem; }
.cta p { color: hsl(220 14% 70%); font-size: 1.125rem; max-width: 40rem; margin: 0 auto 2rem; }

.contact-grid { display: grid; gap: 4rem; }
.contact-grid h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.contact-rows { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-rows > div { display: flex; align-items: center; gap: 0.75rem; }
.contact-rows a:hover { text-decoration: underline; }
.contact-form {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--card-shadow);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"] {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0 0.85rem;
  background: var(--background);
}
.contact-form input:focus {
  outline: 2px solid hsl(217 91% 50% / 0.35);
  border-color: var(--primary);
}
.hp { position: absolute; left: -9999px; }
.field-error { color: var(--danger); font-size: 0.8rem; }
.form-note { font-size: 0.75rem; text-align: center; color: var(--muted); }
.success-box {
  background: hsl(142 76% 94%);
  border: 1px solid hsl(142 72% 70%);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.success-box h3 { margin-bottom: 0.25rem; }

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.site-footer {
  background: linear-gradient(180deg, hsl(222 47% 8%) 0%, hsl(217 91% 12%) 100%);
  color: #fff;
  padding: 3rem 0 0;
  border-top: 1px solid hsl(220 13% 91% / 0.2);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.footer-grid h4 { margin-bottom: 0.75rem; color: hsl(0 0% 90%); }
.footer-grid p, .footer-grid a { font-size: 0.875rem; color: hsl(220 14% 55%); }
.footer-grid a:hover { color: var(--accent); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 4rem; }
.footer-bottom {
  border-top: 1px solid hsl(220 13% 91% / 0.2);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: hsl(220 14% 45%); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 95% 58%));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px hsl(25 95% 53% / 0.35);
  animation: pulse-glow 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .floating-cta { display: none; }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: 5rem;
}
.not-found h1 { font-size: 3rem; margin-bottom: 1rem; }
.not-found p { color: var(--muted); margin-bottom: 1rem; }
.not-found a { color: var(--primary); text-decoration: underline; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.7s ease forwards;
}
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
