@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

.main-site {
  background: var(--light-gray);
}

.home-page,
.marketing-page {
  --brand-ink: #0f1b2d;
  --brand-primary: #2154ff;
  --brand-primary-dark: #1739b8;
  --brand-accent: #f2a65a;
  --brand-mint: #17a7a1;
  --surface: #ffffff;
  --surface-muted: #f5f2ed;
  --surface-alt: #eef1f6;
  --text-muted: #5c6776;
  --border-soft: rgba(15, 27, 45, 0.12);
  --shadow-lg: 0 36px 90px rgba(15, 27, 45, 0.18);
  --shadow-md: 0 20px 50px rgba(15, 27, 45, 0.12);
  --shadow-sm: 0 10px 24px rgba(15, 27, 45, 0.08);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  --font-body: "Manrope", "Plus Jakarta Sans", sans-serif;
  font-family: var(--font-body);
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(33, 84, 255, 0.14), transparent 60%),
    radial-gradient(750px 420px at 85% 0%, rgba(242, 166, 90, 0.22), transparent 60%),
    linear-gradient(180deg, #f7f2ea 0%, #f7f9fc 45%, #f4f7fb 100%);
  color: var(--brand-ink);
}

.home-page h1,
.home-page h2,
.home-page h3,
.marketing-page h1,
.marketing-page h2,
.marketing-page h3 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  letter-spacing: -0.02em;
}

.home-page p,
.marketing-page p {
  color: var(--text-muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand-primary);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 2000;
}

.skip-link:focus {
  left: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 27, 45, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-ink);
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2154ff, #17a7a1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(33, 84, 255, 0.22);
}

.brand__name {
  font-size: 1.05rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--brand-ink);
}

.site-nav a {
  color: inherit;
}

.nav-link {
  font-weight: 600;
  opacity: 0.82;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link--pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(33, 84, 255, 0.1);
  border: 1px solid rgba(33, 84, 255, 0.2);
  font-size: 0.9rem;
}

.nav-cta {
  padding: 0.7rem 1.6rem;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "v";
  font-size: 0.65rem;
  opacity: 0.6;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 12px;
  display: none;
  gap: 6px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.nav-dropdown__menu a {
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.nav-dropdown__menu a:hover {
  background: rgba(15, 27, 45, 0.06);
}

.nav-dropdown[open] .nav-dropdown__menu {
  display: grid;
}

.nav-profile {
  position: relative;
}

.nav-profile summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 45, 0.12);
  background: rgba(15, 27, 45, 0.04);
}

.nav-profile summary::-webkit-details-marker {
  display: none;
}

.nav-profile__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
  z-index: 20;
}

.nav-profile[open] .nav-profile__menu {
  display: grid;
  gap: 4px;
}

.nav-profile__menu a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.nav-profile__menu a:hover {
  background: rgba(15, 27, 45, 0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--brand-ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(33, 84, 255, 0.3), transparent 70%);
  top: -160px;
  right: -120px;
}

.hero::after {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(23, 167, 161, 0.3), transparent 70%);
  bottom: -150px;
  left: -80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  margin-bottom: 16px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(33, 84, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hero__content p {
  font-size: 1.05rem;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  font-weight: 600;
}

.hero__trust strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-ink);
}

.hero__trust span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero__logos {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 700;
  color: rgba(15, 27, 45, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero-screen {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}

.hero-screen__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.hero-screen__status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(23, 167, 161, 0.12);
  color: #0b5c56;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-screen__body {
  display: grid;
  gap: 12px;
}

.hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 27, 45, 0.04);
}

.hero-metric__label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-metric strong {
  font-size: 1.1rem;
  color: var(--brand-ink);
}

.hero-screen__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.hero-chip {
  background: rgba(33, 84, 255, 0.12);
  color: var(--brand-ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  border: 1px solid rgba(33, 84, 255, 0.18);
}

.section {
  padding: 90px 0;
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.section__header {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
  max-width: 720px;
}

.section__eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--brand-primary);
}

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

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  min-height: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.text-link {
  font-weight: 700;
  color: var(--brand-primary);
}

.platform {
  background: rgba(255, 255, 255, 0.55);
}

.platform__features {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.platform__feature {
  background: rgba(15, 27, 45, 0.04);
  padding: 16px 18px;
  border-radius: 16px;
}

.platform__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform__visual {
  display: grid;
  gap: 16px;
}

.platform-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 18px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
}

.platform-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.platform-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(33, 84, 255, 0.14);
  color: var(--brand-primary);
  font-size: 0.75rem;
}

.platform-card__rows {
  display: grid;
  gap: 12px;
}

.platform-card__rows div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-weight: 600;
}

.platform-card--light {
  background: linear-gradient(135deg, rgba(33, 84, 255, 0.08), rgba(23, 167, 161, 0.08));
}

.platform-card__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand-primary);
}

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.workflow__step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
}

.workflow__number {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-primary);
  letter-spacing: 0.2em;
}

.proof {
  background: rgba(15, 27, 45, 0.02);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.proof__stats {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.proof__stats strong {
  font-size: 1.2rem;
  color: var(--brand-ink);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  text-align: center;
}

.logo-wall span {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed rgba(15, 27, 45, 0.18);
  font-weight: 700;
  color: var(--brand-ink);
}

.quote-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.quote-card p {
  font-size: 1.1rem;
  color: var(--brand-ink);
}

.quote-card footer {
  margin-top: 14px;
  font-weight: 600;
  color: var(--brand-primary);
}

.resource-card {
  background: linear-gradient(135deg, rgba(242, 166, 90, 0.16), rgba(255, 255, 255, 0.9));
}

.about__panel {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.about__panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.cta-band {
  background: linear-gradient(135deg, rgba(33, 84, 255, 0.12), rgba(23, 167, 161, 0.12));
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact__card {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 84, 255, 0.2);
  background: rgba(33, 84, 255, 0.08);
}

.contact__form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}

.contact__form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-ink);
}

.contact__form input,
.contact__form textarea {
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid rgba(33, 84, 255, 0.35);
  border-color: rgba(33, 84, 255, 0.4);
}

.data-use__note {
  margin-top: 18px;
  color: var(--text-muted);
}

.site-footer {
  padding: 40px 0 50px;
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
}

.footer__inner {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  font-weight: 600;
}

.footer__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.25);
  z-index: 999;
}

.home-page .btn-primary,
.marketing-page .btn-primary {
  background: var(--brand-primary);
  color: #ffffff;
}

.home-page .btn,
.marketing-page .btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-page .btn:focus-visible,
.marketing-page .btn:focus-visible,
.home-page a:focus-visible,
.marketing-page a:focus-visible,
.home-page summary:focus-visible,
.marketing-page summary:focus-visible {
  outline: 2px solid rgba(33, 84, 255, 0.4);
  outline-offset: 3px;
}

.home-page .btn-primary:hover,
.marketing-page .btn-primary:hover {
  background: var(--brand-primary-dark);
  box-shadow: 0 12px 24px rgba(33, 84, 255, 0.28);
  transform: translateY(-2px);
}

.home-page .btn-secondary,
.marketing-page .btn-secondary {
  background: var(--brand-ink);
  color: #ffffff;
}

.home-page .btn-secondary:hover,
.marketing-page .btn-secondary:hover {
  background: #07101c;
}

.home-page .btn-outline,
.marketing-page .btn-outline {
  border-color: var(--brand-ink);
  color: var(--brand-ink);
}

.home-page .btn-outline:hover,
.marketing-page .btn-outline:hover {
  background: var(--brand-ink);
  color: #ffffff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.post-hero {
  padding: 110px 0 40px;
  background: linear-gradient(180deg, rgba(33, 84, 255, 0.08) 0%, #f7f9fc 100%);
}

.post-hero__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.post-hero__lead {
  font-size: 1.1rem;
  max-width: 720px;
}

.post-body {
  padding: 40px 0 80px;
}

.post-body h2,
.post-body h3 {
  margin-top: 26px;
}

.post-body p {
  margin-top: 12px;
}

@media (min-width: 961px) {
  .nav-dropdown:hover .nav-dropdown__menu {
    display: grid;
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-dropdown__menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 8px 0 0;
  }

  .site-nav details {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown__menu a {
    width: 100%;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .section__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__visual {
    order: -1;
  }

  .info-card {
    min-height: auto;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
