:root {
  --green-dark: #1a3c2e;
  --green-mid: #687972;
  --green-light: #a8c94e;
  --amber: #f0a500;
  --amber-dark: #d4920a;
  --amber-stat: #b07a10;
  --card-bg: #e8d9b8;
  --text-light: #f5f5f5;
  --text-muted: #b0c4b8;
  --dark-bg: #111c17;

  /* --green-dark:  #1a3c2e; */
  /* --green-mid:   #22503c; */
  /* --green-light: #a8c94e; */
  /* --amber:       #f0a500; */
  /* --amber-dark:  #c8860a; */
  --card-bg-dark:     #1e4535;
  /* --text-muted:  #8faa9a; */
  /* --white:       #ffffff; */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.text-yellow{
  color: var(--amber);
}
body {
  font-family: "Inter", sans-serif;
  background: var(--green-dark);
  color: #1a1a1a;
}

h1,h2,h3,h4{
  font-family: "Raleway", sans-serif;
}

h1{
  font-weight: 900;
  font-size: calc(max(3rem, 3.8vw));
}
h2{
  font-weight: 900;
  font-size: calc(max(2.5rem, 3.7vw));
}

/* ── NAVBAR ── */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index: 1050;
}
.navbar {
  background: var(--green-dark) !important;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar-brand img {
  height: 38px;
}
.navbar-brand .brand-text {
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.navbar-brand .brand-text span {
  color: var(--amber);
}
.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--green-light);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.brand-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--green-dark);
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--amber) !important;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  /* background: url("../images/backgrounds/bg-01.png") no-repeat; */
  background-image:linear-gradient(rgb(26 60 46 / 90%), rgb(4 24 16 / 90%)),  url('../images/backgrounds/bg-01.png');
  background-size: cover;
  background-position: center;

}

.hero-bg h1{
  color: #fff;
  line-height: 1.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}
.hero-content h1 {
  color: #fff;
  line-height: 1.18;
  margin-bottom: 28px;
}
.hero-content h1 .hl-amber {
  color: var(--amber);
}

.hero-content p.lead{
  font-size: 2.3rem;
  font-family: "Raleway", sans-serif;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-leaf-top {
  width: 18px;
  height: 22px;
  background-image: url('../images/icons/leaf-left.png');
  margin-bottom: 18px;
  margin-right: 6px;
  vertical-align: top;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-leaf-bottom {
  width: 18px;
  height: 22px;
  background-image: url('../images/icons/leaf-right.png');
  margin-top: 18px;
  margin-right: 6px;
  vertical-align: bottom;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero h1 .highlight {
  color: var(--amber);
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  line-height: 1.6;
}

.btn{
  padding: 1rem 3rem;
  text-transform: uppercase;
  color: var(--dark-bg);
  font-weight: 500;
}

.btn-hero-primary {
  background: var(--green-light);
  transition: all 0.22s;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: darken(var(--green-light), 10%);
  color: var(--green-light);
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* padding: 13px 28px; */
  border-radius: 4px;
  transition: all 0.22s;
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--green-dark);
}

/* decorative dots */
.hero-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.7;
}
.hero-dot-1 {
  top: 22%;
  right: 18%;
}
.hero-dot-2 {
  bottom: 28%;
  right: 30%;
  opacity: 0.4;
  width: 5px;
  height: 5px;
}

/* ── STORY SECTION ── */
.story-section {
  background: var(--green-dark);
  padding: 80px 0;
}
.story-img-placeholder {
  background: #000000;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px;
}
.story-section h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 18px;
}
.story-section h2 .highlight {
  color: var(--amber);
}
.story-section p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 20px 18px;
  text-align: center;
  flex: 1;
}
.stat-card .icon{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  padding: 6px;
  background-color: transparent;
  color: #ffffff;
}
.stat-card .number {
  font-weight: 900;
  font-size: 1.9rem;
  color: #fff;
}

/* .stat-card .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 2px;
} */
.stat-card .label {
  font-size: 1.3rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 10px;
  transition: all 0.22s;
}
.story-section a{
  text-decoration: none;
  transition: all 0.22s;
}
.story-section a:hover{
  border: 2px solid var(--amber) !important;
  transition: all 0.22s;
  border-radius: 6px;
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-amber:hover {
  background: var(--amber-dark);
  color: #fff;
}
.btn-outline-light-sm {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-light-sm:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ── DISCOVER SECTION ── */
.discover-section {
  background: var(--amber);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.discover-section h2 {
  font-weight: 900;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--dark-bg);
  margin-bottom: 14px;
}
.discover-section p {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.75;
  margin-bottom: 8px;
}
.btn-dark-sm {
  background: var(--dark-bg);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-dark-sm:hover {
  background: #2a2a2a;
  color: #fff;
}
.btn-outline-dark-sm {
  background: transparent;
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-dark-sm:hover {
  background: var(--dark-bg);
  color: #fff;
}

/* mockup frame */
.store-mockup {
  position: relative;
  z-index: 2;
}
.mockup-frame {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  border: 6px solid #fff;
  max-width: 300px;
  margin-left: auto;
}
.mockup-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.mockup-frame .mockup-badge {
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  padding: 18px;
}
.mockup-frame .mockup-badge small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}
.mockup-inner-header {
  background: var(--green-dark);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-inner-header span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

/* ── BRANDS ── */
.brands-section {
  background: var(--green-dark);
  padding: 60px 0;
}
.brands-section h2 {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 30px;
}
.brand-pill {
  background: transparent;
  border: 2px solid var(--green-light);
  border-radius: 30px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--green-light);
  display: inline-block;
  margin: 5px 4px;
  letter-spacing: 0.04em;
}
.brands-more {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: 10px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green-light);
  padding: 56px 0;
}
.cta-strip h2 {
  font-weight: 900;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--dark-bg);
  line-height: 1.2;
}
.cta-strip h2 .highlight {
  color: #fff;
}
.btn-cta-dark {
  background: var(--dark-bg);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta-dark:hover {
  background: #2a2a2a;
  color: #fff;
}

/* stroe locator css */
/* ── MAP SECTION ── */
.map-section {
  width: 100%;
  height: 500px;
  background: #e8e0d0;
  position: relative;
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Fallback map tile background */
.map-fallback {
  width: 100%;
  height: 260px;
  background:
    linear-gradient(rgba(232, 224, 208, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 224, 208, 0.15) 1px, transparent 1px),
    url('"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/India_location_map.svg/1200px-India_location_map.svg.png"')
      center/cover no-repeat;
  background-color: #d4e8c8;
  position: relative;
}
.map-layers-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* about us page css */

/* ─── HERO BANNER ─── */
.hero-banner {
  position: relative;
  min-height: 340px;
  background: var(--green-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to left,
      rgba(26, 60, 46, 0.92) 45%,
      rgba(26, 60, 46, 0.3) 100%
    ),
    url('../images/about/about_bg.png')
      right center / cover no-repeat;
}
/* Storefront billboard overlay on the right */
.hero-billboard {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 26%, 320px);
  background: #1a2a22;
  border: 4px solid #2e4a38;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.hero-billboard-screen {
  background: #f0ede5;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-billboard-base {
  background: #8a4a30;
  height: 10px;
}

.hero-leaf {
  display: inline-block;
  width: 13px;
  height: 16px;
  background: var(--green-light);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-right: 6px;
  vertical-align: middle;
}
.btn-hero-amber {
  background: var(--amber);
  color: #000000;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-hero-amber:hover {
  background: var(--amber-dark);
  color: #fff;
}

/* ─── OUR STORY ─── */
.about-us .story-section {
  background: var(--green-light);
  padding: 0px;
}
.about-us .story-mockup-wrap {
  position: relative;
}
.about-us .story-mockup-frame {
  background: #fff;
  border: 5px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 230px;
}
.about-us .story-mockup-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.about-us .story-mockup-badge {
  background: var(--amber);
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  text-align: center;
  padding: 13px;
}
.about-us .story-mockup-badge small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
}
.about-us .story-mockup-header {
  background: var(--green-dark);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-us .story-mockup-header span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.about-us .story-stand {
  width: 50px;
  height: 100px;
  background: #b0b0b0;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

/* Story text */
.about-us .story-section h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #1a1a1a;
  margin-bottom: 18px;
}
.about-us .story-section .story-body {
  font-size: 0.87rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}
.about-us .story-section .story-body strong {
  color: var(--green-dark);
}

/* What We Stand For */
.stand-block {
  margin-bottom: 18px;
}
.stand-block h4 {
  font-weight: 800;
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.stand-block h4 .hl-amber {
  color: var(--amber);
}
.stand-block p {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.7;
}

/* Buttons */
.btn-apply-dark {
  background: var(--green-dark);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-apply-dark:hover {
  background: var(--green-mid);
  color: #fff;
}
.btn-outline-dark-sm {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-dark-sm:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ─── NUMBERS ─── */
.numbers-section {
  background: var(--amber);
  padding: 64px 0;
  text-align: center;
}
.numbers-section h2 {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #1a1a1a;
  margin-bottom: 36px;
}
.numbers-section h2 .hl-green {
  color: var(--green-dark);
}
.stat-box {
  background: var(--amber-stat);
  border-radius: 6px;
  padding: 26px 18px;
  text-align: center;
}
.stat-box .num {
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.stat-box .lbl {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* ─── SOCIAL PROOF ─── */
.social-section {
  background: var(--green-dark);
  padding: 70px 0;
}
.social-section h2 {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.3;
}
.social-section h2 .hl-amber {
  color: var(--amber);
}

/* Testimonial card */
.testi-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 310px;
}
.testi-card::after {
  content: "";
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 150px;
    height: 150px;
    background: var(--amber);
    border-radius: 45% 0;
  z-index: 0;
}
.testi-card-body {
  position: relative;
  z-index: 1;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testi-icon {
  width: 34px;
  height: 34px;
  background: var(--green-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  position: relative;
}
.testi-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--green-dark);
}
.testi-card .testi-text {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}
.testi-card .testi-name {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green-dark);
}
.testi-card .testi-role {
  font-size: 0.75rem;
  color: #777;
  margin-top: 2px;
}

/* ─── FAQS ─── */
.faq-section {
  background: var(--green-dark);
  padding: 70px 0;
}
.faq-section h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  /* margin-bottom: 36px; */
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.faq-section h2 .hl-amber {
  color: var(--amber);
}
/* .faq-leaf {
      display: inline-block;
      width: 13px; height: 16px;
      background: var(--green-light);
      clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
      vertical-align: middle;
    } */

/* Accordion overrides */
.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 20px;
  box-shadow: none;
  border-radius: 5px !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  /* background: rgba(255,255,255,0.10); */
  background: var(--green-light);
  color: #fff;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: invert(1);
}
.faq-accordion .accordion-body {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.75;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── STORE LOCATOR SECTION ── */
.locator-section {
  background: var(--green-dark);
  padding: 60px 0 70px;
}
.locator-section .section-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.section-title .dot-green {
  display: inline-block;
  width: 12px;
  height: 15px;
  background: var(--green-light);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin: 0 4px;
  vertical-align: middle;
}
.section-title .highlight {
  color: var(--amber);
}

/* Search bar */
.search-bar-wrap {
  max-width: 700px;
  margin: 0 auto 50px;
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.search-bar-wrap input {
  flex: 1;
  border: none;
  padding: 16px 22px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  background: #fff;
}
.search-bar-wrap input::placeholder {
  color: #aaa;
}
.search-bar-wrap button {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.search-bar-wrap button:hover {
  background: var(--amber-dark);
}

/* ── STORE CARDS ── */
.locator-section .store-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 210px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.locator-section .store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}



/* Amber curved blob bottom-right */

.locator-section .store-card-body {
  position: relative;
  z-index: 1;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Card icon */
.card-store-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  position: relative;
}
.card-store-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--green-dark);
}
/* small dot top-right of icon */

.locator-section .store-card h3 {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.locator-section .store-card .store-address {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 4px;
}
.locator-section .store-card .store-phone {
  font-size: 0.78rem;
  color: #444;
  font-weight: 600;
  margin-bottom: 14px;
}
.locator-section .store-card .store-phone a {
  color: #444;
  text-decoration: none;
}
.btn-view-map:hover {
  background: var(--green-mid);
  color: #fff;
}

.locator-section .store-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--amber);
  border-radius: 45% 0;
  z-index: 0;
}
.btn-view-map {
  background: var(--green-dark);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}


/* franchis css */

.hero-parent {
  position: relative;
  top: 0;
  bottom: 0;
}

.hero-parent img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  height: 100%;
  width: auto;
}

.franchise .hero-top {
  padding: calc(max(3rem, 7%)) 0;
}

/* franchise css */

/* Amber numbers strip — overlapping both white & amber */
.franchise .hero-numbers {
  background: var(--amber);
  padding: 36px 0 40px;
  margin-top: 0;
}

.franchise .hero-numbers h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #1a1a1a;
  margin-bottom: 28px;
}

.franchise .hero-numbers h2 .highlight {
  color: var(--green-dark);
}
.green-light {
  color: var(--green-light);
}

.franchise .stat-box {
  background: var(--amber-stat);
  border-radius: 6px;
  padding: 22px 18px;
  text-align: center;
}

.franchise .stat-box .number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.franchise .stat-box .lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin-top: 5px;
}


/* ── PARTNER STORIES ── */
.partner-section {
  background: #fff;
  padding: 60px 0 0;
}

.partner-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #1a1a1a;
  margin-bottom: 30px;
}

.partner-section h2 .highlight {
  color: var(--amber);
}

.video-thumb {
  background: url("../images/backgrounds/video-placeholder.jpg"),#e8eef5;
  background-size: cover;
  background-position: center;
  border: 0.4rem solid #000;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.video-thumb:hover {
  background: #dce5ef;
}

.video-play-icon {
  width: 52px;
  height: 52px;
  opacity: 0.35;
}

.you-can-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 28px;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.you-can-next h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1a1a1a;
}

.btn-open-franchise {
  background: var(--dark-bg);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-open-franchise:hover {
  background: #2a2a2a;
  color: #fff;
}

/* ── CHOOSE / GROW ── */
.grow-section {
  background: var(--green-dark);
  padding: 70px 0;
}

.grow-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: #fff;
  margin-bottom: 12px;
}

.grow-section h2 .highlight-amber {
  color: var(--amber);
}

.grow-section h2 .highlight-green {
  color: var(--green-light);
}

.grow-section .subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

/* .model-card {
  background: #000000;
  border-radius: 6px;
  overflow: hidden;
  padding: 8px;
} */

.model-card {
  display: flex;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column-reverse;
}

.model-label {
  background: rgba(255, 255, 255, 0.92);
  padding: 20px 20px;
  margin: 1rem 3rem;
}

.model-label h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.model-label p {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ── CONTACT / FORM ── */
.contact-section {
  background: var(--amber);
  background: linear-gradient(180deg, rgba(240, 165, 0, 1) 0%, rgba(240, 165, 0, 1) 75%, rgba(168, 201, 78, 1) 75%, rgba(168, 201, 78, 1) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.contact-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-section .sub {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Form card */
.form-card {
  background: #d8d8d8;
  border-radius: 6px;
  padding: 36px 32px 32px;
  position: relative;
  z-index: 2;
}

.form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.form-label-sm {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.form-ctrl {
  width: 100%;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  padding: 10px 13px;
  font-size: 0.85rem;
  color: #333;
  outline: none;
  margin-bottom: 5px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.2s;
  appearance: auto;
}
.text-danger{
  color:#dc3545;
  font-size:12px;
  display:block;
}
.form-ctrl:focus {
  border-color: var(--green-dark);
}

.form-ctrl::placeholder {
  color: #aaa;
}

.form-check-label-sm {
  font-size: 0.78rem;
  color: #444;
  line-height: 1.4;
}

.form-check-input:checked {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-form-submit {
  width: 100%;
  background: var(--dark-bg);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-form-submit:hover {
  background: #2a2a2a;
}


/* ── FOOTER ── */
footer {
  background: #1e1e1e;
  padding: 64px 0 0;
}
.footer-brand-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.footer-brand-text span {
  color: var(--amber);
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
footer a {
  color: var(--text-muted);
  font-size: 0.87rem;
  text-decoration: none;
  display: block;
  margin-bottom: 9px;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--amber);
}
.footer-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 4px;
  padding: 11px 14px;
  width: 100%;
  font-size: 0.87rem;
  margin-bottom: 10px;
  outline: none;
}
.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.btn-subscribe {
  background: var(--amber);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  width: 100%;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-subscribe:hover {
  background: var(--amber-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 18px 0;
}
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  margin: 0;
}
.footer-bottom a {
  display: inline;
  margin: 0 6px;
}
.footer-bottom a:hover {
  color: var(--amber);
}
.social-icon{
  color: var(--amber);
  margin-bottom: 9px;
  font-size: 18px;
}
/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 767px) {
  .hero {
    min-height: 420px;
  }
  .hero-content {
    padding: 70px 0 60px;
  }
  .mockup-frame {
    max-width: 240px;
    margin: 30px auto 0;
  }
  .stat-card .number {
    font-size: 1.5rem;
  }
  .cta-strip .d-flex {
    flex-direction: column;
    gap: 20px !important;
  }
}
@media (max-width: 575px) {
  .hero h1 {
    font-size: 3.5rem;
        margin-top: 2rem;
  }
  .story-section h2,
  .discover-section h2 {
    font-size: 1.6rem;
  }
}

/* ─────────────────────────────────────────
   SECTION COMMON
───────────────────────────────────────── */
.section-wrap {
  padding: 72px 0;
}
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 48px;
}
.section-heading .hl-amber { color: var(--amber); }
.section-heading .hl-green { color: var(--green-light); }

/* ══════════════════════════════════════════
   SECTION 1 – QUADRANT
══════════════════════════════════════════ */
#quadrant { background: var(--green-dark); }

/* Y-axis label wrapper */
.axis-y-wrap {
  width: 32px;
  padding: 10px 0;
}

/* Axis labels */
.axis-y-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  user-select: none;AA
}
.axis-arrow { font-size: 0.7rem; }

.quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  flex: 1;
}

/* Each quadrant cell */
.q-cell {
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  position: relative;
}
/* Top-left: dashed green */
.q-kirana {
  border: 2px dashed var(--green-light);
  background: rgba(168,201,78,0.08);
}
.q-kirana p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-light);
  line-height: 1.35;
}
/* Top-right: amber FreshFleet */
.q-freshfleet {
  background: var(--amber);
  box-shadow: 0 8px 40px rgba(240,165,0,0.35);
}
.q-freshfleet .star {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 1.5rem;
}
.q-freshfleet h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.q-freshfleet p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  opacity: 0.75;
}
/* Bottom-left: white/light */
.q-dmart {
  background: rgba(255,255,255,0.90);
}
.q-dmart p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.7;
}
/* Bottom-right: white/light */
.q-foodhall {
  background: rgba(255,255,255,0.90);
}
.q-foodhall p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.7;
}

/* Axis x label */
.axis-x-wrap {
  text-align: center;
  margin-top: 10px;
}
.axis-x-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}

/* Adjacent Threats */
.threats-col { padding-left: 28px; }
.threats-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.threat-card {
  background: var(--card-bg-dark);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.threat-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 3px;
}
.threat-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Crosshair lines */
.quadrant-outer {
  position: relative;
}
.cross-h {
  position: absolute;
  left: 32px; right: 0;
  top: 50%;
  height: 2px;
  background: rgba(168,201,78,0.25);
  pointer-events: none;
  z-index: 0;
}
.cross-v {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% + 16px);
  width: 2px;
  background: rgba(168,201,78,0.25);
  pointer-events: none;
  z-index: 0;
}




/* other section csss */
   /* ── HEADING BLOCK ── */

  /* ── GRID LAYOUT ── */
  /* Left 2×2 grid + right tall card */
  .cards-outer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: stretch;
  }
  .cards-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  /* ── BASE CARD ── */
  .ff-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 26px 24px;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
  }
  .ff-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.09);
    transform: translateY(-3px);
  }

  /* Icon circle */
  .card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #f0f2ee;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .card-icon svg {
    width: 25px; height: 25px;
  }

  .ff-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .ff-card p {
    font-size: 0.85rem;
    color: #1f2321;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
  }
  .card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green-light);
    letter-spacing: 0.01em;
  }
  .card-tag svg {
    width: 14px; height: 14px;
  }

  /* ── FEATURED / CENTER CARD (green border) ── */
  .ff-card.featured {
    border: 2px solid var(--green-light);
    background: #fff;
  }
  .ff-card.featured h3 {
    color: var(--green-dark);
    font-size: 1.2rem;
  }

  /* THE LEADER badge */
  .leader-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--green-dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 18px 0 12px;
  }

  /* Featured icon — green filled */
  .ff-card.featured .card-icon {
    background: var(--green-light);
  }
  .ff-card.featured .card-icon svg {
    stroke: #fff;
  }

  /* ── DARK RIGHT CARD ── */
  .ff-card.dark-card {
    background: var(--green-dark);
    border-color: var(--green-dark);
    border-radius: 24px;
    padding: 36px 30px;
    width: 260px;
    justify-content: flex-start;
  }
  .ff-card.dark-card:hover {
    box-shadow: 0 10px 40px rgba(26,60,46,0.35);
  }
  .ff-card.dark-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .advantage-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .advantage-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
  }
  .adv-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .adv-icon svg {
    width: 16px; height: 16px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    .cards-outer {
      grid-template-columns: 1fr;
    }
    .ff-card.dark-card {
      width: 100%;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .ff-card.dark-card h3 {
      width: 100%;
      margin-bottom: 12px;
      font-size: 1.2rem;
    }
    .advantage-list {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
    }
    .advantage-list li {
      min-width: 200px;
      flex: 1;
    }
  }
  @media (max-width: 767px) {
    .cards-left {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .ff-card.featured { order: -1; }
    .better-section { padding: 52px 0 60px; }
  }
  @media (max-width: 575px) {
    .section-eyebrow { font-size: 1.5rem; }
    .ff-card { padding: 22px 20px 20px; }
  }

/* ══════════════════════════════════════════
   SECTION 2 – SKU MIX
══════════════════════════════════════════ */
#sku-mix { background: #163328; }

/* Donut chart — pure CSS */
.donut-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}
.donut-svg {
  width: 240px; height: 240px;
  transform: rotate(-90deg);
}
.donut-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.donut-center .pct {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.donut-center .sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--green-light);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.donut-legend {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.legend-dot {
  width: 13px; height: 13px;
  border-radius: 3px;
  flex-shrink: 0;
}
.leg-amber { background: var(--amber); }
.leg-green { background: var(--green-light); }
.leg-white { background: rgba(255,255,255,0.7); }

/* Donut floating labels */
.donut-labels {
  width: 240px;
  position: relative;
}
.donut-label {
  position: absolute;
  font-size: 0.72rem;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
.donut-label--fb {
  top: -200px;
  left: -36px;
  text-align: right;
}
.donut-label--domestic {
  top: -130px;
  left: -50px;
  text-align: right;
}
.donut-label--intl {
  top: -130px;
  right: -60px;
  text-align: left;
}

/* Comparison table */
.compare-header {
  display: grid;
  grid-template-columns: 1fr .6fr .6fr;
  gap: 6px;
  margin-bottom: 8px;
}
.compare-col-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.col-blinkit { color: var(--text-muted); }
.col-freshfleet { color: var(--amber); }

.compare-row {
  display: grid;
  grid-template-columns: 1fr .6fr .6fr;
  gap: 6px;
  margin-bottom: 6px;
}
.compare-cell {
  background: var(--card-bg-dark);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
}
.compare-cell.no { color: var(--text-muted);justify-content: center; }
.compare-cell.yes { color: #fff; justify-content: center;}
.icon-x {
  width: 22px;
  height: 22px;
  background: #a31616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #ffffff;
}
.icon-check {
  width: 22px; height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--green-dark);
  font-weight: 900;
}

/* Brand badges column */
.brands-col {
  background: var(--amber);
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 130px;
}
.brand-badge {
  width: 96px; height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.b-fanta-red   { background: #e30613; color: #fff; }
.b-fanta-grape { background: #6b3fa0; color: #fff; font-style: italic; }
.b-mms         { background: #fff; color: #1a1a1a; font-style: italic; }
.b-feastables  { background: #1a1a1a; color: #f0a500; font-size: 0.7rem; letter-spacing: 0.04em; }
.b-snickers    { background: #7b4f2e; color: #fff; font-size: 0.85rem; }
.b-prime       { background: #00a8e0; color: #fff; font-size: 0.85rem; }

/* Private label note */
.private-note {
  background: rgba(240,165,0,0.12);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 18px;
  font-size: 0.83rem;
  color: var(--amber);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   SECTION 3 – STRUCTURAL MOATS
══════════════════════════════════════════ */
#moats { background: var(--green-dark); }

/* Logo badge in moats header */
.moats-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--green-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.moats-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.moats-logo-text span { color: var(--amber); }
.moats-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.moat-card {
  border-radius: 20px;
  padding: 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.moat-card.amber-card { background: var(--amber); }
.moat-card.green-card { background: var(--green-light); }

.moat-num {
  width: 36px; height: 36px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.moat-logos {
  position: absolute;
  top: 24px; right: 24px;
  display: flex; gap: 6px;
}
.moat-logo-badge {
  background: #fff;
  border-radius: 8px;
  padding: 5px 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--green-dark);
}
.moat-logo-hp   { color: #00529b; }
.moat-logo-hmel { color: #e8600a; }

.moat-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.moat-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.moat-card ul li {
  font-size: 0.88rem;
 color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  line-height: 1.5;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.quick-commerce .moat-card ul li {
  font-size: 0.88rem;
 color: var(--text-muted);
  font-weight: 600;
  line-height: 1.5;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.moat-card ul li::before {
  content: '•';
  position: absolute; left: 0;
  color: var(--text-light);
  font-weight: 900;
}
.moat-stat-pill {
  background: var(--green-dark);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.moat-stat-pill .pill-icon { font-size: 1rem; }

.moats-footer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-top: 32px;
  font-style: italic;
}

/* Moat 2 delayed transition */
.moat-delay-1 { transition-delay: 0.1s; }
.moat-delay-2 { transition-delay: 0.2s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .threats-col { padding-left: 0; margin-top: 30px; }
  .brands-col { flex-direction: row; flex-wrap: wrap; min-width: auto; border-radius: 12px; }
  .brand-badge { width: 80px; height: 44px; font-size: 0.82rem; }
}
@media (max-width: 767px) {
  .quadrant-grid { gap: 6px; }
  .q-cell { min-height: 120px; padding: 18px 14px; }
  .q-freshfleet h3 { font-size: 1.3rem; }
  .donut-wrap { width: 180px; height: 180px; }
  .donut-svg { width: 180px; height: 180px; }
  .donut-center .pct { font-size: 1.7rem; }
  .section-wrap { padding: 52px 0; }
}
@media (max-width: 575px) {
  .compare-cell { font-size: 0.78rem; padding: 10px 12px; }
  .moat-card { padding: 24px 18px; }
  .moat-card h3 { font-size: 1.1rem; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}



.mockup-wrapper .mockup{
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  right: calc(10% - 1rem);
}

.text-section{
  padding: calc(max(2rem, 5%)) 0;
}

.section-title {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #1a1a1a;
  margin-bottom: 30px;
}

.bg-yellow{
  background-color: #f0a500;
}

#sku-mix img{
  border-radius: 18px;
}