.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .reviews {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 520px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: var(--shadow);
  position: relative;
}

.review-quote {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 42px;
  line-height: 1;
  color: #d6e1f5;
  font-weight: 900;
  pointer-events: none;
}

.review-author {
  font-weight: 800;
  margin-bottom: 4px;
  color: #0b1524;
}

.review-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
:root {
  --bg: #e6edf9;
  --card: transparent;
  --accent: #1f4f92;
  --accent-2: #3d7dd6;
  --text: #0b1524;
  --muted: #4a5568;
  --border: #d3def0;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }

body, button, input, select, textarea {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f3f7fd 0%, #e6edf9 55%, #d9e7f7 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  color: #f7fbff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 56px 8vw;
  background: radial-gradient(circle at 20% 20%, rgba(63, 126, 214, 0.25), transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(31, 79, 146, 0.2), transparent 38%),
    linear-gradient(120deg, #1f4f92 0%, #3d7dd6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.14), transparent 40%);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; }

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.1;
}

.hero h1 span { color: #f7c948; }

.hero p { margin: 0; max-width: 640px; color: #e3edfb; font-size: 18px; }

.hero-image {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(6, 12, 34, 0.35);
  border: 1px solid #1f3c63;
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
}

main {
  max-width: 1280px;
  margin: 0 auto 120px;
  padding: 60px 32px 0;
  display: grid;
  gap: 52px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 26px;
  color: #0b1524;
}

.section p { margin: 0 0 12px; color: var(--muted); }

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

.story-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.story-card h3 { margin: 0 0 8px; font-size: 18px; color: #0b1524; }
.story-card p { margin: 0; color: var(--muted); }

.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.value-item {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.product-card {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(500px, 620px) 1fr;
  gap: 32px;
  align-items: stretch;
}

.product-image-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

.product-image {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  display: block;
}

.product-card h3 {
  margin: 4px 0 8px;
  font-size: 24px;
  color: #0b1524;
}

.product-card p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 17px;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  align-self: stretch;
}

.variant-wrap {
  display: grid;
  gap: 8px;
}

.variant-select,
.variant-pills { width: 100%; }

.variant-select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: #111827;
  font-weight: 600;
}

.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-pill {
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: #0b1524;
  cursor: pointer;
  transition: all 120ms ease;
  font-weight: 700;
}

.variant-pill.active {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.buy-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 16px;
  background: #ffffff;
  color: #0b1524;
  border: 2px solid var(--accent);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.newsletter {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  padding: 14px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  background: #ffffff;
  color: #0b1524;
  font-size: 16px;
  font-family: inherit;
  box-shadow: none;
}

.newsletter input[type="email"]::placeholder {
  color: #9aa6bd;
}

.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 79, 146, 0.18);
}

.newsletter button {
  padding: 14px 18px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: #ffffff;
  color: var(--accent);
  font-weight: 700;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.newsletter button:hover { transform: translateY(-2px); }

.fine-print {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(120deg, #f7c948, #fde68a);
  color: #0b1524;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  border: 2px solid #f7c948;
}

@media (max-width: 900px) {
  .product-card { grid-template-columns: 1fr; }
  .product-image { height: 260px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-image { order: 2; }
}

@media (max-width: 720px) {
  .newsletter { grid-template-columns: 1fr; }
  header { padding-top: 32px; }
  .sticky-cta { display: inline-flex; justify-content: center; }
  body { padding-bottom: 84px; }
}
