:root {
  --ink: #15151a;
  --muted: #5e6270;
  --panel: rgba(255, 255, 255, 0.82);
  --line: rgba(24, 42, 72, 0.12);
  --purple: #6416f6;
  --violet: #8d35ff;
  --blue: #006bdc;
  --cyan: #1eb7ff;
  --pink: #ff0f63;
  --green: #27ce61;
  --silver: #eef2f8;
  --shadow: 0 24px 70px rgba(34, 38, 56, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #f7f9fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(100, 22, 246, 0.08), transparent 34%),
    linear-gradient(250deg, rgba(30, 183, 255, 0.11), transparent 36%),
    #f8fafc;
}

body::selection {
  color: #fff;
  background: var(--purple);
}

button,
a,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 45px rgba(46, 51, 72, 0.13);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 55px rgba(38, 42, 58, 0.18);
}

.mobile-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: min(360px, calc(100% - 36px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  pointer-events: none;
}

.mobile-whatsapp a {
  display: grid;
  min-height: 62px;
  align-content: center;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(39, 206, 97, 0.96), rgba(24, 185, 87, 0.96)),
    #27ce61;
  box-shadow: 0 18px 36px rgba(19, 143, 67, 0.28);
  pointer-events: auto;
  text-decoration: none;
}

.mobile-whatsapp span {
  font-size: 0.72rem;
  font-weight: 950;
  opacity: 0.82;
  text-transform: uppercase;
}

.mobile-whatsapp strong {
  font-size: 0.96rem;
  line-height: 1.08;
}

.brand {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple) 52%, #e441ff);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.26), 0 10px 26px rgba(100, 22, 246, 0.3);
  transform: rotate(45deg);
}

.brand-mark::after {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: #fff;
  content: "";
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav button,
.header-cta,
.section-button,
.hero-actions button,
.promo-actions a,
.contact-form button,
.product-quote {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.nav button {
  padding: 0 13px;
  color: #353846;
  background: transparent;
}

.nav button:hover {
  background: rgba(100, 22, 246, 0.09);
  color: var(--purple);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #18b957);
  box-shadow: 0 12px 26px rgba(39, 206, 97, 0.28);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 0.92fr);
  gap: clamp(54px, 6vw, 86px);
  align-items: center;
  padding: 132px max(28px, calc((100vw - 1180px) / 2)) 72px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(17, 31, 51, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 31, 51, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 84%);
}

.hero::before {
  position: absolute;
  inset: 104px auto auto 0;
  width: 156px;
  height: 54px;
  background: var(--pink);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  content: "NEW";
  color: #fff;
  font-size: 1.58rem;
  font-weight: 950;
  line-height: 54px;
  text-align: center;
  z-index: 1;
}

.hero::after {
  position: absolute;
  right: 9vw;
  bottom: 8vh;
  width: 38vw;
  max-width: 520px;
  min-width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(30, 183, 255, 0.28);
  background-image:
    radial-gradient(circle at 14% 24%, rgba(30, 183, 255, 0.85) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 18%, rgba(100, 22, 246, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 42% 58%, rgba(255, 15, 99, 0.64) 0 3px, transparent 4px),
    linear-gradient(130deg, transparent 0 40%, rgba(0, 107, 220, 0.16) 40.5% 41%, transparent 41.5%),
    linear-gradient(55deg, transparent 0 32%, rgba(100, 22, 246, 0.16) 32.5% 33%, transparent 33.5%);
  clip-path: polygon(8% 15%, 78% 3%, 97% 46%, 64% 95%, 15% 74%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  max-width: 545px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 8.2ch;
  font-size: clamp(4.1rem, 7.15vw, 7.85rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.86;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: #3f4351;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 650;
  line-height: 1.48;
}

.hero-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action,
.section-button,
.promo-actions a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.primary-action,
.contact-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 18px 34px rgba(100, 22, 246, 0.24);
}

.secondary-action,
.section-button {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.signal-strip span {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #303442;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  justify-self: stretch;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.floating-panel {
  position: absolute;
  right: 22px;
  bottom: -28px;
  display: grid;
  min-width: min(280px, calc(100% - 44px));
  gap: 5px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(21, 21, 26, 0.92), rgba(100, 22, 246, 0.92));
  box-shadow: 0 22px 45px rgba(21, 21, 26, 0.24);
}

.floating-panel strong {
  font-size: 1.16rem;
}

.floating-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  margin-bottom: 14px;
  color: #171821;
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  font-weight: 950;
  line-height: 0.95;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.08;
}

.intro-band {
  background: linear-gradient(180deg, #fff, #f0f5fb);
}

.feature-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.trust-panel,
.stats-grid div,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(48, 52, 66, 0.08);
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
}

.feature-card {
  isolation: isolate;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 82% 28%, rgba(30, 183, 255, 0.16), transparent 28%);
  content: "";
}

.feature-graphic {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 112px;
  height: 112px;
  opacity: 0.92;
}

.feature-lines .feature-graphic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}

.feature-lines .feature-graphic::before {
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 107, 220, 0.92), rgba(141, 53, 255, 0.84)) 0 0 / 28px 28px no-repeat,
    linear-gradient(135deg, rgba(255, 15, 99, 0.86), rgba(141, 53, 255, 0.72)) 42px 12px / 28px 28px no-repeat,
    linear-gradient(135deg, rgba(30, 183, 255, 0.84), rgba(0, 107, 220, 0.72)) 76px 28px / 28px 28px no-repeat,
    linear-gradient(135deg, rgba(141, 53, 255, 0.8), rgba(255, 15, 99, 0.72)) 20px 64px / 28px 28px no-repeat,
    linear-gradient(135deg, rgba(0, 107, 220, 0.78), rgba(30, 183, 255, 0.72)) 62px 72px / 28px 28px no-repeat;
  border-radius: 8px;
  content: "";
  filter: drop-shadow(0 14px 18px rgba(0, 107, 220, 0.16));
}

.feature-deals .feature-graphic {
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(255, 15, 99, 0.95) 34% 66%, transparent 66%),
    linear-gradient(135deg, rgba(100, 22, 246, 0.22), rgba(30, 183, 255, 0.18));
  box-shadow: inset 0 0 0 2px rgba(100, 22, 246, 0.2);
}

.feature-deals .feature-graphic::before,
.feature-deals .feature-graphic::after {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  content: "";
}

.feature-deals .feature-graphic::before {
  top: 22px;
  left: 18px;
}

.feature-deals .feature-graphic::after {
  right: 18px;
  bottom: 22px;
}

.feature-city .feature-graphic {
  background:
    radial-gradient(circle at 26% 30%, var(--pink) 0 9px, transparent 10px),
    radial-gradient(circle at 76% 72%, var(--cyan) 0 9px, transparent 10px),
    linear-gradient(135deg, transparent 0 48%, rgba(0, 107, 220, 0.6) 48.5% 50%, transparent 50.5%);
}

.feature-city .feature-graphic::before,
.feature-city .feature-graphic::after {
  position: absolute;
  width: 42px;
  height: 54px;
  border: 3px solid rgba(100, 22, 246, 0.42);
  border-radius: 22px 22px 22px 5px;
  content: "";
  transform: rotate(-36deg);
}

.feature-city .feature-graphic::before {
  top: 8px;
  left: 4px;
}

.feature-city .feature-graphic::after {
  right: 4px;
  bottom: 8px;
}

.feature-icon {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 950;
}

.feature-card h3,
.feature-card p {
  position: relative;
  max-width: calc(100% - 122px);
}

.feature-grid p,
.product-card span,
.promo-copy p,
.trust-panel p,
.contact-section p,
footer span {
  color: var(--muted);
  line-height: 1.55;
}

.products-section {
  background: #f8fafc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(39, 46, 66, 0.12);
  cursor: pointer;
  transition:
    grid-column 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.product-card.large {
  grid-column: span 2;
  box-shadow: 0 24px 62px rgba(58, 23, 150, 0.22);
}

.promo-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(255, 15, 99, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1293 / 1084;
  background: linear-gradient(180deg, #eaf5ff, #cfe7fb);
  object-fit: contain;
  transition: transform 420ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card.large img {
  background:
    radial-gradient(circle at 74% 18%, rgba(30, 183, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #edf8ff, #c8e6fb);
}

.product-card div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding: 18px;
  border-top: 1px solid rgba(24, 42, 72, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.product-card p {
  margin-bottom: 6px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-quote {
  width: 100%;
  margin-top: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 12px 24px rgba(100, 22, 246, 0.18);
}

.product-quote:hover,
.primary-action:hover,
.contact-form button:hover {
  filter: saturate(1.14) brightness(1.02);
}

.promo-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(239, 242, 248, 0.72), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 70% 40%, rgba(30, 183, 255, 0.18), transparent 28%);
}

.promo-copy {
  max-width: 470px;
}

.promo-copy p {
  font-size: 1.03rem;
}

.promo-actions a {
  color: #fff;
  background: var(--green);
}

.promo-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promo-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 22px 50px rgba(37, 42, 60, 0.16);
}

.promo-image-link img {
  display: block;
  width: 100%;
  aspect-ratio: 1293 / 1084;
  background: #eef5fb;
  object-fit: contain;
  transition: transform 380ms ease;
}

.promo-image-link span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(21, 21, 26, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
}

.promo-image-link:hover img {
  transform: scale(1.025);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
  background: #10131b;
  color: #fff;
}

.trust-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(100, 22, 246, 0.36), rgba(0, 107, 220, 0.14)),
    #151924;
}

.trust-panel h2,
.contact-section h2,
.verification-section h2 {
  color: inherit;
}

.stats-grid {
  align-content: stretch;
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.stat-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(30, 183, 255, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(100, 22, 246, 0.08), transparent 46%);
  content: "";
  pointer-events: none;
}

.stat-graphic {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 92px;
  height: 92px;
  color: rgba(255, 255, 255, 0.86);
}

.stat-products .stat-graphic {
  background:
    linear-gradient(90deg, rgba(30, 183, 255, 0.72) 0 3px, transparent 3px 100%),
    linear-gradient(rgba(30, 183, 255, 0.72) 0 3px, transparent 3px 100%);
  background-size: 32px 32px;
  border: 2px solid rgba(30, 183, 255, 0.38);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 10px rgba(100, 22, 246, 0.12),
    0 0 36px rgba(30, 183, 255, 0.12);
}

.stat-products .stat-graphic::before,
.stat-products .stat-graphic::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  content: "";
}

.stat-products .stat-graphic::before {
  top: 12px;
  left: 14px;
}

.stat-products .stat-graphic::after {
  right: 14px;
  bottom: 16px;
}

.stat-promos .stat-graphic {
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(255, 15, 99, 0.92) 34% 66%, transparent 66%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.17), rgba(100, 22, 246, 0.24));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14);
}

.stat-promos .stat-graphic::before,
.stat-promos .stat-graphic::after {
  position: absolute;
  inset: 19px auto auto 14px;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  content: "";
}

.stat-promos .stat-graphic::after {
  inset: auto 14px 19px auto;
}

.stat-cities .stat-graphic {
  background:
    radial-gradient(circle at 24% 28%, var(--pink) 0 8px, transparent 9px),
    radial-gradient(circle at 72% 70%, var(--cyan) 0 8px, transparent 9px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.52) 48.5% 50%, transparent 50.5%);
}

.stat-cities .stat-graphic::before,
.stat-cities .stat-graphic::after {
  position: absolute;
  width: 36px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px 18px 18px 4px;
  content: "";
  transform: rotate(-36deg);
}

.stat-cities .stat-graphic::before {
  top: 4px;
  left: 0;
}

.stat-cities .stat-graphic::after {
  right: 0;
  bottom: 3px;
}

.stats-grid strong {
  position: relative;
  color: var(--pink);
  font-size: clamp(2.35rem, 3.5vw, 3.4rem);
  line-height: 0.9;
}

.stats-grid span {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.verification-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: stretch;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(30, 183, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #151924, #24145f 54%, #0f3f77);
}

.verification-copy {
  max-width: 560px;
  align-self: center;
}

.verification-copy p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

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

.verification-grid article {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  padding: 20px 20px 20px 84px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.verification-grid article::after {
  position: absolute;
  inset: auto 16px 14px auto;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(30, 183, 255, 0.22);
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 15, 99, 0.8) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 64%, rgba(30, 183, 255, 0.76) 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.28) 48.5% 50%, transparent 50.5%);
  clip-path: polygon(12% 8%, 88% 18%, 78% 92%, 20% 82%);
  content: "";
  opacity: 0.72;
}

.verification-grid article > span {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-weight: 950;
}

.verification-grid h3 {
  color: #fff;
}

.verification-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  background: linear-gradient(180deg, #f8fafc, #eef5fb);
}

.blog-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(30, 183, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #fff, #f8fafc);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: start;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(48, 52, 66, 0.08);
}

.blog-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle at 22% 28%, var(--pink) 0 6px, transparent 7px),
    radial-gradient(circle at 78% 68%, var(--cyan) 0 6px, transparent 7px),
    linear-gradient(135deg, transparent 0 48%, rgba(100, 22, 246, 0.22) 48.5% 50%, transparent 50.5%);
  clip-path: polygon(10% 8%, 92% 22%, 76% 92%, 16% 78%);
  content: "";
  opacity: 0.54;
}

.blog-card > span {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--pink);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h3 {
  max-width: 13ch;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  font-weight: 950;
  line-height: 0.98;
}

.blog-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.58;
}

.blog-card button {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: start;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  cursor: pointer;
  font-weight: 950;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(48, 52, 66, 0.08);
}

.faq-grid summary {
  cursor: pointer;
  padding: 20px;
  color: #171821;
  font-size: 1.02rem;
  font-weight: 950;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  float: right;
  color: var(--pink);
  content: "+";
  font-size: 1.3rem;
  line-height: 0.9;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid details p {
  margin: -4px 20px 20px;
  color: var(--muted);
  line-height: 1.58;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(100, 22, 246, 0.92), rgba(0, 107, 220, 0.9)),
    #6416f6;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #f7f9fc;
}

.contact-form button {
  margin-top: 6px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  background: #0c0e14;
  color: #fff;
}

@media (max-width: 980px) {
  .site-header {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .brand {
    min-width: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .promo-stage,
  .trust-section,
  .verification-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 166px;
  }

  .hero-content {
    max-width: none;
  }

  h1 {
    max-width: 10ch;
  }

  .feature-grid,
  .stats-grid,
  .promo-stack,
  .blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 88px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .header-cta {
    display: none;
  }

  .nav button {
    min-width: max-content;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 158px 18px 58px;
  }

  .hero::before {
    top: 120px;
    width: 118px;
    height: 42px;
    font-size: 1.18rem;
    line-height: 42px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.7rem);
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero-card img {
    min-height: 320px;
  }

  .floating-panel {
    position: static;
    min-width: 0;
    margin-top: 12px;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading.split {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-graphic {
    width: 86px;
    height: 86px;
  }

  .feature-card h3,
  .feature-card p {
    max-width: calc(100% - 92px);
  }

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

  .product-card.large {
    grid-column: auto;
  }

  .mobile-whatsapp {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .mobile-whatsapp a {
    min-height: 64px;
    padding: 10px 12px;
  }

  .mobile-whatsapp strong {
    font-size: 0.86rem;
  }
}
