/* ═══════════════════════════════════════════════
   SHARED: Variables & Reset
   ═══════════════════════════════════════════════ */

:root {
  /* Brand */
  --green-900: #064e2b;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;

  /* Light mode */
  --bg-page: #f0f4f8;
  --bg-card: #ffffff;
  --bg-sidebar: #ffffff;
  --bg-highlight: #f0fdf4;
  --bg-badge: #dcfce7;
  --bg-nav: rgba(255, 255, 255, 0.88);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-badge: #15803d;
  --border: #e2e8f0;
  --border-highlight: #16a34a;
  --accent: #16a34a;
  --accent-green: #16a34a;
  --accent-hover: #15803d;
  --accent-light: #f0fdf4;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06);
  --sidebar-dot-inactive: #cbd5e1;
  --section-icon-bg: #f0fdf4;
  --contact-bg: #f8fafc;
  --footer-bg: #052e16;
  --footer-border: rgba(255, 255, 255, 0.08);
  --scrollbar-track: #f1f5f9;
  --scrollbar-thumb: #cbd5e1;
  --radius: 16px;
}

[data-theme="dark"] {
  --bg-page: #0f172a;
  --bg-card: #1e293b;
  --bg-sidebar: #1e293b;
  --bg-highlight: #052e16;
  --bg-badge: #14532d;
  --bg-nav: rgba(15, 23, 42, 0.92);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-badge: #86efac;
  --border: #334155;
  --border-highlight: #22c55e;
  --accent: #22c55e;
  --accent-green: #22c55e;
  --accent-hover: #16a34a;
  --accent-light: #052e16;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.35);
  --sidebar-dot-inactive: #334155;
  --section-icon-bg: #052e16;
  --contact-bg: #0a1a0f;
  --footer-bg: #022614;
  --footer-border: rgba(255, 255, 255, 0.06);
  --scrollbar-track: #1e293b;
  --scrollbar-thumb: #334155;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  scrollbar-width: none;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 0;
  display: none;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════
   SHARED: Navbar (topnav / navbar)
   ═══════════════════════════════════════════════ */

/* --- Terms page nav --- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 78, 43, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.topnav-inner {
  max-width: 1120px;
  margin: auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Index page nav --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 78, 43, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
  padding: 12px 32px;
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(2, 38, 20, 0.96);
}

/* --- Shared brand --- */
.nav-brand,
.navbar .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo.green {
  background: linear-gradient(135deg, var(--green-500), var(--green-900));
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}

.navbar .logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--white, #fff);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar.scrolled .logo {
  color: var(--text-primary);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a:hover {
  color: var(--green-500);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  font-family: inherit;
  flex-shrink: 0;
}

.navbar .theme-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .theme-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.topnav .theme-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.topnav .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.theme-toggle:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

.navbar .theme-toggle:hover,
.navbar.scrolled .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.toggle-icon {
  font-size: 15px;
  line-height: 1;
}

/* ═══════════════════════════════════════════════
   SHARED: Buttons
   ═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: #ffffff;
  color: var(--green-700);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-600);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.btn-green:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

/* ═══════════════════════════════════════════════
   SHARED: Animations
   ═══════════════════════════════════════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   SHARED: Footer
   ═══════════════════════════════════════════════ */

.footer,
.page-footer {
  background: var(--footer-bg);
  transition: background 0.3s ease;
}

.footer {
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-border);
  flex-wrap: wrap;
}

.footer-brand .footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
  margin: 0;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: var(--green-500);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact h4 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact-item i {
  margin-top: 2px;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--accent-green);
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-address span {
  max-width: 240px;
  display: block;
}

.footer-address strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Legal nav link */
.legal-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.legal-nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Legal related card */
.legal-related-card {
  background: var(--bg-highlight);
  border: 1px solid var(--border-highlight);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.legal-related-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-related-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.legal-related-left h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
  transition: color 0.3s ease;
}

.legal-related-left p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* nav-logo-img in topnav (legal pages) — always white since bg is green */
.topnav .nav-logo-img {
  filter: brightness(0) invert(1);
}

/* Terms page footer */
.page-footer {
  border-top: 1px solid var(--footer-border);
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease;
}

.page-footer a {
  color: var(--accent);
  text-decoration: none;
}

.page-footer a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   INDEX PAGE: Hero
   ═══════════════════════════════════════════════ */

.index-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(
    160deg,
    #064e2b 0%,
    #15803d 40%,
    #16a34a 70%,
    #22c55e 100%
  );
  overflow: hidden;
}

[data-theme="dark"] .index-hero {
  background: linear-gradient(
    160deg,
    #022614 0%,
    #064e2b 40%,
    #0f5c2e 70%,
    #15803d 100%
  );
}

.index-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.index-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.index-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.index-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #bbf7d0, #fef9c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════════════════
   INDEX PAGE: Sections
   ═══════════════════════════════════════════════ */

.section {
  padding: 100px 24px;
  scroll-margin-top: 88px;
}

.section-alt {
  background: var(--bg-card);
  transition: background 0.3s ease;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  transition: color 0.3s ease;
}

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

.about-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-visual-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(
    circle at 2px 2px,
    white 1px,
    transparent 0
  );
  background-size: 24px 24px;
}

.about-visual-icon {
  position: relative;
  z-index: 1;
  font-size: 100px;
  line-height: 1;
}

.about-text h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  transition: color 0.3s ease;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.about-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-green);
  letter-spacing: -1px;
}

.about-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* VMV Cards */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vmv-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vmv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  opacity: 0;
  transition: opacity 0.3s;
}

.vmv-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.vmv-card:hover::before {
  opacity: 1;
}

.vmv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

[data-theme="dark"] .vmv-icon {
  background: rgba(22, 163, 74, 0.15);
}

.vmv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
  transition: color 0.3s ease;
}

.vmv-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  transition: color 0.3s ease;
}

.vmv-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.vmv-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.vmv-card ul li:last-child {
  border-bottom: none;
}

.vmv-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

[data-theme="dark"] .product-icon {
  background: rgba(22, 163, 74, 0.15);
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.product-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  transition: color 0.3s ease;
}

/* Brand Products Grid */
.brand-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.brand-product-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.brand-product-img-wrap {
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

[data-theme="dark"] .brand-product-img-wrap {
  background: rgba(22, 163, 74, 0.08);
}

.brand-product-img-wrap img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-product-card:hover .brand-product-img-wrap img {
  transform: scale(1.05);
}

.brand-product-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-product-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.brand-product-body p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  transition: color 0.3s ease;
}

@media (max-width: 900px) {
  .brand-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .brand-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Core Values */
.corevalue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.corevalue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.corevalue-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.corevalue-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.corevalue-card:hover::after {
  transform: scaleX(1);
}

.corevalue-icon {
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 1;
}

.corevalue-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.corevalue-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .corevalue-grid {
    grid-template-columns: 1fr;
  }
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.accordion-item.open {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  gap: 12px;
  text-align: left;
}

.accordion-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.accordion-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.accordion-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    color 0.2s ease;
}

.accordion-chevron svg {
  width: 100%;
  height: 100%;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.accordion-item.open .accordion-title {
  color: var(--accent-green);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 20px;
}

.accordion-item.open .accordion-body {
  max-height: 200px;
  padding: 0 20px 18px;
}

.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.accordion-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.accordion-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.accordion-empty {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-style: italic;
  transition: color 0.2s ease;
}

/* Scroll to Top */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(22,163,74,0.35);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#scroll-top:hover {
    background: var(--green-700);
    transform: translateY(-2px);
}

#scroll-top svg {
    width: 18px;
    height: 18px;
}


/* Team Photo Scroll */
.team-scroll-wrap {
  margin-top: 48px;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.team-scroll-wrap::before,
.team-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.team-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card), transparent);
}

.team-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card), transparent);
}

.team-scroll-track {
  display: flex;
  gap: 16px;
  animation: team-marquee 24s linear infinite;
  width: max-content;
}

.team-scroll-wrap:hover .team-scroll-track {
  animation-play-state: paused;
}

@keyframes team-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.team-scroll-item {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.team-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-scroll-item:hover img {
  transform: scale(1.05);
}

.team-scroll-item span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* Career */
.career-banner {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-700) 100%
  );
  border-radius: 24px;
  display: grid;
  grid-template-columns: 420px 1fr;
  overflow: hidden;
  color: #ffffff;
  position: relative;
}

.career-img {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  flex-shrink: 0;
}

.career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

[data-theme="dark"] .career-banner {
  background: linear-gradient(135deg, #022614 0%, #064e2b 100%);
}

.career-content {
  position: relative;
  z-index: 1;
  padding: 56px 52px;
}

.career-content .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.career-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  margin: 8px 0 20px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.career-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0 0 14px;
}

.career-sub {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.career-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.career-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.career-hint strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.career-hint em {
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 7px;
  border-radius: 4px;
}

.career-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.career-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.career-tags span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.career-tags span:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

  .career-img {
    min-height: 240px;
  }

  .career-content {
    padding: 36px 28px;
  }

  .career-tags {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

/* Tech Banner */
.tech-banner {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 48px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .tech-banner {
  background: linear-gradient(160deg, #022614, #064e2b);
}

.tech-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
  border-radius: 50%;
}

.tech-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.tech-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.tech-content p {
  font-size: 16px;
  opacity: 0.85;
  margin: 0 0 28px;
  line-height: 1.7;
  max-width: 480px;
}

.tech-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tech-visual {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   AGEN & RESELLER BANNER
   ═══════════════════════════════════════════════ */

.agent-banner {
  background: linear-gradient(135deg, #064e2b 0%, #15803d 60%, #22c55e 100%);
  border-radius: 24px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .agent-banner {
  background: linear-gradient(135deg, #022614 0%, #064e2b 60%, #0d5e30 100%);
}

.agent-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.agent-banner-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.agent-banner-text h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 8px 0 14px;
  letter-spacing: -0.4px;
}

.agent-banner-text p {
  font-size: 15px;
  opacity: 0.88;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.agent-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: #fff !important;
  color: #15803d !important;
  font-weight: 700;
  padding: 14px 28px;
  white-space: nowrap;
}

.agent-cta:hover {
  background: #f0fdf4 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Navbar agent link highlight */
.nav-link-agent {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 6px 14px !important;
  font-weight: 600;
}

.nav-link-agent:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

@media (max-width: 768px) {
  .agent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }

  .agent-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   TERMS PAGE: Hero
   ═══════════════════════════════════════════════ */

.terms-hero {
  background: linear-gradient(135deg, #064e2b 0%, #15803d 50%, #22c55e 100%);
  padding: 60px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .terms-hero {
  background: linear-gradient(135deg, #022614 0%, #064e2b 50%, #0f5c2e 100%);
}

.terms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.terms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.terms-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.terms-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 24px;
}

.terms-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════
   TERMS PAGE: Layout
   ═══════════════════════════════════════════════ */

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 84px;
  background: var(--bg-sidebar);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--accent-light);
  color: var(--accent);
}

.sidebar-nav a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sidebar-dot-inactive);
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.sidebar-nav a:hover .dot,
.sidebar-nav a.active .dot {
  background: var(--accent);
}

/* Cards */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--section-icon-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.card-header-text h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.card-header-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Section blocks */
.section-block {
  margin-bottom: 24px;
}

.section-block:last-child {
  margin-bottom: 0;
}

.section-block h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.section-block h3::before {
  content: "";
  display: block;
  width: 3px;
  height: 14px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-block p {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

/* Highlight box */
.highlight-box {
  background: var(--bg-highlight);
  border: 1px solid var(--border-highlight);
  border-left-width: 4px;
  border-radius: 10px;
  padding: 20px;
  margin: 16px 0;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.highlight-box p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Tracking grid */
.tracking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.tracking-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.tracking-item .t-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.tracking-item .t-interval {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.tracking-item .t-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Data list */
.data-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.data-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.data-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* Contact card */
.contact-card {
  background: var(--contact-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.contact-card h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card);
}

.contact-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.contact-btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.contact-btn.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

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

  .about-visual {
    height: 260px;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-banner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }

  .tech-content p {
    max-width: 100%;
  }
  .tech-features {
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
    grid-template-columns: 1fr;
    padding: 20px 16px 40px;
  }

  .sidebar {
    position: static;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .sidebar-nav a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .tracking-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .terms-hero {
    padding: 40px 16px 60px;
  }

  .topnav-inner {
    padding: 0 16px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
}

@media (max-width: 600px) {
  .navbar .nav-links {
    display: none;
  }

  .index-hero {
    padding: 100px 20px 80px;
  }

  .section {
    padding: 64px 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    padding: 14px 16px;
  }
  .navbar.scrolled {
    padding: 10px 16px;
  }
}
