:root {
  --blue: #0b66d8;
  --blue-dark: #07316f;
  --orange: #ff8a00;
  --yellow: #ffc928;
  --green: #20b15a;
  --purple: #6545d8;
  --ink: #112448;
  --muted: #64748b;
  --line: #dbe4f0;
  --soft: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 52, 92, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 52%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 54px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 228, 240, .8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--blue);
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 42px);
  color: #1f2f4d;
  font-weight: 750;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 4px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  transition: width .2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(6, 39, 90, .12);
}

.btn-yellow {
  background: var(--yellow);
  color: #4a3400;
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
}

.btn-blue,
.btn-product {
  background: var(--blue);
  color: var(--white);
}

.btn-small {
  min-height: 38px;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.14fr);
  align-items: stretch;
  min-height: clamp(520px, 68vh, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 201, 40, .22), transparent 28%),
    linear-gradient(105deg, #ffffff 0%, #eef7ff 46%, #bfe8ff 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 7vw, 86px) clamp(22px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 6vw, 82px);
  line-height: .94;
  letter-spacing: 0;
}

.hero h1::first-line {
  color: var(--blue-dark);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #32425f;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  color: #304567;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.hero-media {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 34px 34px 0 0;
}

.hero-media img {
  width: min(780px, 100%);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(4, 35, 80, .22));
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto;
}

.section-heading {
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 950;
}

.centered {
  text-align: center;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-title-row h2,
.promo h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0;
}

.section-title-row a {
  color: var(--blue);
  font-weight: 850;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.category-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 134px;
  padding: 18px;
  border: 1px solid #e3ebf6;
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: 0 12px 25px rgba(22, 52, 92, .08);
}

.category-card img {
  width: 96px;
  height: 82px;
  object-fit: contain;
}

.category-card h3,
.product-card h3,
.feature-strip h3 {
  margin: 0;
  font-size: 17px;
}

.category-card p,
.feature-strip p,
.testimonial-card span {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.category-card a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid #dfE8f4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eaf1f8;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
}

.price-row strong {
  color: var(--blue);
  font-size: 24px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #e1e9f4;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(22, 52, 92, .08);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid #e1e9f4;
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-icon,
.whatsapp-bubble {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 28px;
  font-weight: 950;
}

.feature-icon {
  width: 56px;
  height: 56px;
}

.feature-strip article:nth-child(2) .feature-icon,
.promo {
  background: var(--orange);
}

.feature-strip article:nth-child(3) .feature-icon {
  background: var(--green);
}

.feature-strip article:nth-child(4) .feature-icon {
  background: #18b75d;
}

.promo {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  color: #17335f;
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, .55), transparent 28%),
    linear-gradient(135deg, #ffd84c, #ff9d2d);
}

.promo p {
  margin: 8px 0 0;
}

.promo-kicker {
  font-weight: 900;
  text-transform: uppercase;
}

.promo-code {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
}

.promo-code strong {
  color: #f05a22;
  font-size: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.testimonial-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #e1e9f4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(22, 52, 92, .08);
}

.stars {
  color: #ffc400;
  font-size: 20px;
  letter-spacing: 0;
}

.testimonial-card p {
  color: #334155;
  line-height: 1.55;
}

.contact-cta {
  display: grid;
  grid-template-columns: 84px 1fr 1.6fr;
  align-items: center;
  gap: 22px;
  padding: 28px;
  color: var(--white);
  border-radius: 24px;
  background: linear-gradient(135deg, #0877da, #003d90);
}

.whatsapp-bubble {
  width: 72px;
  height: 72px;
  background: #21c15f;
}

.contact-cta p {
  margin: 6px 0 0;
  color: #dbeafe;
}

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

.contact-items span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .28);
  color: #dbeafe;
}

.contact-items strong {
  color: var(--white);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 32px;
  padding: 36px clamp(22px, 5vw, 64px);
  color: #d9e8ff;
  background: #06265a;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
}

.footer p,
.footer a,
.footer span {
  display: block;
  margin: 8px 0;
  color: #c6d7f2;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: #9bb4dc;
  border-top: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}

.admin-body {
  background: #f4f7fb;
}

.admin-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 26px auto;
}

.admin-header,
.admin-card {
  border: 1px solid #dde7f4;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(22, 52, 92, .08);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 22px;
}

.admin-card {
  margin-bottom: 18px;
  padding: 22px;
}

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

.admin-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: #334155;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: #112448;
  border: 1px solid #cdd9ea;
  border-radius: 12px;
  background: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid #dde7f4;
  border-radius: 16px;
  background: #f8fbff;
}

.admin-item img {
  width: 90px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: #e8eef8;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  margin-bottom: 16px;
  padding: 12px 14px;
  color: #14532d;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  background: #ecfdf5;
}

.error {
  color: #991b1b;
  border-color: #fecaca;
  background: #fff1f2;
}

/* Landing v2: closer to the provided reference */
.btn svg,
.trust-row svg,
.category-card a svg,
.see-all svg,
.feature-icon svg,
.whatsapp-bubble svg,
.contact-items svg,
.title-icon svg,
.promo-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn {
  gap: 9px;
  border-radius: 12px;
}

.topbar {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 8px 28px rgba(17, 36, 72, .07);
}

.brand span {
  color: #0b66d8;
}

.nav a:first-child::after {
  width: 100%;
}

.btn-yellow {
  color: #17335f;
  background: linear-gradient(180deg, #ffdb37, #ffc21b);
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  min-height: 560px;
  border-bottom-left-radius: 44% 9%;
  border-bottom-right-radius: 44% 9%;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, .9), transparent 12%),
    radial-gradient(circle at 71% 10%, rgba(255, 201, 40, .32), transparent 18%),
    linear-gradient(104deg, #ffffff 0%, #eef8ff 45%, #78cdf7 100%);
}

.hero-copy {
  padding-left: clamp(28px, 5vw, 64px);
}

.hero h1 {
  max-width: 680px;
  color: #08285f;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: .96;
  font-weight: 950;
}

.hero h1 span {
  display: block;
  color: #ff7a00;
}

.hero-copy > p {
  max-width: 520px;
}

.hero-media {
  align-items: center;
  padding: 22px 42px 0 0;
}

.hero-media img {
  width: min(760px, 100%);
  max-height: 560px;
}

.trust-row {
  gap: 22px;
}

.trust-row span {
  color: #244163;
  font-size: 14px;
}

.trust-row span::before {
  display: none;
}

.trust-row svg {
  color: #0b66d8;
}

.section {
  width: min(1160px, calc(100% - 44px));
  margin-top: 28px;
  margin-bottom: 28px;
}

.deco-heading span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.deco-heading span::before,
.deco-heading span::after {
  display: inline-block;
  width: 34px;
  height: 22px;
  background:
    linear-gradient(135deg, transparent 42%, #0b66d8 44% 56%, transparent 58%),
    radial-gradient(circle at 80% 20%, #ff8a00 0 3px, transparent 4px);
  content: "";
}

.category-grid {
  gap: 14px;
}

.category-card {
  grid-template-columns: 92px 1fr 34px;
  min-height: 120px;
  padding: 16px;
  border-color: rgba(11, 102, 216, .08);
  border-radius: 16px;
}

.category-card h3 {
  color: #0b66d8;
  font-weight: 900;
}

.category-card:nth-child(2) h3 {
  color: #f27600;
}

.category-card:nth-child(3) h3 {
  color: #19a752;
}

.category-card:nth-child(4) h3 {
  color: #6545d8;
}

.category-card a {
  background: #0b66d8;
}

.category-card:nth-child(2) a {
  background: #ff8a00;
}

.category-card:nth-child(3) a {
  background: #20b15a;
}

.category-card:nth-child(4) a {
  background: #6545d8;
}

.category-card a svg {
  width: 18px;
  height: 18px;
}

.section-title-row h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0a2f6b;
  font-weight: 950;
}

.title-icon {
  display: inline-grid;
  place-items: center;
  color: #ffc400;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0b66d8;
}

.see-all svg {
  width: 18px;
  height: 18px;
}

.product-grid {
  gap: 18px;
}

.product-card {
  border-radius: 14px;
}

.product-card img {
  aspect-ratio: 1.35 / 1;
}

.product-body {
  gap: 8px;
}

.price-row {
  margin-top: 2px;
}

.price-row span {
  font-size: 12px;
  font-weight: 800;
}

.price-row strong {
  font-size: 20px;
}

.product-card:nth-child(2) .btn-product {
  background: #ff7a00;
}

.product-card:nth-child(3) .btn-product {
  background: #20a954;
}

.product-card:nth-child(4) .btn-product {
  background: #6545d8;
}

.feature-strip {
  border-radius: 16px;
}

.feature-icon {
  color: #ffffff;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.promo {
  grid-template-columns: 96px 1fr minmax(260px, 360px);
  border-radius: 18px;
}

.promo-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #ff8a00;
  background: rgba(255, 255, 255, .7);
  border-radius: 999px;
}

.promo-icon svg {
  width: 42px;
  height: 42px;
}

.testimonial-card {
  border-radius: 13px;
}

.stars {
  letter-spacing: 1px;
}

.contact-cta {
  border-radius: 18px;
  background: linear-gradient(135deg, #0877da 0%, #0051bd 55%, #003786 100%);
}

.whatsapp-bubble svg {
  width: 42px;
  height: 42px;
}

.contact-items span {
  position: relative;
}

.contact-items svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-row span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.remove-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b91c1c;
  font-weight: 850;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #d6e2f1;
    border-radius: 12px;
    background: var(--white);
    font-weight: 850;
  }

  .topbar > .btn {
    grid-column: 1 / -1;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid #dce7f4;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .promo,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .promo-icon {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    padding: 0 20px 24px;
  }

  .category-grid,
  .product-grid,
  .feature-strip,
  .testimonial-grid,
  .contact-items,
  .footer,
  .admin-grid,
  .admin-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid #e1e9f4;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 12px 16px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-copy {
    padding: 30px 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions .btn,
  .topbar > .btn {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .feature-strip,
  .testimonial-grid,
  .contact-items,
  .footer,
  .admin-grid,
  .admin-grid.three {
    grid-template-columns: 1fr;
  }

  .category-card {
    grid-template-columns: 82px 1fr auto;
  }

  .section-title-row,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .whatsapp-bubble {
    margin: 0 auto;
  }

  .contact-items span {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-left: 0;
  }

  .admin-item {
    grid-template-columns: 1fr;
  }
}
