*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0D9488;
  --primary-dark: #0F766E;
  --primary-light: #F0FDFA;
  --primary-glow: rgba(13, 148, 136, 0.15);
  --cta: #F97316;
  --cta-dark: #EA580C;
  --cta-light: #FFF7ED;
  --bg: #FFFBEB;
  --bg-card: #FFFDF5;
  --text: #1C1917;
  --text-muted: #A8A29E;
  --text-light: #D6D3D1;
  --white: #FFFFFF;
  --border: #0D9488;
  --border-light: rgba(13, 148, 136, 0.2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-clay: 8px 8px 0px rgba(13, 148, 136, 0.25), 0 4px 16px rgba(13, 148, 136, 0.1);
  --shadow-clay-hover: 12px 12px 0px rgba(13, 148, 136, 0.3), 0 8px 24px rgba(13, 148, 136, 0.15);
  --shadow-clay-cta: 6px 6px 0px rgba(249, 115, 22, 0.35), 0 4px 16px rgba(249, 115, 22, 0.15);
  --transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fredoka', sans-serif;
  letter-spacing: -0.01em;
  text-wrap: balance;
  line-height: 1.2;
}

em { font-style: normal; color: var(--cta); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  border: 3px solid var(--text);
  box-shadow: var(--shadow-clay);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  border: 3px solid var(--text);
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-clay);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-clay-hover);
}

.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px rgba(13, 148, 136, 0.25);
}

.btn-primary.btn-lg { padding: 20px 48px; font-size: 1.1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--text);
  padding: 16px 36px;
  border-radius: 50px;
  border: 3px solid var(--text);
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 6px 6px 0px rgba(28, 25, 23, 0.15);
  transition: var(--transition);
}

.btn-outline:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(28, 25, 23, 0.2);
  border-color: var(--primary);
}

.btn-outline:active {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px rgba(28, 25, 23, 0.15);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 251, 235, 0.92);
  backdrop-filter: blur(16px);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 3px solid var(--text);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cta);
  border-radius: 3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  box-shadow: 4px 4px 0px rgba(28, 25, 23, 0.12);
  transition: var(--transition);
  position: relative;
}

.nav-icon:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0px rgba(28, 25, 23, 0.15);
  color: var(--primary);
}

.nav-icon.cart-btn { background: var(--cta-light); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 999;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 50px;
  border: 3px solid var(--text);
  box-shadow: 5px 5px 0px rgba(28, 25, 23, 0.15);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 3px solid var(--border-light);
}

.hero-stat h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-showcase {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.product-hero-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 4px solid var(--text);
  box-shadow: 12px 12px 0px rgba(13, 148, 136, 0.25), 0 8px 32px rgba(13, 148, 136, 0.1);
  position: relative;
}

.product-hero-main img {
  width: 100%;
  height: auto;
  display: block;
}

.product-hero-floating {
  position: absolute;
  background: var(--bg-card);
  border-radius: 18px;
  padding: 16px 22px;
  border: 3px solid var(--text);
  box-shadow: 6px 6px 0px rgba(28, 25, 23, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  animation: floatClay 4s ease-in-out infinite;
}

.product-hero-floating-1 { top: 6%; right: -12%; animation-delay: 0s; background: var(--primary-light); }
.product-hero-floating-2 { bottom: 10%; left: -14%; animation-delay: 2s; background: var(--cta-light); }

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--text);
}

.floating-icon.teal { background: var(--primary-light); }
.floating-icon.orange { background: var(--cta-light); }

@keyframes floatClay {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* BRAND STRIP */
.brand-strip {
  padding: 28px 0;
  border-top: 3px solid var(--border-light);
  border-bottom: 3px solid var(--border-light);
  overflow: hidden;
  background: var(--bg-card);
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.brand-strip-item svg { color: var(--primary); flex-shrink: 0; }

/* BENEFITS SECTION */
.benefits-section {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--bg-card);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-clay);
  transition: var(--transition);
  cursor: default;
  text-align: center;
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-clay-hover);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-light);
  border: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--primary);
  color: var(--white);
}

.benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRODUCTS */
.products-section {
  padding: 100px 0;
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg-card);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-clay);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-clay-hover);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  border: 3px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-card-image {
  transform: scale(1.06) rotate(-4deg);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cta);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  border: 2px solid var(--text);
  z-index: 2;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.product-card-price {
  font-size: 1.3rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-price s {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.4;
}

.product-card-actions {
  margin-top: 16px;
}

.btn-add-cart {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  border: 3px solid var(--text);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 5px 5px 0px rgba(28, 25, 23, 0.15);
  transition: var(--transition);
}

.btn-add-cart:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(28, 25, 23, 0.18);
  background: var(--primary-dark);
}

.btn-add-cart:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0px rgba(28, 25, 23, 0.15);
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-card);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-clay);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-clay-hover);
}

.testimonial-stars { color: var(--cta); font-size: 1.1rem; margin-bottom: 16px; }

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  border: 3px solid var(--text);
  box-shadow: 3px 3px 0px rgba(28, 25, 23, 0.12);
}

.ta-1 { background: var(--primary); }
.ta-2 { background: var(--cta); }
.ta-3 { background: #10B981; }

.testimonial-name { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-muted); }

/* CTA */
.cta-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08), transparent 60%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-clay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 50px;
  border: 3px solid var(--text);
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 6px 6px 0px rgba(28, 25, 23, 0.25);
  transition: var(--transition);
}

.btn-cta-clay:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(28, 25, 23, 0.3);
}

.btn-cta-clay:active {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px rgba(28, 25, 23, 0.25);
}

.btn-cta-outline-clay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  border: 3px solid rgba(255,255,255,0.3);
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cta-outline-clay:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translate(-2px, -2px);
}

/* FOOTER */
.footer {
  padding: 80px 0 0;
  background: var(--text);
  color: rgba(255,255,255,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 3px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo .logo-img { filter: invert(1); mix-blend-mode: screen; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 320px; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.social-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-col h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cta); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* PAGE HERO */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ABOUT PAGE */
.about-section {
  padding: 20px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-placeholder {
  background: var(--bg-card);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}

.placeholder-icon { color: var(--primary); }

.placeholder-caption {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 3px solid var(--border-light);
}

.about-stat h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.about-stat p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* VALUES */
.values-section {
  padding: 100px 0;
  background: var(--bg-card);
}

.values-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--bg);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-clay);
  transition: var(--transition);
}

.value-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-clay-hover);
}

.value-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* BOARD */
.scientific-board {
  padding: 100px 0;
}

.scientific-board h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 60px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.board-card {
  background: var(--bg-card);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-clay);
  transition: var(--transition);
}

.board-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-clay-hover);
}

.board-avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--primary-light);
  border: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 4px 4px 0px rgba(28, 25, 23, 0.12);
}

.board-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.board-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CONTACT PAGE */
.contact-section {
  padding: 20px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  border: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 3px 3px 0px rgba(28, 25, 23, 0.1);
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  border: 4px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-clay);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 3px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 3px 3px 0px rgba(13, 148, 136, 0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .product-hero-floating-1 { right: 0; }
  .product-hero-floating-2 { left: 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 251, 235, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 998;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links.mobile-open .nav-link { font-size: 1.5rem; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
