/* ==========================================================================
   GROW BIHAR - MODERN DIGITAL AGENCY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --dark: #000805;
  --dark-surface: #04140b;
  --dark-card: #071f12;
  --dark-border: rgba(39, 196, 94, 0.18);
  --green-primary: #18A94B;
  --green-hover: #12913F;
  --green-bright: #27C45E;
  --green-glow: rgba(39, 196, 94, 0.35);
  --gold: #F5A623;
  --gold-glow: rgba(245, 166, 35, 0.35);
  --mint-bg: #F0F8F4;
  --mint-card: #E4F4EB;
  --text-dark: #0A1B12;
  --text-muted: #526359;
  --text-light: #FFFFFF;
  --text-light-muted: rgba(255, 255, 255, 0.78);
  --line: #E1EBE5;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 4px 12px rgba(0, 15, 8, 0.08);
  --shadow-md: 0 12px 30px -10px rgba(0, 25, 12, 0.18);
  --shadow-lg: 0 24px 60px -18px rgba(0, 30, 15, 0.28);
  --shadow-glow: 0 0 40px rgba(39, 196, 94, 0.3);
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;
  --wrap: 1240px;
  --pad: clamp(16px, 4vw, 36px);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.g { color: var(--green-primary); }
.g-bright { color: var(--green-bright); }
.gold { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(24, 169, 75, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.eyebrow.dark-mode {
  color: var(--green-bright);
  background: rgba(39, 196, 94, 0.15);
  border: 1px solid rgba(39, 196, 94, 0.25);
}

.sec-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 0;
  font-size: 15.5px;
  font-weight: 600;
  white-space: nowrap;
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(24, 169, 75, 0.7);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(24, 169, 75, 0.85);
  color: #fff;
}

.btn:hover::after { opacity: 1; }

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.2s ease;
}

.btn:hover svg.arr { transform: translateX(4px); }

.btn-pill {
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold);
  color: #0c1810;
  box-shadow: 0 10px 24px -8px rgba(245, 166, 35, 0.65);
}

.btn-gold:hover {
  background: #e69818;
  color: #050d08;
  box-shadow: 0 14px 30px -8px rgba(245, 166, 35, 0.85);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s, height 0.3s;
  background: rgba(0, 8, 5, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
  background: rgba(0, 8, 5, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a:not(.btn) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--green-bright);
  transition: right 0.25s ease;
}

.menu a:not(.btn):hover {
  color: #ffffff;
}

.menu a:not(.btn):hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.burger svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  padding: 130px 0 160px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(750px 520px at 70% 35%, rgba(24, 169, 75, 0.32), transparent 70%),
    radial-gradient(550px 420px at 10% 90%, rgba(24, 169, 75, 0.16), transparent 70%),
    radial-gradient(400px 300px at 40% 10%, rgba(245, 166, 35, 0.1), transparent 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 196, 94, 0.12);
  border: 1px solid rgba(39, 196, 94, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-bright);
  margin-bottom: 16px;
}

.hero-badge-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero h1 span { display: block; }

.tagline {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.tagline i {
  font-style: normal;
  color: var(--green-bright);
  padding: 0 6px;
}

.hero-lede {
  margin-top: 16px;
  color: var(--text-light-muted);
  font-size: 16.5px;
  max-width: 32em;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 100px;
  transition: background 0.2s;
}

.play-btn span.c {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.play-btn:hover span.c {
  background: var(--green-primary);
  border-color: var(--green-bright);
  box-shadow: 0 0 20px var(--green-glow);
  transform: scale(1.08);
}

.play-btn svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.play-btn small {
  display: block;
  color: var(--text-light-muted);
  font-size: 12.5px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 50px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats b {
  display: block;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-light-muted);
  line-height: 1.35;
}

/* Hero Art Frame */
.hero-art-col {
  position: relative;
}

.hero-art-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 30, 15, 0.6);
  border: 1px solid rgba(39, 196, 94, 0.25);
  background: #020f07;
}

.hero-art-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) brightness(0.98);
}

.floating-pill {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  color: var(--text-dark);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-pill svg {
  width: 36px;
  height: 36px;
  flex: none;
}

/* ================= EMBEDDED HERO LEAD CARD ================= */
.lead-section {
  position: relative;
  z-index: 20;
  margin-top: -100px;
}

.lead-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 80px -20px rgba(0, 30, 15, 0.28), 0 0 0 1px rgba(0, 20, 10, 0.05);
}

.lead-card h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.lead-card .intro {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 15.5px;
  max-width: 28em;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badges svg {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex: none;
}

/* Form Styles */
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.f.full { grid-column: 1 / -1; }

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
select,
textarea {
  width: 100%;
  font: 400 15px/1.35 var(--font-main);
  color: var(--text-dark);
  padding: 13px 15px;
  background: #ffffff;
  border: 1.5px solid #d9e3dc;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input::placeholder, textarea::placeholder {
  color: #7b8b82;
}

select {
  appearance: none;
  color: #7b8b82;
  padding-right: 36px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230C1B13' stroke-width='1.8' fill='none'/%3E%3C/svg%3E") no-repeat right 14px center;
}

select.picked { color: var(--text-dark); font-weight: 500; }
textarea { resize: vertical; min-height: 58px; height: 58px; }

input:hover, select:hover, textarea:hover {
  border-color: #abbcb2;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(24, 169, 75, 0.15);
}

[aria-invalid="true"] {
  border-color: #d93838 !important;
}

.err {
  color: #c62828;
  font-size: 12px;
  font-weight: 600;
}
.err:empty { display: none; }

.consent-group {
  margin-top: 12px;
  text-align: left;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.45;
  color: #55695f;
  user-select: none;
}
.consent-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green-primary);
  cursor: pointer;
}
.consent-label span {
  flex: 1;
}

.submit {
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  font-size: 16px;
}

.form-msg {
  color: #c62828;
  font-size: 14px;
  margin-top: 10px;
}
.form-msg:empty { display: none; }

/* Done screen */
.done {
  text-align: center;
  padding: 24px 12px;
}

.done[hidden] { display: none; }

.done .tick {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-primary);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -8px rgba(24, 169, 75, 0.8);
}

.done .tick svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.done h3 { font-size: 24px; font-weight: 800; }
.done p { color: var(--text-muted); margin-top: 8px; font-size: 15px; }
.done .btn { margin-top: 22px; }
.done .again {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: 0;
  font: 600 14px var(--font-main);
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
}

/* ================= 10-SECOND LEAD CAPTURE POPUP MODAL ================= */
.lead-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 8, 5, 0.75);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.lead-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lead-modal-window {
  width: min(620px, 100%);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(39, 196, 94, 0.2);
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal-backdrop.active .lead-modal-window {
  transform: scale(1) translateY(0);
}

.lead-modal-header {
  background: linear-gradient(135deg, #000c06 0%, #062b16 100%);
  color: #ffffff;
  padding: 24px 28px 20px;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.lead-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.4);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.lead-modal-header h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.lead-modal-header p {
  color: var(--text-light-muted);
  font-size: 13.5px;
  margin-top: 6px;
}

.lead-modal-body {
  padding: 24px 28px 28px;
}

/* Quick city chips */
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 14px;
}

.city-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid #d9e3dc;
  background: #f6faf7;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.city-chip:hover, .city-chip.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
}

/* ================= DYNAMIC ROI CALCULATOR ================= */
.calc-section {
  padding: clamp(60px, 7vw, 100px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-bg) 100%);
}

.calc-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  margin-top: 36px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-group label .val {
  color: var(--green-primary);
  font-size: 18px;
  font-weight: 800;
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: #d8e5dd;
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--green-primary);
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(24, 169, 75, 0.25);
  cursor: pointer;
  transition: transform 0.15s;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.calc-result-box {
  background: linear-gradient(150deg, #041b0d 0%, #000805 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px -15px rgba(0, 30, 15, 0.5);
  border: 1px solid rgba(39, 196, 94, 0.25);
}

.calc-result-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
}

.calc-result-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-bright);
}

.calc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
  margin: 20px 0;
}

.calc-stat-item b {
  display: block;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.calc-stat-item b.highlight {
  color: var(--gold);
}

.calc-stat-item span {
  display: block;
  font-size: 12.5px;
  color: var(--text-light-muted);
  margin-top: 4px;
}

/* ================= TRUSTED BRANDS ================= */
.trusted {
  padding: 50px 0 54px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trusted .eyebrow {
  margin-bottom: 20px;
}

.brands {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 32px;
  color: #111;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.brand:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.brand small {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.b-bites { font-weight: 800; font-size: 20px; line-height: 1; }
.b-bites i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 14px;
}
.b-optic { flex-direction: column; gap: 0; font-weight: 700; font-size: 15px; }
.b-optic svg { width: 44px; height: 20px; }
.b-venus { flex-direction: column; gap: 2px; font-weight: 600; font-size: 14px; letter-spacing: 0.08em; }
.b-venus svg { width: 24px; height: 24px; }
.b-zaiqa { font-size: 24px; font-weight: 800; letter-spacing: 0.04em; }
.b-elem { flex-direction: column; gap: 0; font-weight: 800; font-size: 22px; letter-spacing: 0.02em; line-height: 1; }
.b-more { font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* ================= SERVICES ================= */
.services {
  background: var(--mint-bg);
  padding: clamp(60px, 7vw, 96px) 0;
}

.services .sub {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 16.5px;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.svc {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  text-align: left;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
}

.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 169, 75, 0.4);
  box-shadow: 0 24px 44px -18px rgba(0, 50, 20, 0.22);
}

.svc-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--mint-bg);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}

.svc:hover .svc-icon-wrapper {
  transform: scale(1.08);
}

.svc-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.svc h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.svc p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.svc-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================= WHY CHOOSE GROW BIHAR ================= */
.why {
  padding: clamp(60px, 7vw, 100px) 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.why h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  margin-top: 8px;
}

.why h2 span { display: block; }

.why .intro {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 16px;
  max-width: 32em;
}

.why-list {
  list-style: none;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-list .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 0 0 5px rgba(24, 169, 75, 0.14);
}

.why-list .ic svg {
  width: 19px;
  height: 19px;
}

.why-list h4 {
  font-size: 16px;
  font-weight: 700;
}

.why-list p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.scribble {
  margin-top: 28px;
  font: 700 28px/1.05 var(--font-script);
  color: var(--text-dark);
  transform: rotate(-3deg);
  display: inline-block;
}

.scribble svg {
  width: 120px;
  margin-top: 4px;
  color: var(--green-primary);
}

.photo-col {
  position: relative;
}

.photo-wrapper {
  position: relative;
  border-radius: 28px 56px 28px 44px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 40, 20, 0.4);
}

.photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-badge {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: clamp(140px, 16vw, 180px);
  padding: 16px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(150deg, #1fb453, #0e7a35);
  box-shadow: 0 20px 40px -12px rgba(0, 60, 25, 0.6);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.15;
}

.photo-badge .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.photo-badge .ic svg {
  width: 20px;
  height: 20px;
}

/* ================= NUMBERS / STATS ================= */
.numbers {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #062a17 0%, #021208 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 68px) 0;
}

.numbers .bridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.num-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.num:first-child { border-left: 0; }

.num svg {
  width: 44px;
  height: 44px;
  color: var(--green-bright);
  flex: none;
}

.num b {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.num span {
  display: block;
  font-size: 13px;
  color: var(--text-light-muted);
  margin-top: 6px;
  line-height: 1.35;
}

/* ================= SUCCESS STORIES ================= */
.stories {
  padding: clamp(60px, 7vw, 96px) 0;
  background: #ffffff;
}

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

.st {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: #ffffff;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.st:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(0, 40, 20, 0.25);
  border-color: rgba(24, 169, 75, 0.3);
}

.st-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  background: linear-gradient(140deg, #27c45e, #0e7a35);
}

.st-top b {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.st-top small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 15px;
  margin-top: 2px;
}

.st p {
  margin-top: 16px;
  color: #2b3931;
  font-size: 14.5px;
  line-height: 1.55;
  font-style: italic;
}

.st-tag {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
}

/* ================= FAQ ACCORDION ================= */
.faq-section {
  padding: clamp(50px, 6vw, 80px) 0;
  background: var(--mint-bg);
}

.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--green-primary);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  font: 700 16px var(--font-main);
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.25s ease;
  color: var(--green-primary);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ================= FINAL CTA ================= */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: clamp(64px, 7vw, 90px) 0;
}

.cta-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: center right;
  opacity: 0.65;
}

.cta-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(0, 8, 5, 0.7) 40%, rgba(0, 8, 5, 0.2) 100%);
}

.cta .wrap { position: relative; }

.cta h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  margin-top: 12px;
  max-width: 16em;
}

.cta p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16.5px;
  max-width: 30em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

/* ================= FOOTER ================= */
footer {
  background: #010a06;
  color: #fff;
  padding: 44px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.foot .logo img { height: 46px; }

.foot .tag {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.foot nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.foot nav a:hover { color: var(--green-bright); }

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s, transform 0.2s;
  color: #fff;
}

.social a:hover {
  background: var(--green-primary);
  transform: translateY(-2px);
}

.social svg { width: 17px; height: 17px; }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.foot-bottom .heart { color: #e53935; }

/* ================= FLOATING WIDGETS ================= */
/* WhatsApp Floating */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.75);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 16px 36px -4px rgba(37, 211, 102, 0.9);
}

.wa-float svg { width: 32px; height: 32px; }

/* Recent Activity Live Toast */
.lead-toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  background: rgba(4, 20, 12, 0.95);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid var(--dark-border);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lead-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(39, 196, 94, 0.2);
  color: var(--green-bright);
  display: grid;
  place-items: center;
  flex: none;
}

.toast-icon svg { width: 18px; height: 18px; }

.toast-text b { display: block; font-size: 13.5px; font-weight: 700; color: #fff; }
.toast-text span { font-size: 12px; color: rgba(255, 255, 255, 0.75); }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.85);
  display: grid;
  place-items: center;
  padding: 20px;
}

.video-modal[hidden] { display: none; }

.video-modal .box {
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal .close-x {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Reveal on Scroll */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .menu { gap: 20px; }
}

@media (max-width: 960px) {
  .burger { display: grid; }
  .menu {
    position: absolute;
    top: 76px;
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #04140b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px;
    display: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }
  .menu.open { display: flex; }
  .menu a:not(.btn) {
    padding: 13px 14px;
    border-radius: 8px;
  }
  .menu a:not(.btn):hover { background: rgba(255, 255, 255, 0.08); }
  .menu a:not(.btn)::after { display: none; }
  .menu .btn { margin-top: 8px; }

  .hero { padding: 110px 0 140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art-col { max-width: 540px; margin: 10px auto 0; }
  .lead-card { grid-template-columns: 1fr; }
  .calc-card { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .photo-col { max-width: 580px; margin: 20px auto 0; }
  .num-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .num:nth-child(3) { border-left: 0; }
  .st-grid { grid-template-columns: 1fr; }
  .cta-img { width: 100%; opacity: 0.35; }
  .cta-img::before { background: linear-gradient(90deg, var(--dark) 0%, rgba(0, 8, 5, 0.7) 100%); }
  .foot { grid-template-columns: 1fr; justify-items: start; }
  .foot nav { justify-content: flex-start; }
}

/* ================= MULTI-PAGE STYLES ================= */
/* Page Hero Banner */
.page-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 140px 0 70px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% 30%, rgba(24, 169, 75, 0.28), transparent 70%);
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  max-width: 860px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* Category Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 169, 75, 0.35);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 169, 75, 0.4);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #001208;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 8, 5, 0.85);
  backdrop-filter: blur(8px);
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(39, 196, 94, 0.3);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card:hover h3 {
  color: var(--green-primary);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-primary);
  margin-top: 16px;
}

/* Article Reader Modal */
.article-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 8, 5, 0.8);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.article-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.article-modal-window {
  width: min(840px, 100%);
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  overflow-y: auto;
  position: relative;
  padding: clamp(28px, 4vw, 48px);
}

.article-modal-window h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  margin: 14px 0;
}

.article-content {
  font-size: 16px;
  line-height: 1.7;
  color: #2b3931;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text-dark);
}

.article-content p {
  margin-bottom: 16px;
}

.article-content ul {
  margin: 12px 0 20px 24px;
}

.article-content li {
  margin-bottom: 8px;
}

/* Pricing / Service Packages Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.pkg-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.pkg-card.featured {
  border-color: var(--green-primary);
  box-shadow: 0 20px 50px -15px rgba(24, 169, 75, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
}

.pkg-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 16px 0 8px;
}

.pkg-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pkg-features {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-features svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
  flex: none;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 60px);
  margin: 50px 0 80px;
}

.contact-info-card {
  background: linear-gradient(145deg, #001208 0%, #052613 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-list .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(39, 196, 94, 0.18);
  display: grid;
  place-items: center;
  color: var(--green-bright);
  flex: none;
}

.contact-info-list h4 { font-size: 15px; font-weight: 700; color: var(--green-bright); }
.contact-info-list p { font-size: 14px; color: var(--text-light-muted); margin-top: 2px; }

/* Responsive adjustments for multi-page */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 50px; }
  .pkg-card { padding: 24px 20px; }
  .pkg-price { font-size: 28px; }
  .contact-info-card { padding: 24px 20px; }
  .contact-info-list li { gap: 12px; }
  .contact-info-list .ic { width: 38px; height: 38px; }
  .article-modal-window { padding: 20px; border-radius: var(--radius-md); }
  .article-modal-window h2 { font-size: 20px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 12.5px; }
  .blog-card-body { padding: 18px; }
  .blog-card h3 { font-size: 16px; }
}

/* ================= ENHANCED MOBILE (≤ 960px) ================= */
@media (max-width: 960px) {
  /* Hero stats responsive */
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stats > div { min-width: calc(50% - 12px); }

  /* Lead section form */
  .fields { grid-template-columns: 1fr !important; }
  .f.full { grid-column: 1 !important; }

  /* Lead modal responsive */
  .lead-modal-window { width: 95%; max-height: 90vh; padding: 20px; }
  .lead-modal-header { padding: 20px; }
  .lead-modal-body { padding: 20px; }

  /* City chips wrap */
  .city-chips { flex-wrap: wrap; }
  .city-chip { font-size: 12px; padding: 6px 12px; }

  /* Calculator responsive */
  .calc-selects { flex-direction: column; gap: 16px; }
  .calc-result-box { padding: 24px 20px; }
  .calc-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Footer responsive */
  .foot nav { flex-wrap: wrap; gap: 10px 16px; }
  .social { justify-content: flex-start; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ================= SMALL PHONES (≤ 480px) ================= */
@media (max-width: 480px) {
  :root {
    --pad: 16px;
  }

  body { font-size: 15px; }

  /* Hero compact */
  .hero { padding: 100px 0 100px; }
  .hero h1 { font-size: 28px; }
  .hero-lede { font-size: 14.5px; }
  .hero-badge-tag { font-size: 11.5px; }
  .hero-cta { flex-direction: column; gap: 14px; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
  .play-btn { width: 100%; justify-content: center; }

  /* Hero stats full width */
  .hero-stats { gap: 10px; }
  .hero-stats > div { min-width: 100%; text-align: center; }
  .hero-stats b { font-size: 28px; }

  /* Section titles */
  .sec-title { font-size: 24px; }
  .eyebrow { font-size: 11px; }

  /* Service cards stack */
  .svc-grid { grid-template-columns: 1fr !important; }
  .svc { padding: 20px; }

  /* Numbers section */
  .num-grid { grid-template-columns: 1fr !important; }
  .num { padding: 16px 0; border-left: 0 !important; }
  .num b { font-size: 32px; }

  /* Stories */
  .st { padding: 20px; }

  /* FAQ */
  .faq-question { font-size: 15px; padding: 16px; }
  .faq-answer { font-size: 14px; padding: 0 16px 16px; }

  /* CTA section */
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 24px; }

  /* Lead modal full screen on mobile */
  .lead-modal-window {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
  .lead-modal-backdrop { padding: 0; align-items: flex-end; }
  .lead-modal-header h3 { font-size: 18px; }

  /* Calculator */
  .calc-stats-grid { grid-template-columns: 1fr !important; }
  .calc-stat-item b { font-size: 24px; }

  /* Footer */
  .foot nav { flex-direction: column; gap: 8px; }
  .foot-bottom { font-size: 12px; }

  /* Page hero on sub-pages */
  .page-hero { padding: 100px 0 40px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 15px; }

  /* Blog cards */
  .blog-grid { gap: 18px; }
  .blog-card-body { padding: 16px; }
  .blog-card h3 { font-size: 15.5px; }
  .blog-meta { font-size: 11.5px; }

  /* Pricing packages */
  .pkg-card { padding: 20px 16px; }
  .pkg-price { font-size: 26px; }
  .pkg-features { font-size: 13px; }

  /* Contact grid */
  .contact-grid { gap: 24px; margin: 30px 0 50px; }

  /* Why section */
  .why-list li { gap: 12px; }
  .why-list h4 { font-size: 15px; }
  .why-list p { font-size: 13.5px; }
  .scribble { font-size: 22px; }

  /* Trusted brands */
  .brands { flex-direction: column; align-items: stretch; gap: 10px; }
  .brand { justify-content: center; }
}

/* ================= VERY SMALL SCREENS (≤ 375px) ================= */
@media (max-width: 375px) {
  .hero h1 { font-size: 24px; }
  .hero-stats b { font-size: 24px; }
  .sec-title { font-size: 20px; }
  .btn { font-size: 14px; padding: 12px 20px; }
  .lead-card { padding: 24px 16px; }
  .calc-card { padding: 20px 16px; }
}

/* ================= LANDSCAPE PHONES ================= */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 90px 0 60px; }
  .lead-modal-backdrop { align-items: center; }
  .lead-modal-window { max-height: 95vh; }
}

/* ================= PRINT STYLES ================= */
@media print {
  .header, .wa-float, .lead-modal-backdrop, .otp-modal-backdrop, .otp-sms-banner, .lead-toast, footer, .burger { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { padding: 20px 0; }
}

/* ================= OTP VERIFICATION MODAL & SMS BANNER ================= */
.otp-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(2, 12, 7, 0.82);
  backdrop-filter: blur(12px);
  display: none;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.otp-modal-backdrop.active {
  display: grid !important;
  opacity: 1;
  visibility: visible;
}

.otp-modal-window {
  width: min(480px, 100%);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(39, 196, 94, 0.3);
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(18px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.otp-modal-backdrop.active .otp-modal-window {
  transform: scale(1) translateY(0);
}

.otp-modal-header {
  background: linear-gradient(135deg, #021a0d 0%, #06381d 100%);
  color: #ffffff;
  padding: 24px 24px 20px;
  position: relative;
  text-align: center;
}

.otp-shield-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 196, 94, 0.2);
  border: 1px solid rgba(39, 196, 94, 0.4);
  color: #38e47b;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.otp-modal-header h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.otp-modal-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0 0;
}

.otp-modal-body {
  padding: 28px 24px;
  text-align: center;
}

.otp-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint-bg, #edfcf2);
  border: 1px solid rgba(39, 196, 94, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #032b16;
  margin-bottom: 22px;
}

.otp-edit-btn {
  background: none;
  border: 0;
  color: var(--green-primary, #056835);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 4px;
}

.otp-boxes {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 10px 0 20px !important;
  width: 100% !important;
}

.otp-boxes input.otp-digit,
input[type=text].otp-digit,
.otp-digit {
  width: 58px !important;
  max-width: 58px !important;
  height: 64px !important;
  flex: 0 0 58px !important;
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  font-family: inherit;
  color: #0c1c13;
  background: #f8faf9;
  border: 2px solid #d1dcd5;
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  caret-color: var(--green-primary, #056835);
}

.otp-digit:focus {
  background: #ffffff;
  border-color: var(--green-primary, #056835);
  box-shadow: 0 0 0 4px rgba(39, 196, 94, 0.18);
  transform: translateY(-2px);
}

.otp-digit.filled {
  border-color: #056835;
  background: #f0fdf4;
}

.otp-error-msg {
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  min-height: 20px;
  margin-bottom: 14px;
}

.otp-shake {
  animation: otpShake 0.4s ease-in-out;
}

@keyframes otpShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.otp-resend-wrap {
  font-size: 13.5px;
  color: var(--text-muted, #64748b);
  margin-bottom: 22px;
}

.otp-resend-btn {
  background: none;
  border: 0;
  color: var(--green-primary, #056835);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 13.5px;
  padding: 0;
}

.otp-resend-btn:hover {
  color: #034823;
}

.otp-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-sm, 10px);
}

.otp-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted, #64748b);
}

/* Simulated SMS Notification Popup at Top */
.otp-sms-banner {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 1080;
  background: rgba(18, 28, 22, 0.96);
  backdrop-filter: blur(16px);
  color: #ffffff;
  border: 1px solid rgba(39, 196, 94, 0.4);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(520px, 92vw);
  width: max-content;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}

.otp-sms-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.otp-sms-icon {
  width: 38px;
  height: 38px;
  background: #25d366;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: none;
}

.otp-sms-content {
  flex: 1;
}

.otp-sms-sender {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #82e4a8;
  text-transform: uppercase;
}

.otp-sms-body {
  font-size: 13px;
  color: #f1f5f9;
  line-height: 1.35;
  margin-top: 2px;
}

.otp-sms-body strong {
  color: #ffde59;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.otp-sms-autofill {
  background: var(--gold, #d4af37);
  color: #031e0f;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  flex: none;
  transition: background 0.2s, transform 0.15s;
}

.otp-sms-autofill:hover {
  background: #f3ca44;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .otp-digit {
    width: 48px;
    height: 56px;
    font-size: 24px;
    border-radius: 10px;
  }
  .otp-boxes {
    gap: 8px;
  }
  .otp-modal-header {
    padding: 20px 16px 16px;
  }
  .otp-modal-body {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   GROW BIHAR MEDIA BUYING MARKETPLACE (THE MEDIA ANT INSPIRED)
   ========================================================================== */

/* Top Marketplace Header */
.market-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: #000c07;
  border-bottom: 1px solid rgba(39, 196, 94, 0.2);
}

.market-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Left Group: Hamburger near Logo (The Media Ant style) */
.header-left-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  min-width: 220px;
}

.market-header-top .burger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
  flex-shrink: 0;
}

.market-header-top .burger:hover {
  background: rgba(39, 196, 94, 0.2);
  border-color: var(--green-bright);
  color: var(--green-bright);
  transform: scale(1.05);
}

.market-header-top .burger svg {
  width: 22px;
  height: 22px;
}

/* Center Group: Search Bar in the Middle with Proper Border */
.header-center-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 520px;
}

.market-search-box {
  width: 100%;
  position: relative;
  background: #ffffff;
  border-radius: 9999px;
  height: 44px;
  border: 2px solid #27c45e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(39, 196, 94, 0.2);
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.market-search-box:hover {
  border-color: #38e078;
  box-shadow: 0 0 12px rgba(39, 196, 94, 0.35), 0 2px 10px rgba(0, 0, 0, 0.2);
}

.market-search-box:focus-within {
  border-color: #10b981;
  box-shadow: 0 0 0 3.5px rgba(39, 196, 94, 0.35), 0 6px 20px rgba(0, 0, 0, 0.3);
}

.market-search-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 9999px;
  padding: 0 44px 0 56px !important;
  color: #0f172a;
  font-size: 14.5px;
  font-weight: 500;
  outline: none;
  line-height: 44px;
}

.market-search-input::placeholder {
  color: #64748b;
  font-weight: 400;
}

.market-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #475569;
  pointer-events: none;
  flex-shrink: 0;
}

.market-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #64748b;
  cursor: pointer;
  display: none;
  font-size: 14px;
  padding: 4px;
  transition: color 0.2s ease;
}

.market-search-clear:hover {
  color: #0f172a;
}

/* Right Group: Contact Us */
.header-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 220px;
}

.header-contact-link {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.header-contact-link:hover {
  color: #ffffff;
  background: rgba(39, 196, 94, 0.2);
  border-color: var(--green-bright);
  transform: translateY(-1px);
}

/* Plan Bag Button */
.plan-bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39, 196, 94, 0.12);
  border: 1.5px solid rgba(39, 196, 94, 0.35);
  border-radius: 100px;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.plan-bag-btn:hover {
  background: rgba(39, 196, 94, 0.22);
  border-color: var(--green-bright);
  transform: translateY(-1px);
}

.plan-bag-badge {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Slide-out Hamburger Menu Drawer for Home Page */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

.menu-drawer {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  max-width: 360px !important;
  height: 100vh !important;
  background: #020f08 !important;
  border-right: 1px solid rgba(39, 196, 94, 0.25) !important;
  border-radius: 0 !important;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.8) !important;
  z-index: 200 !important;
  transform: translateX(-100%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.menu-drawer.open {
  transform: translateX(0) !important;
}

.drawer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #010905;
}

.menu-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
  transform: rotate(90deg);
}

.drawer-nav-links {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.drawer-nav-item:hover, .drawer-nav-item.active {
  background: rgba(39, 196, 94, 0.12) !important;
  color: #ffffff !important;
  border-left: 3px solid var(--green-bright);
  padding-left: 17px;
}

.drawer-item-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  flex-shrink: 0;
}

.drawer-item-icon svg {
  width: 18px;
  height: 18px;
}

.drawer-item-label {
  flex: 1;
}

.drawer-item-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.drawer-item-badge.gold-badge {
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold);
}

.drawer-cta-section {
  padding: 18px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #010a05;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-bag-btn {
  width: 100%;
  justify-content: space-between;
  padding: 11px 16px;
  border-radius: 10px;
}

.drawer-audit-btn {
  width: 100%;
  text-align: center;
  padding: 11px 16px;
  font-size: 14px;
  justify-content: center;
  display: flex;
}

.drawer-direct-contact {
  margin-top: 4px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.drawer-phone {
  color: var(--green-bright);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

/* Marketplace Hero Section */
.market-hero {
  margin-top: 68px;
  padding: 70px 0 60px;
  background: radial-gradient(circle at 50% 20%, #073319 0%, #02160b 50%, #000805 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(39, 196, 94, 0.15);
}

.market-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(39, 196, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 196, 94, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.market-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-sub-rotating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero-main-title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.hero-sub-desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 28px;
}

/* 3 Quick Action Cards (The Media Ant Style) */
.market-action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.market-action-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.market-action-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-primary);
  box-shadow: 0 18px 40px rgba(24, 169, 75, 0.25);
}

.action-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mint-bg);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.action-card-icon svg {
  width: 24px;
  height: 24px;
}

.action-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.action-card-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-card-arrow {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
  transition: transform 0.2s ease;
}

.market-action-card:hover .action-card-arrow {
  transform: translateX(4px);
}

/* Instant Media Planner Card (GrowBot / AI Planner) */
.growbot-card {
  background: #031c10;
  border: 1.5px solid rgba(39, 196, 94, 0.35);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  position: relative;
}

.growbot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 196, 94, 0.2);
  color: var(--green-bright);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.growbot-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.growbot-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.planner-field-group {
  margin-bottom: 14px;
}

.planner-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.planner-select, .planner-input {
  width: 100%;
  height: 40px;
  background: #062817;
  border: 1px solid rgba(39, 196, 94, 0.3);
  border-radius: 8px;
  color: #ffffff;
  padding: 0 12px;
  font-size: 13.5px;
  outline: none;
}

.planner-select:focus {
  border-color: var(--green-bright);
}

.budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.budget-pill {
  padding: 5px 11px;
  background: #062817;
  border: 1px solid rgba(39, 196, 94, 0.25);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.15s ease;
}

.budget-pill:hover, .budget-pill.active {
  background: var(--green-primary);
  border-color: var(--green-bright);
  color: #ffffff;
}

.planner-result-box {
  background: #062817;
  border: 1px dashed rgba(39, 196, 94, 0.4);
  border-radius: 10px;
  padding: 14px;
  margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}

.result-stat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Category Explorer Grid */
.market-categories-sec {
  padding: 60px 0;
  background: #fbfdfc;
  border-bottom: 1px solid #e1ebe5;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.market-cat-card {
  background: #ffffff;
  border: 1px solid #e1ebe5;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.market-cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-primary);
  box-shadow: 0 14px 30px rgba(0, 30, 15, 0.08);
}

.cat-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mint-bg);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-icon-badge svg {
  width: 26px;
  height: 26px;
}

.cat-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cat-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cat-card-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f4f2;
}

/* Rate Card & Inventory Explorer */
.inventory-section {
  padding: 70px 0;
  background: #ffffff;
}

.inventory-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.filter-row::-webkit-scrollbar { display: none; }

.filter-tag-btn {
  padding: 7px 16px;
  border-radius: 100px;
  background: #f0f4f2;
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.filter-tag-btn:hover {
  background: #e2ede7;
}

.filter-tag-btn.active {
  background: var(--green-primary);
  color: #ffffff;
  border-color: var(--green-hover);
  box-shadow: 0 4px 12px rgba(24, 169, 75, 0.35);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.inventory-card {
  background: #ffffff;
  border: 1.5px solid #e2ece6;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.inventory-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-primary);
  box-shadow: 0 16px 36px rgba(0, 25, 12, 0.12);
}

.card-top-header {
  padding: 18px 20px;
  background: #fbfdfc;
  border-bottom: 1px solid #edf3ef;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.media-type-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--mint-bg);
  color: var(--green-primary);
}

.district-badge {
  font-size: 12px;
  font-weight: 600;
  color: #526359;
  display: flex;
  align-items: center;
  gap: 4px;
}

.district-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green-primary);
}

.card-body-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spot-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.spot-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.spot-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f7faf8;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-k {
  font-size: 11px;
  color: #6b778c;
  font-weight: 500;
  text-transform: uppercase;
}

.spec-v {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.card-pricing-footer {
  padding-top: 14px;
  border-top: 1px solid #edf3ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.spot-rate-wrap {
  display: flex;
  flex-direction: column;
}

.rate-label {
  font-size: 11px;
  color: #6b778c;
}

.spot-rate {
  font-size: 18px;
  font-weight: 900;
  color: var(--green-primary);
}

.add-plan-btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: #000c07;
  color: #ffffff;
  border: 1px solid rgba(39, 196, 94, 0.4);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.add-plan-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: translateY(-1px);
}

.add-plan-btn.in-plan {
  background: var(--green-hover);
  color: #ffffff;
  border-color: var(--green-bright);
}

/* Slide-out Media Plan Drawer */
.media-plan-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.media-plan-overlay.open {
  opacity: 1;
  visibility: visible;
}

.media-plan-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 205;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.media-plan-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 20px 24px;
  background: #000c07;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(39, 196, 94, 0.2);
}

.drawer-title {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-close-btn {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.drawer-empty-msg {
  text-align: center;
  padding: 60px 10px;
  color: var(--text-muted);
}

.drawer-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-item-card {
  padding: 12px 14px;
  background: #f8faf9;
  border: 1px solid #e1ebe5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.item-info-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.item-info-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.item-info-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-primary);
}

.item-remove-btn {
  background: transparent;
  border: 0;
  color: #fd573a;
  cursor: pointer;
  padding: 4px;
}

.drawer-footer {
  padding: 20px 24px;
  background: #fbfdfc;
  border-top: 1px solid #e1ebe5;
}

.drawer-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 16px;
}

/* Curated Industry Bundles */
.bundles-section {
  padding: 70px 0;
  background: #021209;
  color: #ffffff;
  border-top: 1px solid rgba(39, 196, 94, 0.15);
  border-bottom: 1px solid rgba(39, 196, 94, 0.15);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.bundle-card {
  background: #041f11;
  border: 1px solid rgba(39, 196, 94, 0.25);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
}

.bundle-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.bundle-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
  margin-bottom: 14px;
}

.bundle-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.bundle-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 18px;
}

.bundle-spots-included {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bundle-spots-included li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-spots-included li svg {
  width: 14px;
  height: 14px;
  color: var(--green-bright);
  flex: none;
}

.bundle-price-box {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bundle-reach {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.bundle-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
}

/* Why GrowBihar Comparison & Workflow */
.why-marketplace-sec {
  padding: 70px 0;
  background: #ffffff;
}

.tma-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.workflow-card {
  background: #fbfdfc;
  border: 1px solid #e1ebe5;
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
}

.step-num-badge {
  font-size: 28px;
  font-weight: 900;
  color: rgba(24, 169, 75, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.workflow-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.workflow-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Agency Partner Callout Banner */
.partner-callout-sec {
  padding: 60px 0;
  background: radial-gradient(circle at 10% 50%, #082d18 0%, #03140b 100%);
  color: #ffffff;
}

.partner-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(39, 196, 94, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.partner-box-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.partner-box-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  line-height: 1.6;
}

/* Comprehensive SEO Directory Footer */
.seo-directory-footer {
  background: #010804;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(39, 196, 94, 0.15);
  font-size: 13px;
}

.seo-dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.seo-dir-col h4 {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.seo-dir-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--green-bright);
}

.seo-dir-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-dir-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  text-decoration: none;
}

.seo-dir-links a:hover {
  color: var(--green-bright);
}

@media (max-width: 960px) {
  .market-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .market-action-cards {
    grid-template-columns: 1fr;
  }
  .tma-workflow-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partner-box {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }
  .header-left-group, .header-right-group {
    min-width: auto;
  }
  .header-right-group {
    gap: 12px;
  }
  .market-search-box {
    max-width: 100%;
  }
  .market-hero {
    margin-top: 68px;
    padding: 40px 0;
  }
}

@media (max-width: 640px) {
  .market-header-top {
    gap: 10px;
    height: 64px;
  }
  .brand-logo img {
    width: 124px;
    height: auto;
  }
  .header-left-group {
    gap: 10px;
  }
  .market-header-top .burger {
    width: 38px;
    height: 38px;
  }
  .market-search-box {
    height: 40px;
    border-width: 1.5px;
  }
  .market-search-input {
    font-size: 13px;
    padding: 0 30px 0 46px !important;
    line-height: 40px;
  }
  .market-search-icon {
    left: 14px;
    width: 16px;
    height: 16px;
  }
  .header-contact-link {
    font-size: 12.5px;
    padding: 6px 12px;
  }
  .tma-workflow-grid {
    grid-template-columns: 1fr;
  }
  .inventory-grid {
    grid-template-columns: 1fr;
  }
  .media-plan-drawer {
    max-width: 100%;
  }
}

@media (max-width: 440px) {
  .header-contact-link {
    display: none;
  }
}


