:root {
  --bg: #ffffff;
  --ink: #1c1c28;
  --ink-soft: #5e5c76;
  --ink-muted-light: #969595;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --accent: #38bdf8;
  --mint: #c9f0e1;
  --bg-card: #dbeafe;
  --white: #ffffff;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 20px 45px rgba(53, 63, 121, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

main > section + section {
  padding: 40px 0 40px;
}

a {
  color: inherit;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--primary-dark);
  color: var(--primary-dark);
}
.btn-lang {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 10px 6px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.lang-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ---------- Header ---------- */
.site-header {
  padding: 18px 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .btn-primary {
  background: var(--accent);
  color: var(--white);
}
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand-mark {
  height: 42px;
  width: 42px;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 20px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
}
.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.nav a:hover {
  color: var(--white);
}
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
  justify-content: flex-end;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  padding: 16px 0 20px;
  background: var(--primary);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.2);
  width: 100%;
}
.mobile-nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
}
.mobile-nav .btn {
  width: min(260px, 90%);
  margin: 8px auto 0;
}
.menu-open .mobile-nav {
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 50px;
  background: var(--white);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-copy p {
  color: var(--ink-soft);
  max-width: 520px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f1ff;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-dark);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}
.hero-actions .btn {
  width: min(260px, 100%);
}
.hero-note {
  color: var(--ink-muted-light);
  font-size: 0.9rem;
}
.hero-art {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.hero-art svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(37, 99, 235, 0.22));
}

/* ---------- Trust strip ---------- */
.logo-strip {
  padding: 44px 0;
  background: #f8f8f8;
}
.logo-meta {
  display: flex;
  justify-content: center;
  color: var(--ink-muted-light);
  font-size: 1.3rem;
  padding-bottom: 22px;
  text-align: center;
}
.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  text-align: center;
  min-width: 150px;
}
.stat .num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark);
}
.stat .label {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------- Section heads ---------- */
.section-head {
  margin: 0 auto 24px;
  text-align: center;
  width: min(90vw, 100%);
  max-width: 620px;
}
.section-head h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--ink-soft);
}

/* ---------- Features (problem / solution) ---------- */
.features {
  padding: 75px 0 90px;
  background:
    radial-gradient(circle at left 150%, #e8efff 0 60%, transparent 60%) no-repeat,
    var(--white);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: 35px;
  border: 2px solid var(--primary-dark);
  padding: 52px 28px 28px;
  box-shadow: 0 14px 30px rgba(50, 60, 110, 0.12);
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 40px rgba(50, 60, 110, 0.18);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: grid;
  place-items: center;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  display: block;
}
.feature-card h3 {
  font-family: "Outfit", sans-serif;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.feature-card ul {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  list-style: disc outside;
  padding-left: 22px;
  margin: 0 auto 12px;
  text-align: left;
  max-width: 240px;
}
.feature-card > p {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ---------- Surfaces band ---------- */
.band {
  background: var(--primary);
  color: var(--white);
  padding: 75px 0;
}
.band .section-head h2,
.band .section-head p {
  color: var(--white);
}
.band .section-head p {
  color: rgba(255, 255, 255, 0.85);
}
.surface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.surface-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 30px 26px;
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.surface-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.16);
}
.surface-card .s-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.surface-card .s-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-dark);
}
.surface-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.surface-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ---------- Insights ---------- */
.insights {
  padding: 80px 0 60px;
  background: var(--white);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(26px, 4vw, 40px);
  width: min(92vw, 100%);
  max-width: 940px;
  padding-top: 26px;
  margin: 0 auto;
}
.insight-card {
  background: var(--white);
  border-radius: 35px;
  border: 2px solid var(--primary-dark);
  padding: 36px 26px 40px;
  box-shadow: 0 18px 40px rgba(50, 60, 110, 0.14);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insight-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 50px rgba(50, 60, 110, 0.2);
}
.insight-card .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f1ff 0%, #cfe2ff 100%);
}
.insight-card .icon svg {
  width: 34px;
  height: 34px;
  color: var(--primary-dark);
}
.insight-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: #24324b;
}
.insight-card p {
  color: var(--ink-soft);
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 0%, #e8efff 0 35%, transparent 35%) no-repeat,
    var(--white);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 36px auto 0;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 28px;
  border: 2px solid #e7e4f7;
  padding: 34px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(50, 60, 110, 0.16);
}
.price-card.featured {
  border-color: var(--primary-dark);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.18);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 999px;
}
.price-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.price-amount {
  font-family: "Outfit", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin: 14px 0 4px;
}
.price-amount span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted-light);
  margin-top: 8px;
}
.price-amount-free {
  font-size: 2.2rem;
}
.price-overage {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  min-height: 2.9em;
  margin: 14px 0 18px;
}
.feature-label {
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-align: left;
  text-transform: uppercase;
}
.price-card .trial {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
  margin: 0 auto 24px;
  max-width: 240px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card li svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
  flex: 0 0 auto;
  margin-top: 3px;
}
.price-card .btn {
  width: 100%;
}
.price-footer {
  margin-top: auto;
}

/* ---------- How it works ---------- */
.how {
  padding: 40px 0 90px;
  background: var(--white);
}
.how-card {
  background: linear-gradient(180deg, #7dd3fc 0%, #2563eb 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 52px) clamp(22px, 5vw, 48px) clamp(44px, 5vw, 60px);
  text-align: center;
  box-shadow: var(--shadow);
  width: min(92vw, 760px);
  margin: 0 auto;
}
.how-card h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--white);
}
.how-card > p {
  margin-bottom: 32px;
  color: var(--white);
}
.how-card ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto 32px;
  max-width: 460px;
}
.how-card li {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px 26px;
  text-align: center;
}
.how-card li span {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 5px 22px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.how-card li h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin: 10px 0 6px;
  color: var(--white);
  font-weight: 500;
}
.how-card li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
.how-card .btn-outline {
  background: var(--white);
}

/* ---------- Final CTA ---------- */
.cta {
  padding: 30px 0 90px;
  text-align: center;
}
.cta-inner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px) 24px;
  width: min(92vw, 1000px);
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.cta-inner h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}
.cta-inner .btn {
  background: var(--white);
  color: var(--primary-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 60px 0 40px;
  color: rgba(255, 255, 255, 0.7);
  background: #1f3d5c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-name {
  font-size: 1.3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  max-width: 280px;
}
.footer-column h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--accent);
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.social-links a:hover {
  color: var(--accent);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy {
  animation: fade-up 0.8s ease both;
}
.hero-art {
  animation: fade-up 0.9s ease 0.1s both;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy p {
    margin: 0 auto;
  }
  .hero-pill,
  .hero-actions {
    justify-content: center;
  }
  .surface-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .hero {
    padding: 60px 0 30px;
  }
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 360px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-mark {
  display: block;
}

.footer-logo-name {
  color: var(--white);
  font-size: 1.3rem;
}
