﻿:root {
  --blue: #0878d8;
  --blue-dark: #063f87;
  --blue-ink: #061b3d;
  --blue-soft: #eaf6ff;
  --grey: #eef3f7;
  --line: #d8e4ee;
  --text: #122844;
  --muted: #4a5d75;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); font-family: Inter, Arial, sans-serif; background: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(37, 76, 116, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand, .footer-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 168px; height: 58px; object-fit: contain; object-position: left center; }
.footer-brand img { width: 180px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  flex: 1;
  color: var(--blue-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav a { white-space: nowrap; }
.main-nav .active, .main-nav a:hover { color: var(--blue); }

.pill-button, .white-button {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 47px;
  padding: 0 29px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill-button { color: #fff; background: linear-gradient(135deg, #0b83e8, #035fbd); box-shadow: 0 9px 20px rgba(4, 99, 197, 0.2); }
.header-button { min-width: 148px; }
.white-button { color: var(--blue); background: #fff; box-shadow: 0 8px 18px rgba(4, 61, 116, 0.15); }

.hero {
  min-height: 640px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 70px 86px;
  overflow: hidden;
  color: #fff;
  background: #0b2745;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 22, 43, 0.78), rgba(4, 22, 43, 0.34) 45%, rgba(4, 22, 43, 0.04)); }
.hero-copy { position: relative; z-index: 1; width: min(560px, 100%); }
.eyebrow { margin: 0 0 10px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.hero .eyebrow { color: #9bd6ff; }
.hero h1 { margin-bottom: 4px; font-size: clamp(44px, 5vw, 76px); line-height: 0.96; font-weight: 900; letter-spacing: 0; }
.hero-slogan { margin: 0 0 18px; color: #0785ed; font-family: "Brush Script MT", "Segoe Script", cursive; font-size: clamp(44px, 5vw, 70px); line-height: 0.95; }
.hero-text { max-width: 520px; margin-bottom: 24px; font-size: 18px; line-height: 1.55; }

.brand-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.brand-promises p { margin: 0; padding: 25px 42px; background: #fff; color: var(--muted); font-size: 15px; line-height: 1.45; }
.brand-promises strong { display: block; margin-bottom: 5px; color: var(--blue-dark); font-size: 16px; text-transform: uppercase; }

.about-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 58px 86px;
  background: linear-gradient(90deg, #f8fcff, #fff 58%, #eef8ff);
}
.section-image { overflow: hidden; border-radius: 8px; box-shadow: 0 18px 34px rgba(11, 67, 118, 0.12); }
.section-image img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: center; }
.section-copy h2, .product-head h2, .reviews h2, .store-policy h2, .cta-band h2 { margin-bottom: 15px; color: var(--blue-dark); font-size: clamp(32px, 3.5vw, 48px); line-height: 1.02; }
.section-copy p, .product-head p, .feature-card p, .store-policy p { color: #173154; font-size: 15px; line-height: 1.55; }

.split-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.split-list article, .mission-grid article, .feature-card, .review-card, .policy-panel, .location-grid p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(11, 67, 118, 0.07);
}
.split-list article { padding: 20px; }
h3 { margin-bottom: 10px; color: var(--blue-dark); font-size: 21px; line-height: 1.15; }
ul { margin: 0; padding-left: 19px; color: #173154; font-size: 14px; line-height: 1.48; }
li + li { margin-top: 7px; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 42px 86px;
  background: #0b2745;
}
.mission-grid article { padding: 22px; }

.product-section { padding: 58px 86px; background: linear-gradient(180deg, #edf7ff, #fff 35%, #f8fcff); }
.product-head { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.72fr); gap: 36px; align-items: center; margin-bottom: 30px; }
.product-head img { width: 100%; border-radius: 8px; box-shadow: 0 18px 34px rgba(11, 67, 118, 0.12); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.feature-card { padding: 24px; }
.highlight-card { background: linear-gradient(145deg, #fff, #eaf6ff); }
.wide-card { grid-column: span 2; }
.price { margin-bottom: 10px; color: var(--blue); font-size: 42px; font-weight: 900; }
.text-link { display: inline-flex; margin-top: 10px; color: var(--blue); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.comparison-table { display: grid; gap: 8px; margin: 12px 0 14px; }
.comparison-table p { display: grid; grid-template-columns: 0.7fr 1fr 1.4fr; gap: 10px; margin: 0; padding: 12px; border-radius: 6px; background: var(--blue-soft); }
.comparison-table strong { color: var(--blue-dark); }

.reviews { padding: 50px 86px; text-align: center; background: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 24px auto 0; }
.review-card { padding: 24px; text-align: left; }
.stars { color: var(--blue); font-size: 18px; letter-spacing: 0.12em; }
.review-card p { color: #122848; font-size: 15px; line-height: 1.4; }
.review-card strong { display: block; color: var(--blue-dark); }
.review-card span { color: var(--muted); font-size: 13px; }

.store-policy { display: grid; grid-template-columns: minmax(460px, 1fr) minmax(340px, 0.75fr); gap: 38px; padding: 50px 86px; background: linear-gradient(90deg, #f5fbff, #ffffff); }
.contact-line { font-weight: 700; }
.location-grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 13px; margin-top: 17px; }
.location-grid p, .policy-panel { padding: 18px; }
.location-grid strong { display: block; margin-bottom: 4px; color: var(--blue); text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em; }
.policy-panel h3 { margin-bottom: 12px; }
.policy-panel p { margin-bottom: 12px; }

.cta-band { display: grid; grid-template-columns: minmax(420px, 1fr) auto; gap: 28px; align-items: center; padding: 34px 86px; color: #fff; background: linear-gradient(90deg, #035fbd, #0982e5); }
.cta-band .eyebrow, .cta-band h2 { color: #fff; }
.cta-band h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  min-height: 56px;
  padding: 0 22px 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 30px rgba(18, 112, 57, 0.28);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.whatsapp-float svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.whatsapp-float svg path:nth-child(2) { fill: currentColor; stroke: none; }

.footer { display: grid; grid-template-columns: 1.4fr 0.75fr 1fr 1fr 0.8fr; gap: 36px; padding: 34px 86px 48px; position: relative; background: #fff; }
.footer h4 { margin: 0 0 8px; color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer > div > a, .footer p { display: block; margin: 0 0 5px; color: #1d2c45; font-size: 12px; line-height: 1.4; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { width: 34px; height: 34px; border: 1px solid var(--blue); border-radius: 50%; display: grid; place-items: center; color: var(--blue); }
.socials svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.socials a:first-child svg { fill: currentColor; stroke: none; }
.socials a:nth-child(4) svg { width: 20px; height: 20px; }
.socials a:nth-child(4) svg path:nth-child(2) { fill: currentColor; stroke: none; }
.socials a:hover { color: #fff; background: var(--blue); }
.copyright { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); color: #7a8797; }

@media (max-width: 1120px) {
  .site-header { height: auto; flex-wrap: wrap; padding: 15px 28px; }
  .main-nav { order: 3; width: 100%; flex-wrap: wrap; gap: 14px 22px; }
  .mission-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero, .about-section, .product-section, .reviews, .store-policy, .cta-band, .footer { padding-left: 26px; padding-right: 26px; }
  .hero { min-height: 560px; align-items: end; }
  .hero::after { background: linear-gradient(0deg, rgba(4, 22, 43, 0.86), rgba(4, 22, 43, 0.16)); }
  .brand-promises, .about-section, .mission-grid, .product-head, .product-grid, .review-grid, .store-policy, .cta-band, .footer, .split-list { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; }
  .section-image img { min-height: 330px; }
  .comparison-table p { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .copyright { position: static; transform: none; }
}

@media (max-width: 560px) {
  .brand img { width: 142px; height: 49px; }
  .header-button { min-width: auto; padding: 0 18px; }
  .hero h1 { font-size: 42px; }
  .hero-text { font-size: 16px; }
  .brand-promises p, .feature-card, .mission-grid article, .review-card { padding: 20px; }
  .whatsapp-float { right: 14px; bottom: 14px; min-height: 52px; padding-right: 17px; font-size: 12px; }
}





