@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --clr-primary: #2E7D52;
  --clr-primary-dark: #1f5c3b;
  --clr-primary-rgb: 46,125,82;
  --clr-text: #1A1A2E;
  --clr-text-muted: #64748B;
  --clr-bg: #FFFFFF;
  --clr-bg-alt: #F8FAFC;
  --clr-border: #E2E8F0;
  --clr-star: #F59E0B;
  --clr-footer: #0F172A;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
  --header-h: 72px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--clr-primary-rgb),0.35);
}
.btn-primary.btn-lg { padding: 18px 40px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.55);
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-text);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--clr-border);
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--clr-primary); color: var(--clr-primary); }

/* ── Sections ── */
.section { padding: 88px 0; }
.section-alt { background: var(--clr-bg-alt); }
.section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--clr-text); margin-bottom: 12px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 16px; color: var(--clr-text-muted); margin-bottom: 48px; max-width: 600px; line-height: 1.65; }
.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--clr-primary); margin-bottom: 10px;
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.header-logo { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: var(--clr-text); flex-shrink: 0; }
.header-logo img { height: 36px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { font-size: 14px; font-weight: 500; color: var(--clr-text-muted); transition: color var(--transition); }
.header-nav a:hover { color: var(--clr-primary); }

.header-right { display: flex; align-items: center; gap: 16px; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all var(--transition); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-text);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--hero-bg-image, none);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 70%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 80px 0 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════
   HIGHLIGHTS BAR
═══════════════════════════════ */
.highlights-bar {
  background: var(--clr-primary);
  padding: 18px 0;
}
.highlights-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 14px; font-weight: 600;
}
.highlight-item span:first-child { font-size: 20px; }
.highlight-sep { color: rgba(255,255,255,0.35); font-size: 20px; }

/* ═══════════════════════════════
   PRODUCTS
═══════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.product-card-body p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 20px; }
.product-card-body .btn-primary { width: 100%; justify-content: center; }

/* ═══════════════════════════════
   BRAND STORY
═══════════════════════════════ */
.brand-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-story-text h2 { margin-bottom: 20px; }
.brand-story-text p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 16px; }
.story-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.story-point { display: flex; gap: 16px; }
.story-point-num {
  font-size: 28px; font-weight: 800; color: var(--clr-primary);
  opacity: 0.25; line-height: 1; flex-shrink: 0; min-width: 36px;
}
.story-point-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.story-point-body p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }
.brand-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.brand-story-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════
   FEATURES
═══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }

/* ═══════════════════════════════
   REVIEWS
═══════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: var(--clr-star); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { display: block; font-weight: 600; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--clr-text-muted); }
.reviews-cta { text-align: center; margin-top: 48px; }

/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
.cta-banner {
  background: var(--clr-primary);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-banner .btn-primary { background: #fff; color: var(--clr-primary); }
.cta-banner .btn-primary:hover { background: rgba(255,255,255,0.9); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-banner .btn-outline { margin-left: 16px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════
   ABOUT PAGE HERO
═══════════════════════════════ */
.about-hero {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
  border-bottom: 1px solid var(--clr-border);
}
.about-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.about-hero p { font-size: 18px; color: var(--clr-text-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }

.about-story { max-width: 780px; margin: 0 auto; }
.about-story p { font-size: 16px; color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-story h3 { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.about-value-card {
  padding: 32px 24px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.about-value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--clr-primary); }
.about-value-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }

/* ═══════════════════════════════
   PRIVACY PAGE
═══════════════════════════════ */
.privacy-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--clr-border);
}
.privacy-hero h1 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.privacy-hero p { color: var(--clr-text-muted); }
.privacy-body { max-width: 820px; padding: 56px 0 80px; }
.privacy-body h2 { font-size: 20px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p { font-size: 15px; color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 12px; }
.privacy-body ul { margin: 8px 0 12px 20px; list-style: disc; }
.privacy-body ul li { font-size: 15px; color: var(--clr-text-muted); line-height: 1.7; margin-bottom: 4px; }
.privacy-body a { color: var(--clr-primary); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
  background: var(--clr-footer);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-wrap img { height: 36px; width: auto; opacity: 0.9; }
.footer-logo-name { font-size: 18px; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 14px; line-height: 1.65; max-width: 320px; margin-bottom: 20px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-email a { font-size: 14px; color: var(--clr-primary); }
/* ═══════════════════════════════
   CONTACTS PAGE
═══════════════════════════════ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card-icon { font-size: 40px; margin-bottom: 16px; }
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--clr-primary); }
.contact-card p { font-size: 15px; color: var(--clr-text-muted); line-height: 1.65; }
.contact-card a { color: var(--clr-primary); word-break: break-all; }
@media (max-width: 768px) {
  .contacts-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.footer-address { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.5; }
.footer-amazon {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; transition: color var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-block { grid-template-columns: 1fr; gap: 40px; }
  .brand-story-image { aspect-ratio: 16/9; max-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .header-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--clr-bg); border-bottom: 1px solid var(--clr-border); flex-direction: column; gap: 0; padding: 12px 0; box-shadow: var(--shadow); }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 12px 24px; font-size: 15px; }
  .mobile-menu-btn { display: flex; }
  .hero { min-height: 520px; }
  .hero-content { padding: 60px 0 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .highlights-inner { gap: 20px; }
  .highlight-sep { display: none; }
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values-grid { grid-template-columns: 1fr; max-width: 420px; margin: 40px auto 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-banner .btn-outline { margin-left: 0; }
}
