:root {
  --primary: #0f238e;
  --secondary: #b79624;
  --accent: #f3d29a;
  --surface: #ffffff;
  --surface-soft: #f5f7ff;
  --bg: #eff2fb;
  --text: #111827;
  --muted: #5b6772;
  --border: rgba(15, 35, 142, 0.12);
  --shadow: 0 30px 70px rgba(15, 30, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: linear-gradient(180deg, #f2f5fb 0%, #eef2fb 25%, #fbfcff 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 16% 16%, rgba(15, 35, 142, 0.16), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(183, 150, 48, 0.12), transparent 16%);
  pointer-events: none;
  z-index: -1;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.site-header {
  position: sticky;
  inset: 0 auto auto 0;
  top: 0;
  z-index: 20;
  width: 100%;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 35, 142, 0.12);
  box-shadow: 0 20px 65px rgba(15, 30, 70, 0.08);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 1rem;
  position: relative;
}

.site-header.scrolled .header-inner {
  padding: 1rem 1rem;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 65px rgba(15, 30, 70, 0.1);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), rgba(99, 114, 242, 0.95));
  color: white;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  box-shadow: 0 25px 55px rgba(15, 30, 70, 0.15);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), rgba(183, 150, 48, 0.3));
}

.site-header h1,
.site-header p {
  margin: 0;
}

.site-header h1 {
  display: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 35, 142, 0.08);
  border-radius: 1.25rem;
  padding: 0.75rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-6px);
  z-index: 24;
  box-shadow: 0 24px 60px rgba(15, 30, 70, 0.12);
}

.site-nav.active {
  max-height: 320px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.9rem;
  transition: color 0.25s ease, background 0.25s ease;
  display: block;
}

.site-nav a:hover {
  color: var(--primary);
  background: rgba(15, 35, 142, 0.06);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
  z-index: 25;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    width: auto;
    max-height: none;
    border: none;
    padding: 0;
    background: transparent;
    gap: 1.75rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .site-nav.active {
    max-height: none;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
  }

  .site-nav a:hover {
    background: rgba(15, 35, 142, 0.06);
    transform: translateY(-1px);
  }

  .header-inner {
    flex-wrap: nowrap;
    max-width: 1200px;
    padding: 1.5rem 2.5rem;
  }

  .brand-mark {
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    font-size: 1.25rem;
  }

  .site-header h1 {
    display: block;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 1.5rem 5vw;
  }

  .site-header.scrolled .header-inner {
    padding: 1rem 5vw;
  }
}


.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 1.25rem 3.5rem;
  max-width: 100%;
  margin: 2rem auto 2.5rem;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 255, 0.95) 50%, rgba(243, 210, 154, 0.08) 100%);
  border-radius: 1.5rem;
  box-shadow: 0 60px 140px rgba(15, 30, 70, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    padding: 4rem 2rem 5rem;
    margin: 2.5rem auto 3rem;
    max-width: 1200px;
    border-radius: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    gap: 3rem;
    padding: 6rem 2.5rem 7rem;
    margin: 3rem auto 4rem;
    border-radius: 3rem;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 25%, rgba(183, 150, 48, 0.18), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(15, 35, 142, 0.16), transparent 24%),
    radial-gradient(circle at 95% 90%, rgba(15, 35, 142, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #3f5df9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  max-width: 45rem;
  margin: 1.25rem 0 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .hero-copy h2 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    margin: 0 0 1.25rem 0;
  }

  .hero-text {
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 1.5rem 0 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy h2 {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 1.1rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, #0f238e 0%, #3f5df9 100%);
  color: white;
  box-shadow: 0 25px 50px rgba(15, 35, 142, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 65px rgba(15, 35, 142, 0.38);
}

.btn-secondary {
  background: linear-gradient(135deg, #b79624 0%, #e1c76b 100%);
  color: white;
  box-shadow: 0 20px 45px rgba(183, 150, 48, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(183, 150, 48, 0.32);
}

.btn {
  letter-spacing: 0.02em;
}

.btn-sm {
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
}

.product-card-link {
  display: block;
}

.product-page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 2rem 1.25rem 1rem;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .product-page-hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 2.5rem 2rem 1.25rem;
    max-width: 1200px;
  }
}

@media (min-width: 1024px) {
  .product-page-hero {
    gap: 2.5rem;
    padding: 3.5rem 2.5rem 1.5rem;
  }
}

.product-page-header {
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .product-page-header {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .product-page-header {
    padding: 0 2.5rem;
  }
}

.product-page-header h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
}

.product-details {
  background: white;
  border-radius: 2rem;
  border: 1px solid rgba(15, 35, 142, 0.12);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(15, 35, 142, 0.15);
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.detail-card {
  background: #f8f9fd;
  border-radius: 1.5rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.detail-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 1.25rem 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 640px) {
  .product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 2.5rem 2rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 3.5rem 2.5rem 2rem;
    max-width: 1200px;
  }
}

.spec-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(15, 35, 142, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-card i {
  font-size: 1.4rem;
  color: var(--primary);
}

.spec-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.back-link:hover {
  transform: translateX(-4px);
  opacity: 0.8;
}

.back-link i {
  font-size: 0.9rem;
}

.product-description {
  padding: 3rem 2.5rem;
  margin: 0 auto;
  max-width: 1200px;
  width: min(100%, 1200px);
  line-height: 1.9;
  color: var(--muted);
}

.product-description h2 {
  font-size: 2.2rem;
  margin: 0 0 1.5rem;
  color: var(--primary);
}

.product-description p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.hero-visual {
  display: grid;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.9s ease-out forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.12s;
}

.fade-in-delay-2 {
  animation-delay: 0.22s;
}

.fade-in-delay-3 {
  animation-delay: 0.34s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .product-page-hero {
    grid-template-columns: 1fr;
  }

  .product-specs {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 247, 255, 0.94) 100%);
  border: 1.5px solid rgba(15, 35, 142, 0.15);
  box-shadow: 0 50px 120px rgba(13, 23, 61, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.6s ease;
}

.hero-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 65px 150px rgba(13, 23, 61, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-card:hover img {
  transform: scale(1.02);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.label-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(15, 35, 142, 0.94) 0%, rgba(63, 93, 249, 0.88) 100%);
  color: white;
  font-weight: 700;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(15, 35, 142, 0.28);
  z-index: 2;
  gap: 1rem;
}

.label-overlay span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.label-overlay strong {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.badge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
  }
}

.badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 247, 255, 0.9) 100%);
  border: 1.5px solid rgba(15, 35, 142, 0.15);
  border-radius: 1.75rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  box-shadow: 0 25px 55px rgba(15, 30, 70, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.32s ease;
}

.badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(15, 30, 70, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 35, 142, 0.25);
}

.badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #3f5df9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.badge {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.section-header {
  padding: 0 2.5rem;
  max-width: 720px;
}

.section-header h2 {
  margin-top: 0.5rem;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.05;
  color: #0d1e7a;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeInUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.product-grid-section {
  padding: 1.5rem 1.25rem;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .product-grid-section {
    padding: 2rem;
    max-width: 1200px;
  }
}

@media (min-width: 1024px) {
  .product-grid-section {
    padding: 2.5rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
  }
}

.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 2.25rem;
  overflow: hidden;
  border: 1px solid rgba(15, 35, 142, 0.08);
  box-shadow: 0 35px 90px rgba(15, 35, 142, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 120px rgba(15, 35, 142, 0.18);
  border-color: rgba(15, 35, 142, 0.18);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(183, 150, 48, 0.12), transparent 45%);
  pointer-events: none;
}
.product-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(15, 35, 142, 1), rgba(183, 150, 48, 0.95));
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-copy {
  padding: 1.75rem;
}

.flavor-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(249, 250, 251, 0.85);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.flavor-tag i {
  font-size: 0.9rem;
}

.product-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.product-copy li {
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-copy li i {
  color: var(--primary);
  font-size: 0.9rem;
}

.benefits-section,
.about-section {
  padding: 2.25rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  width: min(100%, 1200px);
}

@media (min-width: 768px) {
  .benefits-section,
  .about-section {
    padding: 3rem 2.5rem;
  }
}

.benefits-section {
  background: linear-gradient(180deg, rgba(15, 35, 142, 0.06), transparent 55%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.75rem;
  padding: 2rem;
  border: 1px solid rgba(15, 35, 142, 0.08);
  box-shadow: 0 30px 70px rgba(15, 35, 142, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 42px 85px rgba(15, 35, 142, 0.16);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(15, 35, 142, 0.12), rgba(183, 150, 48, 0.12));
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-top: 0;
  color: #0d1e7a;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-section {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-panel {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-panel ul {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.about-panel li {
  color: var(--muted);
  line-height: 1.75;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-panel li i {
  color: var(--primary);
  font-size: 1rem;
}

.about-visual .visual-card {
  background: radial-gradient(circle at top left, rgba(15, 35, 142, 0.2), transparent 42%),
    linear-gradient(180deg, #0f238e 0%, #162d9a 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  min-height: 20rem;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.05rem;
  line-height: 1.8;
  box-shadow: 0 35px 80px rgba(15, 30, 70, 0.12);
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  background: rgba(15, 35, 142, 0.04);
  border-top: 1px solid rgba(15, 35, 142, 0.08);
}

.footer-brand strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  max-width: 26rem;
}

.footer-links {
  display: grid;
  gap: 1.25rem;
}

.footer-links h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 768px) {
  .site-footer {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
    padding: 2.5rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.site-footer strong {
  display: block;
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .hero-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .product-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section-header,
  .product-grid-section,
  .benefits-section,
  .about-section,
  .site-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero-card img {
    height: auto;
  }

  .site-header {
    border-radius: 1.75rem;
  }

  .hero-section {
    padding: 3rem 1.5rem 3.5rem;
  }

  .hero-copy h2 {
    font-size: 2.6rem;
  }
}
