/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --c-bg:         #FAFAF7;
  --c-white:      #FFFFFF;
  --c-dark:       #1A1A16;
  --c-dark2:      #2E2E28;
  --c-dark3:      #3D3D36;
  --c-muted:      #6B6B60;
  --c-border:     rgba(26,26,22,0.1);
  --c-border2:    rgba(26,26,22,0.18);
  --c-sage:       #5C8B6E;
  --c-sage-light: #8BB89A;
  --c-sage-pale:  #D4E8DB;
  --c-sage-ultra: #EDF5F0;
  --c-teal:       #2A7B6B;
  --c-gold:       #C09A4A;
  --c-gold-light: #E8D5A3;
  --c-gold-pale:  #F5EDD6;
  --c-accent:     #E85D3A;
  --c-sky:        #E8F4F1;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --shadow-sm:    0 2px 12px rgba(26,26,22,0.07);
  --shadow-md:    0 8px 32px rgba(26,26,22,0.12);
  --shadow-lg:    0 20px 60px rgba(26,26,22,0.18);
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  /* About page tokens (kept separate to avoid conflicts) */
  --sage:    #4a7c59;
  --sage-lt: #6dab82;
  --cream:   #f7f3ee;
  --ivory:   #fefcf9;
  --charcoal:#1c2321;
  --muted:   #6b7b74;
  --gold:    #c9a84c;
  --border:  #e0d9d0;
  --white:   #ffffff;
  --sage:#5C8B6E;--sage-lt:#8BB89A;--sage-pale:#D4E8DB;--sage-ultra:#EDF5F0;
  --teal:#2A7B6B;--gold:#C09A4A;--gold-pale:#F5EDD6;
  --cream:#FAFAF7;--white:#FFFFFF;--dark:#1A1A16;--dark2:#2E2E28;
  --muted:#6B6B60;--border:rgba(26,26,22,.1);--border2:rgba(26,26,22,.18);
  --shadow-sm:0 2px 12px rgba(26,26,22,.07);--shadow-md:0 8px 32px rgba(26,26,22,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-sage-light); border-radius: 3px; }
/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--c-white);
  animation: pulseGlow 1.4s ease-in-out infinite;
}
.preloader-logo span { color: var(--c-sage-light); }
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}
/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(250,250,247,0.96);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  height: 72px; display: flex; align-items: center;
  padding: 0 2.5rem;
}
#navbar.scrolled {
  background: rgba(250,250,247,0.96);
  border-color: var(--c-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700;
  color: var(--c-dark);
  transition: color 0.4s;
  display: flex; align-items: center; gap: 0.3rem;
}
#navbar.scrolled .nav-logo { color: var(--c-dark); }
.nav-logo-dot { color: var(--c-sage-light); }
.nav-links {
  display: flex; align-items: center; gap: 0.3rem;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px; font-weight: 400;
  color: #000000;
  border-radius: var(--r-sm);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
#navbar.scrolled .nav-links a { color: var(--c-muted); }
.nav-links a:hover { background: rgba(0,0,0,0.06); color: #000000; }
#navbar.scrolled .nav-links a:hover { background: var(--c-sage-ultra); color: var(--c-sage); }
.nav-cta-btn {
  background: var(--c-sage) !important;
  color: var(--c-white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 4px 16px rgba(92,139,110,0.4);
  transition: all 0.2s !important;
}
.nav-cta-btn:hover {
  background: var(--c-teal) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92,139,110,0.5) !important;
}

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
#navbar.scrolled .nav-hamburger {
  border-color: var(--c-border2);
  background: var(--c-sage-ultra);
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 899;
  background: rgba(250,250,247,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1.5rem 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 2px;
}
.mobile-menu ul a {
  display: block;
  padding: 12px 16px;
  font-size: 15px; font-weight: 400;
  color: var(--c-dark);
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.mobile-menu ul a:hover { background: var(--c-sage-ultra); color: var(--c-sage); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}
.mobile-menu .mobile-cta button {
  width: 100%;
  padding: 13px 22px;
  background: var(--c-sage);
  color: #fff; border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 500;
  cursor: pointer; letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(92,139,110,0.35);
  transition: all 0.2s;
}
.mobile-menu .mobile-cta button:hover { background: var(--c-teal); }

/* ===== HERO (homepage) ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1A1A16 0%, #2E3B30 45%, #1A2E26 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 26px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(80px); opacity: 0; }
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(92,139,110,0.3) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,154,74,0.2) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(30px,-30px) scale(1.05); }
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(92,139,110,0.2);
  border: 1px solid rgba(92,139,110,0.4);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 1.8rem;
  animation: fadeSlideDown 0.8s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-sage-light);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-badge-text {
  font-size: 12px; font-weight: 500;
  color: var(--c-sage-light); letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s 0.15s ease both;
}
.hero-title em { font-style: italic; color: var(--c-sage-light); }
.hero-title .line-accent { color: var(--c-gold); }
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-width: 460px;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 0.8s 0.25s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideDown 0.8s 0.35s ease both;
}
.btn-primary {
  /*display: inline-flex;*/
  align-items: center; gap: 8px;
  background: var(--c-sage);
  color: var(--c-white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14.5px; font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(92,139,110,0.45);
  transition: all 0.25s;
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--c-teal); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,123,107,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14.5px; font-weight: 400;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2.5rem;
  animation: fadeSlideDown 0.8s 0.45s ease both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.hero-trust-icon { color: var(--c-gold); font-size: 14px; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeSlideDown 1s 0.8s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* ===== CONTACT FORM CARD (used in hero + contact section) ===== */
.contact-form-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--c-dark); margin-bottom: 0.3rem;
}
.contact-form-sub { font-size: 13.5px; color: var(--c-muted); margin-bottom: 2rem; }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--c-sage); padding: 14px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.marquee-sep { color: rgba(255,255,255,0.4); font-size: 18px; }

/* ===== SECTION BASE ===== */
.section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1rem;
}
.section-label::before {
  content:''; display:block; width:24px; height:2px;
  background: var(--c-sage); border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--c-dark); margin-bottom: 1rem;
}
.section-desc { font-size: 16px; color: var(--c-muted); line-height: 1.8; max-width: 600px; }

/* ===== ABOUT SECTION (homepage) ===== */
#about { background: var(--c-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--c-sage-ultra) 0%, var(--c-sky) 100%);
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(92,139,110,0.15) 1px, transparent 0);
  background-size: 28px 28px;
}
.about-img-icon { font-size: 6rem; position: relative; z-index: 1; }
.about-floating-badge {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.about-floating-badge.left  { bottom: 60px; left: -30px; z-index: 9999; }
.about-floating-badge.right { top: 60px; right: -30px; z-index: 9999; }
.badge-num  { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--c-sage); line-height: 1; }
.badge-text { font-size: 11.5px; color: var(--c-muted); margin-top: 3px; }
.about-content { padding: 1rem 0; }
.about-paragraphs p { color: var(--c-muted); line-height: 1.85; margin-bottom: 1.1rem; }
.about-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden; margin: 2rem 0;
}
.meta-cell { background: var(--c-white); padding: 1.25rem 1.5rem; }
.meta-lbl { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); font-weight: 500; margin-bottom: 4px; }
.meta-val  { font-size: 14.5px; font-weight: 600; color: var(--c-dark); }
.btn-sage {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-sage);
  color: var(--c-white);
  padding: 13px 26px; border-radius: 50px;
  font-size: 14px; font-weight: 500;
  transition: all 0.25s; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(92,139,110,0.3);
  font-family: var(--font-body);
}
.btn-sage:hover { background: var(--c-teal); transform: translateY(-1px); }

/* ===== WHY US (homepage) ===== */
#why { background: var(--c-bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2.2rem 2rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-sage), var(--c-teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-card .why-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--c-sage-ultra);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.2rem;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--c-sage-pale); }
.why-card-title { font-size: 16.5px; font-weight: 600; color: var(--c-dark); margin-bottom: 0.5rem; }
.why-card-desc  { font-size: 14px; color: var(--c-muted); line-height: 1.75; }

/* ===== PRODUCTS ===== */
#products { background: var(--c-dark); padding: 6rem 2.5rem; }
#products .section-label       { color: var(--c-sage-light); }
#products .section-label::before { background: var(--c-sage-light); }
#products .section-title       { color: var(--c-white); }
#products .section-desc        { color: rgba(255,255,255,0.5); }
.products-tabs {
  display: flex; gap: 0.5rem;
  margin: 2.5rem 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13.5px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  cursor: pointer; border: none; background: transparent;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.tab-btn.active { background: var(--c-sage); color: var(--c-white); font-weight: 500; }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg); overflow: hidden;
}
.product-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.8rem;
  transition: background 0.25s;
  cursor: pointer; position: relative;
}
.product-card:hover { background: rgba(92,139,110,0.12); }
.product-cat    { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-sage-light); margin-bottom: 0.8rem; }
.product-name   { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--c-white); line-height: 1.25; margin-bottom: 0.5rem; }
.product-comp   { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 1.4rem; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.product-link:hover { border-color: var(--c-gold); }
.product-card-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(192,154,74,0.70);
  border: 1px solid rgba(192,154,74,0.3);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 10px; font-weight: 600;
  color: #000000; letter-spacing: 0.06em; text-transform: uppercase;
}
.products-footer { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: 50px;
  font-size: 13.5px; font-weight: 400;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s; cursor: pointer; background: transparent;
  font-family: var(--font-body);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.05); }

/* ===== FRANCHISE STRIP ===== */
#franchise-strip {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-sage) 100%);
  padding: 5rem 2.5rem;
  position: relative; overflow: hidden;
}
#franchise-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 32px 32px;
}
.strip-inner {
  max-width: 1240px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}
.strip-content { max-width: 580px; }
.strip-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; }
.strip-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1.2; color: var(--c-white); margin-bottom: 0.8rem; }
.strip-desc  { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.strip-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-white);
  color: var(--c-teal);
  padding: 14px 28px; border-radius: 50px;
  font-size: 14.5px; font-weight: 600;
  transition: all 0.25s; cursor: pointer; border: none;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.strip-note { font-size: 12px; color: rgba(255,255,255,0.5); text-align: right; }

/* ===== STATS SECTION ===== */
#stats { background: var(--c-white); padding: 5rem 2.5rem; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--c-border);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  overflow: hidden; max-width: 900px; margin: 3rem auto 0;
}
.stat-block { background: var(--c-white); padding: 2.5rem 2rem; text-align: center; transition: background 0.2s; }
.stat-block:hover { background: var(--c-sage-ultra); }
.stat-big  { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--c-sage); line-height: 1; margin-bottom: 0.4rem; }
.stat-desc { font-size: 13px; color: var(--c-muted); font-weight: 400; }

/* ===== RANGE CATEGORIES ===== */
#range { background: var(--c-bg); }
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.range-card {
  border-radius: var(--r-xl); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.range-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.range-card-1 { background: linear-gradient(135deg, #EDF5F0, #C5D9CC); }
.range-card-2 { background: linear-gradient(135deg, #F5EDD6, #E8D5A3); }
.range-card-3 { background: linear-gradient(135deg, #E8F4F1, #B8D8D0); }
.range-icon  { font-size: 3rem; margin-bottom: 1.2rem; }
.range-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--c-dark); margin-bottom: 0.5rem; }
.range-desc  { font-size: 14px; color: var(--c-muted); line-height: 1.7; margin-bottom: 1.4rem; }
.range-link  { font-size: 13px; font-weight: 600; color: var(--c-sage); display: flex; align-items: center; gap: 5px; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--c-dark); padding: 6rem 2.5rem; }
#testimonials .section-label        { color: var(--c-gold); }
#testimonials .section-label::before{ background: var(--c-gold); }
#testimonials .section-title        { color: var(--c-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: 2rem; transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.testi-stars  { color: var(--c-gold); font-size: 14px; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text   { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sage), var(--c-teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--c-white);
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--c-white); }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== CONTACT ===== */
#contact { background: var(--c-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item  { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon  {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--c-sage-ultra);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-title { font-size: 14px; font-weight: 600; color: var(--c-dark); margin-bottom: 2px; }
.contact-item-val   { font-size: 14px; color: var(--c-muted); }

/* ===== FORM FIELDS (your new system) ===== */
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 12px; font-weight: 600; color: #1A1D29;
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #E8E4DA; border-radius: 10px;
  background: #FAF6EF; color: #1A1D29;
  font-size: 14.5px;
  font-family: var(--font-body);
  transition: all 180ms cubic-bezier(.4,0,.2,1);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-sage);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(92,139,110,0.10);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: 11.5px; color: var(--c-muted);
  text-align: center; margin-top: 10px;
}
.form-note strong { color: var(--c-sage); }

/* ═══════════════════════════════════════════
   ABOUT PAGE — inner page styles
═══════════════════════════════════════════ */

  /* ── BREADCRUMB ── */
  .breadcrumb-strip {
    margin-top: 72px;
    padding: .9rem 2.5rem;
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; color: var(--muted);
    border-bottom: 1px solid #e0d9d0;
    background: #f7f3ee;
  }
  .breadcrumb-strip a { color: #4a7c59; text-decoration: none; }
  .breadcrumb-strip span { color: #e0d9d0; }

/* Page body layout */
.page-body {
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid; grid-template-columns: 1fr 340px; gap: 3.5rem;
  align-items: start;
}
.main-col { display: flex; flex-direction: column; gap: 3.5rem; }

/* Section label — about page inner variant */
.section-label.inner {
  display: flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.25rem;
}
.section-label.inner::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }

/* About card */
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.75rem;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage-lt));
}
.about-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.about-card p { color: var(--muted); line-height: 1.85; font-size: .975rem; margin-bottom: 1rem; }
.about-card p:last-child { margin-bottom: 0; }

/* Stats row (about page) */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(74,124,89,.1); }
.stat-num1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--charcoal); line-height: 1; margin-bottom: .35rem;
}
.stat-num1 sup { font-size: 1.1rem; vertical-align: super; }
.stat-label { font-size: .8rem; font-weight: 500; color: var(--muted); letter-spacing: .03em; }

/* Why items (about page — scoped to avoid conflict with homepage .why-card) */
.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  /*display: flex;*/
  gap: 1rem; align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.why-item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.07); }
.why-item .why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(74,124,89,.12), rgba(74,124,89,.04));
  border: 1px solid rgba(74,124,89,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  /* reset homepage margin */
  margin-bottom: 0;
}
.why-text h4 { font-size: .95rem; font-weight: 600; color: var(--charcoal); margin-bottom: .35rem; }
.why-text p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* Mission & Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.mv-card { border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; }
.mv-card.mission { background: var(--charcoal); color: #fff; }
.mv-card.vision  { background: linear-gradient(135deg, var(--sage), #366347); color: #fff; }
.mv-card::after {
  content: attr(data-bg);
  position: absolute; bottom: -1rem; right: .5rem;
  font-family: 'Syne', sans-serif;
  font-size: 5rem; font-weight: 800;
  opacity: .06; line-height: 1; pointer-events: none;
}
.mv-badge {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 100px; margin-bottom: 1rem;
}
.mission .mv-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.vision  .mv-badge { background: rgba(255,255,255,.18); color: #fff; }
.mv-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: .85rem; }
.mv-card p  { font-size: .88rem; line-height: 1.75; opacity: .82; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.75rem; position: sticky; top: 90px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.sidebar-card-head { background: var(--sage); padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: .65rem; }
.sidebar-card-head h4 { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: .03em; }
.sidebar-card-head .head-icon { font-size: 1.1rem; }
.product-list { list-style: none; padding: .75rem 0; }
.product-list li { border-bottom: 1px solid var(--border); }
.product-list li:last-child { border-bottom: none; }
.product-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1.5rem; text-decoration: none;
  font-size: .875rem; font-weight: 500; color: var(--charcoal);
  transition: background .15s, color .15s, padding-left .2s;
}
.product-list a:hover { background: rgba(74,124,89,.06); color: var(--sage); padding-left: 1.85rem; }
.product-list a svg { opacity: .3; transition: opacity .15s; }
.product-list a:hover svg { opacity: 1; }

/* Franchise form card (about page sidebar) */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.form-card-head { background: var(--charcoal); padding: 1.25rem 1.5rem; }
.form-card-head h4 { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.form-card-head p  { font-size: .75rem; color: rgba(255,255,255,.5); }
.form-body { padding: 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .85rem; }
.form-body .form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-body .form-group label { font-size: .75rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.form-body .form-group input,
.form-body .form-group select,
.form-body .form-group textarea {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 10px; padding: .65rem .9rem;
  font-size: .85rem; font-family: 'DM Sans', sans-serif;
  color: var(--charcoal); outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-body .form-group input:focus,
.form-body .form-group select:focus,
.form-body .form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,89,.12); }
.form-body .form-group textarea { resize: vertical; min-height: 70px; }
.radio-opt { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--charcoal); cursor: pointer; }
.radio-opt input[type=radio] { accent-color: var(--sage); }
.toggle-row { display: flex; gap: 8px; }
.toggle-btn {
  padding: 8px 16px; border-radius: 50px; cursor: pointer;
  border: 1.5px solid var(--border);
  font-size: 13px; background: var(--cream); color: var(--muted);
  transition: all 0.2s; font-family: var(--font-body);
}
.toggle-btn.active { background: var(--sage); border-color: var(--sage); color: #fff; font-weight: 500; }
.submit-btn {
  width: 100%; padding: .9rem;
  background: var(--sage); color: #fff;
  border: none; border-radius: 12px;
  font-size: .9rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; letter-spacing: .02em;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.submit-btn:hover { background: var(--sage-lt); transform: translateY(-2px); }

/* Fade-up animation (about page) */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== SCROLL REVEAL (homepage) ===== */
.reveal { opacity: 1; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SHARED KEYFRAMES ===== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== FOOTER ===== */
footer { background: #111110; padding: 5rem 2.5rem 2rem; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 1rem;
}
.footer-logo span { color: var(--c-sage-light); }
.footer-about {
  font-size: 13.5px; color: rgba(255,255,255);
  line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all 0.2s;
  color: rgba(255,255,255);
}
.social-btn:hover { background: var(--c-sage); border-color: var(--c-sage); color: #fff; }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 14px; color: rgba(255,255,255); transition: color 0.2s; }
.footer-links a:hover { color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,10,8,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--c-white);
  border-radius: var(--r-xl);
  width: min(540px, 100%);
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-top {
  background: linear-gradient(135deg, var(--c-dark), var(--c-dark2));
  /*border-radius: var(--r-xl) var(--r-xl) 0 0;*/
  padding: 15px 20px;
  position: relative; overflow: hidden;
}
.modal-top-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
}
.modal-top-content { position: relative; z-index: 1; }
.modal-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(92,139,110,0.2);
  border: 1px solid rgba(92,139,110,0.4);
  border-radius: 50px; padding: 5px 14px; margin-bottom: 1rem;
}
.modal-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-sage-light); }
.modal-pill-text { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-sage-light); }
.modal-title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--c-white); margin-bottom: 0.4rem; }
.modal-subtitle { font-size: 14px; color: rgba(255,255,255,0.55); }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: rgba(255,255,255,0.7);
  transition: all 0.2s; line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.modal-body { padding: 15px 20px; }
.modal-section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 10px;
}
.modal-type-row { display: flex; gap: 10px; margin-bottom: 1.5rem; }
.modal-type-btn {
  flex: 1; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  cursor: pointer; text-align: center; transition: all 0.2s;
}
.modal-type-btn.active { background: var(--c-sage-ultra); border-color: var(--c-sage); }
.modal-type-icon { font-size: 22px; margin-bottom: 6px; }
.modal-type-title { font-size: 13.5px; font-weight: 600; color: var(--c-dark); }
.modal-type-sub   { font-size: 12px; color: var(--c-muted); }
.modal-type-btn.active .modal-type-title { color: var(--c-sage); }
.success-screen { display: none; text-align: center; padding: 3rem 2rem; }
.success-screen.show { display: block; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-sage), var(--c-teal));
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.success-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--c-dark); margin-bottom: 0.5rem; }
.success-desc  { font-size: 15px; color: var(--c-muted); line-height: 1.7; }

/* ===== FLOATING BUTTON ===== */
.float-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  background: linear-gradient(135deg, var(--c-sage), var(--c-teal));
  color: var(--c-white); border: none; border-radius: 50px;
  padding: 14px 22px; cursor: pointer;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  box-shadow: 0 8px 28px rgba(42,123,107,0.5);
  display: flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  animation: floatBtnPulse 3s ease-in-out infinite;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(42,123,107,0.6); }
@keyframes floatBtnPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(42,123,107,0.5); }
  50%      { box-shadow: 0 8px 28px rgba(42,123,107,0.7), 0 0 0 8px rgba(42,123,107,0.1); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  .page-body { grid-template-columns: 1fr; padding: 3rem 1.75rem; gap: 2.5rem; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .main-col { gap: 2.5rem; }
}

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .range-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; }
  .strip-actions { align-items: flex-start; }
  .about-floating-badge.left  { left: 0; }
  .about-floating-badge.right { right: 0; }
  .section { padding: 4rem 1.5rem; }
  #products, #testimonials { padding: 4rem 1.5rem; }
  .products-tabs { flex-wrap: wrap; width: 100%; border-radius: var(--r-md); }
  .tab-btn { flex: 1; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── MOBILE MENU (≤ 768px) ── */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  #navbar { padding: 0 1.25rem; }
  .about-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  /* Inner page */
  .heroone { padding: 6rem 1.5rem 4rem; }
  .heroone h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-sub { font-size: .95rem; }
  .page-body { padding: 2.5rem 1.25rem; gap: 2rem; }
  .main-col { gap: 2rem; }
  .why-grid-inner { grid-template-columns: 1fr; gap: .85rem; }
  .mv-grid { grid-template-columns: 1fr; gap: .85rem; }
  .about-card { padding: 1.75rem 1.5rem; }
  .about-card h2 { font-size: 1.85rem; }
  .sidebar { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
.preloader-logo {
  font-size: 20px;
}
.about-meta{
    display: grid; grid-template-columns: repeat(1, 1fr);
}
}

/* ── MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 0.75rem; }
  .strip-title { font-size: 1.7rem; }
  .section { padding: 3rem 1.25rem; }
  #products, #testimonials, #franchise-strip, #stats { padding: 3rem 1.25rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .modal-type-row { flex-direction: column; }
  .modal-top { padding: 1.8rem 1.5rem 1.5rem; }
  .modal-body { padding: 1.5rem; }
  .modal-title { font-size: 18px; }
  .float-btn { bottom: 1.2rem; right: 1.2rem; padding: 12px 16px; font-size: 12.5px; }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  .heroone { padding: 7rem 1rem 3rem; }
  .heroone h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-sub { font-size: .88rem; }
  .hero-eyebrow { font-size: .7rem; padding: .35rem .85rem; margin-bottom: 1.25rem; }
  .page-body { padding: 1.75rem 1rem; gap: 1.75rem; }
  .main-col { gap: 1.75rem; }
  .about-card { padding: 1.35rem 1.1rem; border-radius: 14px; }
  .about-card h2 { font-size: 1.5rem; }
  .about-card p { font-size: .9rem; }
  .stats-row { grid-template-columns: 1fr; gap: .75rem; }
  .stat-num1 { font-size: 2rem; }
  .why-item { padding: 1.1rem; border-radius: 12px; gap: .75rem; }
  .why-item .why-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .why-text h4 { font-size: .88rem; }
  .why-text p  { font-size: .8rem; }
  .mv-card { padding: 1.5rem 1.25rem; border-radius: 12px; }
  .mv-card h3 { font-size: 1.35rem; }
  .mv-card p  { font-size: .83rem; }
  .mv-card::after { font-size: 3.5rem; }
  .sidebar-card, .form-card { border-radius: 12px; }
  .form-body { padding: 1rem; gap: .7rem; }
  .form-body .form-group input,
  .form-body .form-group select,
  .form-body .form-group textarea { font-size: 16px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .submit-btn { padding: .8rem; font-size: .85rem; }
  .product-list a { padding: .7rem 1.1rem; font-size: .82rem; }
}
