:root {
  --bg: #f7f8fb;
  --bg-2: #eef2ff;
  --card: #ffffff;
  --card-2: #f4f7ff;
  --stroke: rgba(12, 20, 40, 0.08);
  --text: #0c1428;
  --muted: #5c6575;
  --accent: #ff5f6d;
  --accent-2: #ffc371;
  --danger: #f05454;
  --shadow: 0 24px 60px rgba(12, 20, 40, 0.12);
  --radius: 18px;
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% -10%, rgba(255, 95, 109, 0.12), transparent 42%),
    radial-gradient(circle at 90% 12%, rgba(255, 195, 113, 0.16), transparent 38%),
    radial-gradient(circle at 50% 80%, rgba(116, 162, 255, 0.12), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-wrap {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 16px 0 80px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10px;
      border-radius: var(--radius);

}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: var(--font-display);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, #ffaf7b 80%);
  box-shadow: 0 0 16px rgba(255, 95, 109, 0.6);
}

.logo {
  font-size: 16px;
}

.pill {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
}

.nav {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(2) {
  margin: 6px 0;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(255, 95, 109, 0.35);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--text);
  background: rgba(12, 20, 40, 0.05);
}

.nav-cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0c1428;
  padding: 10px 14px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 40px 0 0;
}

.hero {
  position: relative;
  padding: 10px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 8px 0 14px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn.primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #0c1428;
  border: none;
  box-shadow: 0 14px 40px rgba(255, 95, 109, 0.28);
}

.btn.ghost {
  background: rgba(12, 20, 40, 0.04);
  color: var(--text);
}

.btn.full {
  width: 100%;
}

.btn.small {
  padding: 10px 12px;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12, 20, 40, 0.18);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(12, 20, 40, 0.04);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel {
  background: linear-gradient(170deg, #fff, #fff5f2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 95, 109, 0.12);
  color: var(--text);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 95, 109, 0.35);
}

.panel-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  background: rgba(12, 20, 40, 0.03);
  border: 1px solid var(--stroke);
}

.label {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.metric {
  margin: 2px 0 0;
  font-weight: 700;
  font-size: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
}

.chip.success {
  background: rgba(22, 242, 179, 0.08);
  color: #0c6845;
  border-color: rgba(22, 242, 179, 0.35);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 6px 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px dashed var(--stroke);
}

.step:last-child {
  border-bottom: none;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 95, 109, 0.12);
}

.small {
  color: var(--muted);
  margin: 2px 0 0;
  font-size: 13px;
}

.panel-cta {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: linear-gradient(130deg, rgba(255, 95, 109, 0.12), rgba(255, 195, 113, 0.12));
}

.panel-cta p {
  margin: 0 0 8px;
  color: var(--muted);
}

.ticker {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  margin-top: 26px;
  background: rgba(12, 20, 40, 0.02);
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  padding: 12px 0 12px 12px;
  white-space: nowrap;
  animation: scroll 18s linear infinite;
}

.ticker-track span {
  color: #404a5e;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.ticker-track.clone {
  position: absolute;
  left: 100%;
  top: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.bg-orb {
  position: absolute;
  filter: blur(100px);
  opacity: 0.6;
}

.orb-1 {
  width: 240px;
  height: 240px;
  background: #ffafbd;
  top: -30px;
  left: -60px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #ffc371;
  bottom: -60px;
  right: -40px;
}

.section {
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.9));
}

.section-head h2 {
  margin: 8px 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  font-family: var(--font-display);
}

.grid {
  display: grid;
  gap: 14px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 195, 113, 0.12), transparent 60%), var(--card);
  position: relative;
  overflow: hidden;
}

.card-top h3 {
  margin: 8px 0 6px;
}

.card ul {
  padding-left: 16px;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.service {
  min-height: 220px;
}

.steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
  padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: var(--card-2);
    display: grid;
    grid-template-columns: auto;
    gap: 12px;
    justify-content: center;
    align-items: start;
    justify-items: center;
    text-align: center;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 95, 109, 0.1);
  border: 1px solid rgba(255, 95, 109, 0.35);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent);
}

.proof {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.highlight {
  grid-column: span 2;
  background: linear-gradient(130deg, rgba(255, 95, 109, 0.12), rgba(255, 195, 113, 0.12));
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.stat .metric {
  font-size: 28px;
}

.story ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.story ul li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.banner {
  background: linear-gradient(120deg, rgba(255, 195, 113, 0.14), rgba(255, 95, 109, 0.14));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.offers-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.offer ul {
  margin: 12px 0;
  padding-left: 16px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 14px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-toggle::after {
  content: "+";
  font-weight: 800;
  color: var(--accent);
  transition: transform 0.2s;
}

.accordion-item.active .accordion-toggle::after {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 14px;
  color: var(--muted);
}

.accordion-item.active .accordion-panel {
  padding: 0 14px 14px;
}

.form-section {
  background: radial-gradient(circle at 10% 10%, rgba(255, 195, 113, 0.16), transparent 60%), var(--card-2);
}

.form-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(12, 20, 40, 0.02);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 95, 109, 0.35);
  border-color: rgba(255, 95, 109, 0.35);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.footer {
  margin-top: 40px;
  border-top: 1px solid var(--stroke);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    border-radius: var(--radius);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0px;
    right: 0px;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    padding: 12px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-wrap {
    width: 92vw;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
  }

  .hero-badges {
    flex-direction: column;
  }

  .ticker-track {
    animation-duration: 12s;
  }

  .highlight {
    grid-column: span 1;
  }
}
