/* ===================== CSS VARIABLES ===================== */
:root {
  --green: #0cd149;
  --green-dark: #08a339;
  --green-pale: #e8fdf0;
  --green-mid: #c3f5d5;
  --ink: #111813;
  --ink-soft: #3a4040;
  --ink-muted: #6b7878;
  --cream: #fafdf8;
  --white: #ffffff;
  --border: rgba(12, 209, 73, 0.15);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ===================== HEADER ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  transition: box-shadow var(--transition);
}
header.scrolled {
  box-shadow: var(--shadow-md);
}

.logo img {
  height: 36px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
nav a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}
nav a.nav-cta {
  background: var(--green);
  color: white;
  padding: 8px 18px;
  margin-left: 8px;
}
nav a.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 209, 73, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ===================== SECTIONS ===================== */
section {
  display: none;
  flex: 1;
}
section.active {
  display: block;
  animation: fadeUp 0.45s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== HOME — HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(12, 209, 73, 0.22) 0%,
    transparent 70%
  );
  top: -200px;
  right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(12, 209, 73, 0.12) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 10%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 209, 73, 0.15);
  border: 1px solid rgba(12, 209, 73, 0.3);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 209, 73, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeUp 0.6s ease 0.5s both;
}
.stat-item {
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
  animation: fadeUp 0.7s ease 0.35s both;
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.order-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.order-header span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.order-header strong {
  font-size: 14px;
  color: white;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color var(--transition);
}
.order-item:hover {
  border-color: rgba(12, 209, 73, 0.3);
}
.item-icon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 209, 73, 0.1);
  border-radius: 10px;
}
.item-info {
  flex: 1;
}
.item-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.item-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}
.item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}

.order-total {
  margin-top: 8px;
  padding: 14px;
  background: linear-gradient(
    135deg,
    rgba(12, 209, 73, 0.15),
    rgba(12, 209, 73, 0.05)
  );
  border: 1px solid rgba(12, 209, 73, 0.25);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-total span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.order-total strong {
  font-size: 18px;
  color: var(--green);
  font-family: var(--font-display);
}

.delivery-badge {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.delivery-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ===================== HOME — WHY SECTION ===================== */
.why-section {
  background: var(--white);
  padding: 100px 40px;
}
.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 520px;
}

.why-header {
  margin-bottom: 64px;
}

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

.feature-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid #e8ede9;
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-mid);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--green);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===================== HOME — COMPANY STRIP ===================== */
.company-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a20 100%);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.company-strip::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(12, 209, 73, 0.12) 0%,
    transparent 70%
  );
  right: -100px;
  top: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.company-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.company-strip h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.company-strip h2 em {
  font-style: italic;
  color: var(--green);
}
.company-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.company-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.company-fact {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color var(--transition);
}
.company-fact:hover {
  border-color: rgba(12, 209, 73, 0.3);
}
.company-fact .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.company-fact .value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ===================== ABOUT ===================== */
.about-hero {
  background: var(--green-pale);
  padding: 72px 40px 56px;
  border-bottom: 1px solid var(--green-mid);
}
.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero .section-eyebrow {
  color: var(--green-dark);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-hero p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-body {
  padding: 72px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
}
.about-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 16px;
}
.about-block p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.8;
}
.about-block ul {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-block ul li {
  font-size: 15px;
  color: var(--ink-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}
.about-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.facts-strip {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
}
.facts-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.fact-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--green);
}
.fact-stat .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.about-cta {
  display: flex;
  gap: 24px;
}
.about-contact {
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 32px;
  flex: 1;
}
.about-contact h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.about-contact a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: none;
}
.about-contact a:hover {
  text-decoration: underline;
}
.about-contact p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ===================== PRIVACY / TERMS ===================== */
.policy-hero {
  background: var(--ink);
  padding: 72px 40px 56px;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(12, 209, 73, 0.1) 0%,
    transparent 65%
  );
  right: -100px;
  top: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.policy-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.policy-hero .section-eyebrow {
  color: var(--green);
}
.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: white;
  margin-bottom: 16px;
}
.policy-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.policy-body {
  padding: 64px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.policy-section {
  margin-bottom: 48px;
}
.policy-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-section h2 .num {
  width: 32px;
  height: 32px;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.policy-section p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.85;
}
.policy-section ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.policy-section ul li {
  font-size: 15px;
  color: var(--ink-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.policy-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.policy-divider {
  border: none;
  border-top: 1px solid #e5eae6;
  margin: 48px 0;
}

/* ===================== CONTACT SECTION (within pages) ===================== */
.contact-box {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
}
.contact-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  margin-bottom: 16px;
}
.contact-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.contact-box a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.contact-box a:hover {
  text-decoration: underline;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
footer img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
footer .footer-copy {
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--green);
}

/* ------------------------------- Start Main Css --------------------------------- */

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

:root {
  --g-green: #22c55e;
  --g-green-dark: #16a34a;
  --g-green-pale: #dcfce7;
  --g-green-glow: rgba(34, 197, 94, 0.15);
  --g-bg: #f8fafc;
  --g-dark: #111827;
  --g-dark-2: #1f2937;
  --g-dark-3: #374151;
  --g-mid: #6b7280;
  --g-light: #e5e7eb;
  --g-white: #ffffff;
  --g-radius: 24px;
  --g-radius-sm: 14px;
  --g-radius-xs: 8px;
  --g-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --g-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --g-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --g-shadow-green: 0 8px 32px rgba(34, 197, 94, 0.2);
  --g-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --g-font-display: 'Poppins', sans-serif;
  --g-font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--g-font-body);
  background: var(--g-bg);
  color: var(--g-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--g-light);
  border-radius: 99px;
}

/* ─── Layout ─── */
.g-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.g-section {
  padding: 100px 0;
}
.g-text-center {
  text-align: center;
}
.g-text-center .g-section-desc {
  margin: 0 auto;
}

/* ─── Typography ─── */
.g-section-label {
  font-family: var(--g-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-green-dark);
  margin-bottom: 12px;
}
.g-section-title {
  font-family: var(--g-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--g-dark);
  margin-bottom: 16px;
}
.g-section-desc {
  font-size: 17px;
  color: var(--g-mid);
  max-width: 560px;
  line-height: 1.7;
}
.g-green-gradient {
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Badge ─── */
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--g-green-pale);
  color: var(--g-green-dark);
  font-family: var(--g-font-display);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.g-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g-green);
  display: block;
  animation: g-pulse-dot 2s infinite;
}
@keyframes g-pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* ─── Buttons ─── */
.g-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--g-font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--g-radius-sm);
  cursor: pointer;
  transition: all var(--g-transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.g-btn-primary {
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  color: #fff;
  box-shadow: var(--g-shadow-green);
}
.g-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.32);
}
.g-btn-ghost {
  background: transparent;
  color: var(--g-dark);
  border: 1.5px solid var(--g-light);
}
.g-btn-ghost:hover {
  border-color: var(--g-green);
  color: var(--g-green);
  transform: translateY(-2px);
}
.g-btn-white {
  background: #fff;
  color: var(--g-dark);
  box-shadow: var(--g-shadow-md);
}
.g-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--g-shadow-lg);
}
.g-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.g-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ─── NAVBAR ─── */
.g-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--g-transition);
}
.g-nav.g-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--g-shadow-sm);
}
.g-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g-nav-logo {
  font-family: var(--g-font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--g-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.g-nav-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--g-shadow-green);
}
.g-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.g-nav-links a {
  font-family: var(--g-font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--g-mid);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--g-radius-xs);
  transition: all var(--g-transition);
}
.g-nav-links a:hover,
.g-nav-links a.g-active {
  color: var(--g-dark);
  background: var(--g-green-pale);
}
.g-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-nav-login {
  font-family: var(--g-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--g-dark);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: var(--g-radius-xs);
  transition: all var(--g-transition);
}
.g-nav-login:hover {
  color: var(--g-green);
}
.g-btn-nav {
  font-family: var(--g-font-display);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--g-radius-sm);
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all var(--g-transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--g-shadow-green);
}
.g-btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.3);
}
.g-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.g-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--g-dark);
  border-radius: 2px;
  transition: all var(--g-transition);
  display: block;
}
.g-hamburger.g-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.g-hamburger.g-open span:nth-child(2) {
  opacity: 0;
}
.g-hamburger.g-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.g-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--g-light);
  z-index: 999;
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.g-mobile-menu.g-open {
  display: flex;
}
.g-mobile-menu a {
  font-family: var(--g-font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--g-dark);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--g-radius-xs);
  transition: all var(--g-transition);
}
.g-mobile-menu a:hover {
  background: var(--g-green-pale);
  color: var(--g-green-dark);
}
.g-mobile-divider {
  height: 1px;
  background: var(--g-light);
  margin: 8px 0;
}

/* ─── HERO ─── */
.g-hero {
  padding: 148px 0 100px;
  background: linear-gradient(160deg, #fff 0%, #f0fdf4 40%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
.g-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.g-hero-blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.12) 0%,
    transparent 70%
  );
}
.g-hero-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.08) 0%,
    transparent 70%
  );
}
.g-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.g-hero-badge {
  margin-bottom: 28px;
}
.g-hero-headline {
  font-family: var(--g-font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--g-dark);
}
.g-hero-desc {
  font-size: 17px;
  color: var(--g-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.g-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.g-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.g-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.g-hero-stat-val {
  font-family: var(--g-font-display);
  font-size: 20px;
  font-weight: 800;
}
.g-hero-stat-label {
  font-size: 12.5px;
  color: var(--g-mid);
  font-weight: 500;
}

/* Glass Card */
.g-hero-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.g-hero-card-floater {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.g-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--g-radius);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  padding: 28px;
  animation: g-float 6s ease-in-out infinite;
}
@keyframes g-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.g-glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.g-glass-card-title {
  font-family: var(--g-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--g-dark);
}
.g-glass-card-sub {
  font-size: 12px;
  color: var(--g-mid);
  margin-top: 1px;
}
.g-delivery-badge {
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  color: #fff;
  font-family: var(--g-font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: var(--g-shadow-green);
}
.g-order-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.g-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.g-order-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.g-order-item-info {
  flex: 1;
}
.g-order-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--g-dark);
}
.g-order-item-qty {
  font-size: 11.5px;
  color: var(--g-mid);
  margin-top: 1px;
}
.g-order-item-price {
  font-family: var(--g-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--g-dark);
}
.g-order-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 4px 0;
}
.g-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
}
.g-order-total-label {
  font-family: var(--g-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--g-mid);
}
.g-order-total-val {
  font-family: var(--g-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--g-dark);
}
.g-order-btn {
  width: 100%;
  margin-top: 18px;
  padding: 13px;
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  color: #fff;
  font-family: var(--g-font-display);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--g-radius-sm);
  cursor: pointer;
  box-shadow: var(--g-shadow-green);
  transition: all var(--g-transition);
}
.g-order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(34, 197, 94, 0.35);
}

/* Float pills */
.g-float-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 99px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--g-font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g-dark);
  box-shadow: var(--g-shadow-md);
  white-space: nowrap;
}
.g-fp1 {
  top: -20px;
  left: -40px;
  animation: g-float2 5s ease-in-out infinite;
}
.g-fp2 {
  bottom: 20px;
  left: -60px;
  animation: g-float2 7s ease-in-out infinite 1.5s;
}
.g-fp3 {
  top: 50%;
  right: -50px;
  animation: g-float3 6s ease-in-out infinite 0.8s;
}
@keyframes g-float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes g-float3 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

/* ─── WHY ─── */
.g-why {
  background: #fff;
}
.g-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.g-feature-card {
  background: var(--g-bg);
  border: 1px solid var(--g-light);
  border-radius: var(--g-radius);
  padding: 32px;
  transition: all var(--g-transition);
  cursor: default;
}
.g-feature-card:hover {
  background: #fff;
  border-color: var(--g-green-pale);
  box-shadow: var(--g-shadow-md);
  transform: translateY(-6px);
}
.g-feature-card:hover .g-feature-icon-wrap {
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
}
.g-feature-card:hover .g-feature-icon-wrap svg {
  stroke: #fff;
}
.g-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--g-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--g-transition);
}
.g-feature-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--g-green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all var(--g-transition);
}
.g-feature-title {
  font-family: var(--g-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--g-dark);
  margin-bottom: 10px;
}
.g-feature-desc {
  font-size: 15px;
  color: var(--g-mid);
  line-height: 1.7;
}

/* ─── COMPANY ─── */
.g-company {
  background: var(--g-dark);
  position: relative;
  overflow: hidden;
}
.g-company-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 60% at 80% 50%,
    rgba(34, 197, 94, 0.08) 0%,
    transparent 60%
  );
}
.g-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.g-company-eyebrow {
  font-family: var(--g-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-green);
  margin-bottom: 16px;
}
.g-company-title {
  font-family: var(--g-font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.g-company-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}
.g-company-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.g-company-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--g-font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 99px;
  transition: all var(--g-transition);
  cursor: default;
}
.g-company-chip:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--g-green);
  color: var(--g-green);
}
.g-tech-illus {
  display: flex;
  justify-content: center;
  align-items: center;
}
.g-tech-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(34, 197, 94, 0.05) 0deg,
    rgba(22, 163, 74, 0.15) 120deg,
    rgba(34, 197, 94, 0.05) 240deg,
    rgba(34, 197, 94, 0.05) 360deg
  );
  border: 1px solid rgba(34, 197, 94, 0.2);
  animation: g-spin-slow 20s linear infinite;
  box-shadow:
    0 0 80px rgba(34, 197, 94, 0.1),
    inset 0 0 60px rgba(34, 197, 94, 0.05);
}
@keyframes g-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.g-tech-orb::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.g-tech-orb::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px dashed rgba(34, 197, 94, 0.1);
}
.g-tech-orb-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: g-spin-slow 20s linear infinite reverse;
}
.g-tech-orb-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  box-shadow: 0 0 60px rgba(34, 197, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.g-tech-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--g-green);
  box-shadow: 0 0 10px var(--g-green);
}
.g-td1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.g-td2 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.g-td3 {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.g-td4 {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ─── HOW ─── */
.g-how {
  background: var(--g-bg);
}
.g-steps-wrap {
  position: relative;
  margin-top: 60px;
}
.g-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.g-steps-connector {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 44px);
  right: calc(12.5% + 44px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--g-green) 0,
    var(--g-green) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.g-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.g-step-num-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--g-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--g-shadow-sm);
  transition: all var(--g-transition);
}
.g-step-card:hover .g-step-num-wrap {
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  border-color: var(--g-green);
  box-shadow: var(--g-shadow-green);
}
.g-step-card:hover .g-step-num-wrap svg {
  stroke: #fff;
}
.g-step-num-wrap svg {
  width: 32px;
  height: 32px;
  stroke: var(--g-green-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all var(--g-transition);
}
.g-step-title {
  font-family: var(--g-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--g-dark);
  margin-bottom: 10px;
}
.g-step-desc {
  font-size: 14px;
  color: var(--g-mid);
  line-height: 1.6;
}

/* ─── FEATURES ─── */
.g-features {
  background: #fff;
}
.g-features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.g-features-illus {
  display: flex;
  justify-content: center;
}
.g-grocery-illus-wrap {
  width: 360px;
  height: 360px;
  border-radius: var(--g-radius);
  background: linear-gradient(145deg, #f0fdf4, #dcfce7);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--g-shadow-md);
}
.g-grocery-illus-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(34, 197, 94, 0.12),
    transparent 60%
  );
}
.g-grocery-emoji-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.g-grocery-emoji-item {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: var(--g-shadow-sm);
  transition: all var(--g-transition);
  cursor: default;
}
.g-grocery-emoji-item:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--g-shadow-md);
}
.g-features-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.g-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.g-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  margin-top: 2px;
}
.g-check-icon svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.g-cl-title {
  font-family: var(--g-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--g-dark);
  margin-bottom: 4px;
}
.g-cl-desc {
  font-size: 14px;
  color: var(--g-mid);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.g-testimonials {
  background: var(--g-bg);
}
.g-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.g-testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--g-radius);
  padding: 32px;
  box-shadow: var(--g-shadow-sm);
  transition: all var(--g-transition);
}
.g-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--g-shadow-md);
  border-color: var(--g-green-pale);
}
.g-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  font-size: 16px;
}
.g-testimonial-text {
  font-size: 15px;
  color: var(--g-dark-3);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.g-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.g-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g-green), var(--g-green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--g-font-display);
  flex-shrink: 0;
}
.g-author-name {
  font-family: var(--g-font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--g-dark);
}
.g-author-role {
  font-size: 13px;
  color: var(--g-mid);
  margin-top: 1px;
}

/* ─── CTA ─── */
.g-cta {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  position: relative;
  overflow: hidden;
}
.g-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}
.g-cta-title {
  font-family: var(--g-font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.g-cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.g-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.g-cta-pattern {
  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='%23ffffff' fill-opacity='0.04'%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/svg%3E");
  pointer-events: none;
}

/* ─── FOOTER ─── */
.g-footer {
  background: var(--g-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 40px;
}
.g-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.g-footer-logo {
  font-family: var(--g-font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.g-footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}
.g-social-links {
  display: flex;
  gap: 10px;
}
.g-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  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.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--g-transition);
}
.g-social-link:hover {
  background: var(--g-green);
  border-color: var(--g-green);
  color: #fff;
  transform: translateY(-2px);
}
.g-footer-col-title {
  font-family: var(--g-font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.g-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: all var(--g-transition);
}
.g-footer-links a:hover {
  color: #fff;
}
.g-newsletter-label {
  font-size: 14px;
  margin-bottom: 12px;
}
.g-newsletter-form {
  display: flex;
}
.g-newsletter-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--g-radius-sm) 0 0 var(--g-radius-sm);
  color: #fff;
  font-family: var(--g-font-body);
  font-size: 14px;
  outline: none;
  transition: all var(--g-transition);
}
.g-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.g-newsletter-input:focus {
  border-color: var(--g-green);
  background: rgba(34, 197, 94, 0.07);
}
.g-newsletter-btn {
  padding: 11px 18px;
  background: var(--g-green);
  color: #fff;
  border: none;
  border-radius: 0 var(--g-radius-sm) var(--g-radius-sm) 0;
  cursor: pointer;
  font-family: var(--g-font-display);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--g-transition);
}
.g-newsletter-btn:hover {
  background: var(--g-green-dark);
}
.g-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.g-footer-copy {
  font-size: 13px;
}
.g-footer-links-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.g-footer-links-inline a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--g-transition);
}
.g-footer-links-inline a:hover {
  color: #fff;
}

/* ─── Reveal ─── */
.g-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.g-reveal.g-visible {
  opacity: 1;
  transform: translateY(0);
}
.g-reveal-d1 {
  transition-delay: 0.1s;
}
.g-reveal-d2 {
  transition-delay: 0.2s;
}
.g-reveal-d3 {
  transition-delay: 0.3s;
}
.g-reveal-d4 {
  transition-delay: 0.4s;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .g-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .g-hero-card-wrap {
    order: -1;
  }
  .g-hero-desc {
    max-width: 100%;
  }
  .g-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .g-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .g-steps-connector {
    display: none;
  }
  .g-company-grid {
    grid-template-columns: 1fr;
  }
  .g-tech-illus {
    order: -1;
  }
  .g-features-split {
    grid-template-columns: 1fr;
  }
  .g-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .g-section {
    padding: 72px 0;
  }
  .g-nav-links,
  .g-nav-cta {
    display: none !important;
  }
  .g-hamburger {
    display: flex;
  }
  .g-features-grid {
    grid-template-columns: 1fr;
  }
  .g-steps-grid {
    grid-template-columns: 1fr;
  }
  .g-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .g-footer-grid {
    grid-template-columns: 1fr;
  }
  .g-hero-stats {
    gap: 20px;
  }
  .g-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .g-tech-orb {
    width: 220px;
    height: 220px;
  }
  .g-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .g-fp1,
  .g-fp2,
  .g-fp3 {
    display: none;
  }
}
@media (max-width: 480px) {
  .g-container {
    padding: 0 16px;
  }
  .g-glass-card {
    padding: 20px;
  }
  .g-grocery-illus-wrap {
    width: 260px;
    height: 260px;
  }
  .g-grocery-emoji-item {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

/* -------------------------- End Main Css --------------------------------- */

/* ===================== MOBILE ===================== */
@media (max-width: 900px) {
  header {
    padding: 0 20px;
    height: 60px;
  }
  .hamburger {
    display: flex;
  }
  nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  nav.open {
    display: flex;
  }
  nav a {
    margin: 0;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    gap: 20px;
  }

  .why-section {
    padding: 64px 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .company-strip {
    padding: 56px 20px;
  }
  .company-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .company-facts {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 56px 20px 40px;
  }
  .about-body {
    padding: 48px 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .facts-strip {
    grid-template-columns: 1fr 1fr;
    padding: 32px;
  }

  .policy-hero {
    padding: 56px 20px 40px;
  }
  .policy-body {
    padding: 48px 20px;
  }

  .contact-box {
    padding: 32px 24px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .facts-strip {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}
