:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-2: #fff2e9;
  --text: #182233;
  --muted: #5c6472;
  --line: rgba(24, 34, 51, 0.1);
  --primary: #ff3f8e;
  --primary-dark: #d92d76;
  --primary-soft: rgba(255, 63, 142, 0.1);
  --accent: #1f2a3d;
  --accent-2: #2c3750;
  --cream: #fff3df;
  --success: #1f9d61;
  --shadow: 0 18px 50px rgba(31, 42, 61, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 63, 142, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at left 20%,
      rgba(255, 232, 205, 0.7),
      transparent 28%
    ),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 63, 142, 0.15);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin: 18px 0 20px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 800px;
}
.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 34, 51, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 1.15rem;
}
.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(24, 34, 51, 0.08);
}
.nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  color: var(--accent);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  cursor: pointer;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--accent-2);
  transition: 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.hero {
  padding: 42px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}
.hero-copy p {
  max-width: 760px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff74af);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 63, 142, 0.25);
}
.btn-secondary {
  background: #fff;
  color: var(--accent);
  border-color: rgba(24, 34, 51, 0.12);
  box-shadow: var(--shadow);
}
.microcopy {
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: 12px;
}
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 242, 233, 0.95)
  );
  border: 1px solid rgba(24, 34, 51, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 63, 142, 0.2), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo {
  width: 100%;
  /* margin: 0 auto 26px;
  filter: drop-shadow(0 18px 40px rgba(24, 34, 51, 0.18)); */
}
.hero-highlights {
  display: grid;
  gap: 14px;
}
.highlight {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(24, 34, 51, 0.08);
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #ff77b0);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 63, 142, 0.24);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.stat {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 34, 51, 0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.stat img{
  width: 3vw;
}
.panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 34, 51, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(255, 247, 240, 0.9)
  );
  border: 1px solid rgba(24, 34, 51, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ffc36d);
}
.card p:last-child {
  margin-bottom: 0;
}
.card img{
  width: 3vw;
}
.timeline {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(24, 34, 51, 0.08);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  align-items: start;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent), #33415f);
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 42, 61, 0.22);
}
.step ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.benefit {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(24, 34, 51, 0.08);
  box-shadow: var(--shadow);
}
.benefit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.benefit-tag {
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--primary-dark);
  font-weight: 900;
  border: 1px solid rgba(24, 34, 51, 0.08);
}

.cta-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--accent), #2a3450 58%, #3b2b45 100%);
  color: #fff;
  padding: 32px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: -70px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.17),
    transparent 65%
  );
  border-radius: 50%;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
}
.disclosure {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  margin-top: 34px;
  align-items: stretch;
}
.contact-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(255, 247, 240, 0.95)
  );
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(24, 34, 51, 0.08);
  box-shadow: var(--shadow);
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.contact-item .icon-box {
  background: linear-gradient(135deg, var(--accent), #3a4767);
}

form {
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 34, 51, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 63, 142, 0.12);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.form-note {
  font-size: 0.95rem;
  color: var(--muted);
}
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}
.form-status.success {
  display: block;
  color: #0f6d42;
  background: rgba(31, 157, 97, 0.12);
  border: 1px solid rgba(31, 157, 97, 0.25);
}
.form-status.error {
  display: block;
  color: #a12648;
  background: rgba(255, 63, 142, 0.1);
  border: 1px solid rgba(255, 63, 142, 0.2);
}

footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(24, 34, 51, 0.08);
  background: rgba(255, 255, 255, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 28px;
  padding: 24px 0 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(24, 34, 51, 0.08);
}
.footer-links,
.social-links {
  display: grid;
  gap: 10px;
}
.footer-links a,
.social-links a {
  color: var(--muted);
  font-weight: 600;
}
.footer-links a:hover,
.social-links a:hover {
  color: var(--primary-dark);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 34, 51, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }
  .stat img{
  width: 8vw;
}
.card img{
  width: 8vw;
}
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    padding: 12px;
    background: rgba(255, 250, 245, 0.98);
    border: 1px solid rgba(24, 34, 51, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    text-align: center;
  }
  .cards,
  .benefits-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .step-num {
    width: 56px;
    height: 56px;
  }
  .section {
    padding: 78px 0;
  }
}

/* form submit */

.form-status {
  margin: 12px 0;
  font-size: 14px;
}

.form-status.error {
  color: #d93025;
}

.form-status.success {
  color: #188038;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 16, 28, 0.65);
  backdrop-filter: blur(5px);
}

.form-popup.active {
  display: flex;
}

.form-popup-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 42px 32px 32px;
  border-radius: 20px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  animation: popupShow 0.3s ease;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #1b2233;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.popup-icon {
  display: flex;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff2e7a;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
}

.form-popup-content h3 {
  margin: 0 0 12px;
  color: #1b2233;
  font-size: 26px;
}

.form-popup-content p {
  margin: 0 0 24px;
  color: #626978;
  line-height: 1.6;
}

@keyframes popupShow {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* .login-btn{background: #ffe5e9;}
.explore-btn{background: #fff;} */

#how-it-works {
  padding-top: 0px;
  padding-bottom: 10px;
}
#works {
  padding: 50px 0;
}
.contactus {
  padding-top: 0px;
}
