:root {
  --brand-primary: #22c55e;
  --brand-secondary: #14b8a6;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-light: #ffffff;
  --bg-alt: #f8fafc;
  --accent-gradient: linear-gradient(135deg, #22c55e, #14b8a6);
  --glass-bg: rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

/* --- Navigation --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: auto;
  min-height: 70px;
}

.nav-logo {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 180px;
  transition: transform 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--brand-primary);
}

.btn-insta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.2rem;
  background: #000;
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  white-space: nowrap;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: 0.5rem;
  z-index: 1100;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  z-index: 1050;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Hero Section --- */
.hero {
  padding: 12rem 5% 6rem;
  text-align: center;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(34, 197, 94, 0.08) 0%,
    transparent 50%
  );
  position: relative;
}

.hero-label {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-muted);
}

/* --- Bento Grid --- */
.bento-container {
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  background: var(--bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border-color: var(--brand-primary);
}

.bento-card.large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

/* --- Product Section --- */
.product-showcase {
  padding: 6rem 5%;
  background: #0f172a;
  color: white;
  border-radius: 40px;
  margin: 0 4% 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.product-content {
  flex: 1.2;
}
.product-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  /* Tight drop shadow to avoid "blurry" look */
  filter: drop-shadow(0 8px 15px rgba(34, 197, 94, 0.3));
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  background: var(--brand-primary);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* --- Contact Us Section --- */
.contact-section {
  padding: 6rem 5%;
  background: var(--bg-alt);
  text-align: center;
}

.contact-container {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.contact-info-card {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method .icon {
  background: rgba(34, 197, 94, 0.1);
  color: var(--brand-primary);
  padding: 12px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* --- Legal Section Styling (Privacy/Terms) --- */
.legal-header {
  padding: 12rem 5% 4rem;
  background: radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  text-align: center;
}

.legal-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.legal-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 5% 8rem;
}

.legal-section {
  margin-bottom: 3.5rem;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h2 i {
  color: var(--brand-primary);
}

.legal-section p, .legal-section li {
  color: #475569;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.legal-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-highlight {
  background: var(--bg-alt);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 3rem;
  border-radius: 24px;
  margin-top: 4rem;
}

/* --- Reveal on Scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
footer {
  padding: 6rem 5% 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: auto;
  max-height: 85px;
  width: auto;
  margin-bottom: 1.5rem;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .bento-container {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .product-showcase {
    flex-direction: column;
    text-align: center;
    padding: 5rem 5%;
    margin: 0 2% 4rem;
  }
  .product-content {
    order: 2;
  }
  .product-image {
    order: 1;
    margin-bottom: 2rem;
  }
  .product-image img {
    max-width: 250px;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem 5%;
    justify-content: space-between;
  }
  .nav-logo {
    max-height: 50px;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 10rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .bento-container {
    grid-template-columns: 1fr;
    padding: 2rem 5%;
  }
  .bento-card.large {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }
  .bento-card.large .icon-box {
    margin: 0 auto 1.5rem;
  }
  .product-image img {
    max-width: 200px;
  }
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-logo {
    max-height: 60px;
  }
  .policy-header {
    padding-top: 10rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .contact-info-card {
    padding: 2rem 1.5rem;
  }
  .product-showcase {
    border-radius: 24px;
  }
  .product-image img {
    max-width: 180px;
  }
}
