@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --color-primary: #6B9080;
  --color-primary-dark: #476B5A;
  --color-primary-light: #A4C3B2;
  --color-secondary: #CCB791;
  --color-accent: #E8985E;
  --color-bg: #FDFAF5;
  --color-bg-alt: #F0EBE0;
  --color-card: #FFFFFF;
  --color-text: #2D3A2E;
  --color-text-light: #6E7F6F;
  --color-border: #E0D8CC;
  --color-white: #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(45,58,46,0.06);
  --shadow-md: 0 4px 20px rgba(45,58,46,0.08);
  --shadow-lg: 0 8px 40px rgba(45,58,46,0.1);
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 64px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 0.8rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #d4854b;
  color: var(--color-white);
  transform: translateY(-1px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
  background: rgba(253, 250, 245, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header.hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(253, 250, 245, 0.92);
  box-shadow: 0 1px 12px rgba(45,58,46,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand i {
  font-size: 1.1rem;
  color: var(--color-accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.desktop-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-primary-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 102;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: black;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: black;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 58, 46, 0.96);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}

.nav-overlay.active a {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay a:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay a:nth-child(2) { transition-delay: 0.14s; }
.nav-overlay a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay a:nth-child(4) { transition-delay: 0.26s; }
.nav-overlay a:nth-child(5) { transition-delay: 0.32s; }

.nav-overlay a:hover {
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--color-primary-light);
  opacity: 0.08;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(107,144,128,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 2.6rem;
}

.hero p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 520px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
}

.pillar-icon.green {
  background: rgba(107,144,128,0.12);
  color: var(--color-primary);
}

.pillar-icon.gold {
  background: rgba(204,183,145,0.2);
  color: #A08C5E;
}

.pillar-icon.coral {
  background: rgba(232,152,94,0.12);
  color: var(--color-accent);
}

.pillar-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.pillar-card p {
  font-size: 0.82rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.highlight-item:hover {
  box-shadow: var(--shadow-md);
}

.highlight-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  min-width: 40px;
}

.highlight-item h4 {
  margin-bottom: 0.3rem;
}

.highlight-item p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.image-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-text-row img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-text-row h2 {
  margin-bottom: 0.6rem;
}

.image-text-row p {
  margin-bottom: 0.8rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.benefits-list li i {
  color: var(--color-primary);
  font-size: 0.75rem;
}

.quotes-section {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3.5rem 0;
}

.quotes-section .section-header h2 {
  color: var(--color-white);
}

.quotes-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.quote-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.quote-card p {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.quote-author {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.cta-section {
  padding: 3.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.cta-section h2 {
  margin-bottom: 0.6rem;
}

.cta-section p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.product-card h3 {
  margin-bottom: 0.3rem;
}

.product-card .product-desc {
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.value-card i {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-top: 0.15rem;
}

.value-card h4 {
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.75rem;
  z-index: 1;
}

.timeline-content h4 {
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form-wrap {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form-wrap h3 {
  margin-bottom: 0.3rem;
}

.contact-form-wrap > p {
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.form-check label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.form-check a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-info-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-card h4 i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.contact-info-card p {
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.contact-info-card a {
  font-size: 0.82rem;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.faq-item h4 {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.faq-item h4 i {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.faq-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.page-hero {
  padding: 6.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb i {
  font-size: 0.6rem;
}

.status-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
}

.status-content i {
  font-size: 3rem;
  color: #577769;
  margin-bottom: 1rem;
  display: block;
}

.status-content h1 {
  margin-bottom: 0.5rem;
}

.status-content p {
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.policy-content {
  padding: 3rem 0;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.policy-content p {
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.6);
  padding: 1.5rem 0 1rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer-copy {
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.2rem;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  flex: 1;
}

.cookie-inner a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.5rem;
}

.cookie-accept {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-decline {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.guide-step {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  align-items: flex-start;
}

.guide-step-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  min-width: 36px;
}

.guide-step h4 {
  margin-bottom: 0.3rem;
}

.guide-step p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tip-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tip-card i {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  display: block;
}

.tip-card h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.tip-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 0.2rem;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.promise-card {
  text-align: center;
  padding: 1.4rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.promise-card i {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  display: block;
}

.promise-card h4 {
  margin-bottom: 0.3rem;
}

.promise-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-intro-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .hero-grid,
  .image-text-row,
  .contact-layout,
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image { order: -1; }

  .pillars-grid,
  .quotes-grid,
  .products-grid,
  .tips-grid,
  .promise-cards {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-grid,
  .values-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 5.5rem 0 3rem;
  }

  .page-hero {
    padding: 5.5rem 0 2rem;
  }
}

@media (max-width: 600px) {
  html { font-size: 14px; }

  .pillars-grid,
  .quotes-grid,
  .products-grid,
  .tips-grid,
  .promise-cards {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stat-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  html { font-size: 13px; }
  .container { padding: 0 0.8rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 5rem 0 2.5rem; }

  .stat-bar {
    grid-template-columns: 1fr;
  }
}