/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 900px) {
  #navLinks.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0;
    width: 100%;
    background: #fff;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(254, 253, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.logo-name em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.logo-name-footer {
  color: #fff;
  font-size: 1rem;
}
.logo-name-footer em {
  color: var(--gold-bright);
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4b5563;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.for-business-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.toggle-switch { position: relative; display: inline-block; width: 42px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 22px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--green-dark); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: #111; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .for-business-label, .toggle-switch { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
  padding-top: 72px;
  overflow: hidden;
  background: var(--cream-light);
}
.hero-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-map-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}
.hero-map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(254,253,247,0.92) 0%, rgba(254,253,247,0.55) 45%, rgba(254,253,247,0.15) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 2rem;
  width: 100%;
  min-height: calc(100vh - 72px);
}
.hero-content {
  max-width: 540px;
  padding-bottom: 4.5rem;
  align-self: center;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 3.85rem);
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-green { color: var(--green); }
.hero-sub {
  font-size: 1rem;
  color: #5b6470;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}
.hero-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.hero-mockup {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: end;
  line-height: 0;
  /* Phone base sits flush on the hero bottom edge */
  margin-bottom: 0;
  padding-bottom: 0;
}
.hero-mockup .phone-img {
  max-height: min(640px, calc(100vh - 72px - 1.5rem));
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.18));
  /* Planted on the hero bottom edge — no float lift */
  margin-bottom: 0;
  vertical-align: bottom;
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 2rem 0;
    min-height: auto;
    align-items: center;
  }
  .hero-content {
    max-width: 100%;
    padding-bottom: 2rem;
    align-self: center;
  }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-mockup {
    justify-content: center;
    align-self: end;
  }
  .hero-mockup .phone-img {
    max-height: 420px;
  }
  .hero-map-bg::after {
    background: linear-gradient(180deg, rgba(254,253,247,0.85) 0%, rgba(254,253,247,0.5) 100%);
  }
}

/* ============================================================
   REPORT CHANNELS
   ============================================================ */
.channels {
  padding: 5.5rem 0 5rem;
  background: #fff;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ch-card {
  border-radius: 22px;
  padding: 1.75rem 1.5rem 2.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
}
.ch-icon-wrap {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.ch-icon { font-size: 1.35rem; color: #1a1a1a; }
.ch-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #111;
}
.ch-card p { font-size: 0.9rem; color: #5b6470; line-height: 1.55; }
.ch-purple { background: var(--card-purple); }
.ch-yellow { background: var(--card-yellow); }
.ch-blue   { background: var(--card-blue); }
.ch-mint   { background: var(--card-mint); }
@media (max-width: 900px) { .channels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .channels-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  position: relative;
  background: #0a0a0a;
  padding: 0;
  overflow: hidden;
}
.hiw-visual {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
.hiw-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.hiw-fallback { display: none; }

@media (max-width: 700px) {
  .hiw-visual { display: none; }
  .hiw-fallback {
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hiw-header { margin-bottom: 2.5rem; }
  .hiw-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .hiw-header p { color: #9ca3af; font-size: 0.95rem; }
  .hiw-steps-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .step-badge {
    width: 32px; height: 32px;
    min-width: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: var(--font-body);
  }
  .step-yellow { background: #f5c842; color: #111; }
  .step-purple { background: #d4c4f0; color: #2a1a6a; }
  .step-blue   { background: #3b5bdb; color: #fff; }
  .step-mint   { background: #98e0b8; color: #0a3d24; }
  .step-body h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.3rem;
  }
  .step-body p { color: #9ca3af; font-size: 0.9rem; }
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.features-section {
  padding: 5.5rem 0 5rem;
  background: #fff;
}
.features-title {
  color: var(--green);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px) 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.feat-col {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
}
.feat-icon-wrap {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.feat-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #111;
}
.feat-text p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}
.feat-center-img {
  display: flex;
  justify-content: center;
}
.feat-person-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 268 / 470;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  /* Asset is a pill photo on black — clip to pill so black corners disappear */
  background: #1a1a1a;
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feat-col { gap: 2.5rem; }
  .feat-person-img {
    max-width: 220px;
    order: -1;
  }
  .feat-center-img { order: -1; }
}

/* ============================================================
   BELL EXPLAINER
   ============================================================ */
.bell-explainer {
  padding: 5.5rem 0;
  background: #fff;
}
.bell-inner {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1.15fr;
  gap: 2rem;
  align-items: center;
}
.bell-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bell-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 1rem;
}
.bell-quote-block {
  position: relative;
  padding: 0.5rem 0 0.5rem 0.25rem;
}
.bell-quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: #c5c9ce;
  display: block;
}
.bell-quote-end {
  text-align: right;
  margin-top: 0.5rem;
}
.bell-body {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: #1a1a1a;
  line-height: 1.55;
  margin: 0.75rem 0;
}
.bell-states { display: flex; flex-direction: column; gap: 0.875rem; }
.bell-state {
  background: #f3f4f6;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.bell-active {
  border-color: #e8a04a;
  background: #fdf6ea;
}
.bell-state-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #6b7280;
  flex-shrink: 0;
}
.bell-icon-active {
  background: #ffe8c8;
  color: #e07a1a;
}
.bell-state-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.not-sub { color: #6b7280; }
.sub-active { color: #d97706; }
.bell-state-info h5 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #111;
}
.bell-state-info p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.bell-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  background: #1d3557;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.bell-cta-btn:hover {
  background: #152843;
  transform: translateY(-1px);
}
.bell-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bell-mockup .phone-img,
.bell-phone-img {
  max-height: 680px;
  width: auto;
  max-width: 100%;
  animation: none;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.16));
}
@media (max-width: 1000px) {
  .bell-inner { grid-template-columns: 1fr 1fr; }
  .bell-mockup { display: none; }
}
@media (max-width: 700px) {
  .bell-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  position: relative;
  padding: 5.5rem 0 6rem;
  background: var(--cream-light);
  overflow: hidden;
}
.pricing-dots-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 94, 64, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 64, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.7;
}
/* Plus-mark pattern overlay */
.pricing-dots-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 10v8M10 14h8' stroke='%230e5e40' stroke-width='1' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 28px 28px;
  opacity: 0.9;
}
.pricing .section-container { position: relative; z-index: 1; }

.pricing-toggle {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 100px;
  padding: 0.25rem;
  max-width: 240px;
  margin: 0 auto 3rem;
}
.toggle-btn {
  flex: 1;
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
  transition: all var(--transition);
}
.toggle-btn.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(14, 94, 64, 0.25);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.price-basic {
  border: 1.5px solid var(--green);
  border-bottom-width: 4px;
}
.price-premium {
  border: 1px solid var(--border);
}
.price-popular-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
}
.price-card-body {
  padding: 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.price-head { margin-bottom: 0.25rem; }
.plan-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #6b7280;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.35rem;
}
.amount {
  font-size: 2.85rem;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1;
  color: #111;
}
.period {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
}
.plan-sub {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}
.plan-desc {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}
.price-divider {
  height: 0;
  margin: 1.25rem 0;
  border-top: 1.5px dashed #93c5fd;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.plan-features-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.75rem;
  row-gap: 0.8rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.35;
}
.plan-features li i {
  font-size: 1.05rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.price-premium .plan-features li i { color: #1a1a1a; }
.plan-btn {
  display: block;
  border-radius: 10px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
  width: 100%;
  margin-top: auto;
}
.price-basic .plan-btn {
  background: var(--green);
  color: #fff;
  border: none;
}
.price-basic .plan-btn:hover { background: var(--green-dark); }

@media (max-width: 700px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .plan-features-2col { grid-template-columns: 1fr; }
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case-study {
  padding: 4rem 0 5rem;
  background: var(--mint-bg);
}
.case-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.15rem;
  align-items: stretch;
}
.case-photos {
  display: grid;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 1.15rem;
  min-height: 560px;
}
.case-photo-wrap {
  overflow: hidden;
  border-radius: 4px;
  background: #d4d0c8;
}
.case-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.case-photo-wrap:hover img { transform: scale(1.03); }
.case-card {
  background: #1e231d;
  background-image: radial-gradient(ellipse at 0% 0%, rgba(34, 110, 65, 0.35) 0%, transparent 55%);
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  border-radius: 4px;
  min-height: 560px;
}
.case-label {
  font-style: italic;
  color: var(--green-glow);
  font-size: 1.65rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.case-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1.02rem;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-photos {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }
  .case-card {
    min-height: auto;
    padding: 2rem;
  }
}
@media (max-width: 560px) {
  .case-photos { grid-template-columns: 1fr; min-height: 400px; }
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download-cta {
  padding: 0 1.25rem 0;
  background: var(--mint-bg);
}
.cta-shell {
  position: relative;
  background: var(--green-deeper);
  border-radius: 36px 36px 0 0;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-visual {
  position: relative;
  line-height: 0;
}
.cta-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.cta-hotspot {
  position: absolute;
  display: block;
  border-radius: 100px;
}
/* Approximate hit areas over the designed Download App button + QR */
.cta-hotspot-download {
  left: 18%;
  bottom: 5.5%;
  width: 18%;
  height: 5.5%;
}
.cta-hotspot-apple {
  /* Secondary hit near download label area for App Store */
  left: 18%;
  bottom: 2.5%;
  width: 22%;
  height: 3%;
}
.cta-hotspot-qr {
  right: 18%;
  bottom: 4%;
  width: 22%;
  height: 8%;
  border-radius: 12px;
}
.cta-store-bar {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem 1.75rem;
  background: var(--green-deeper);
}
.btn-cta-white {
  background: #fff;
  color: var(--green-deeper);
  border-radius: 100px;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-cta-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .cta-shell { border-radius: 24px 24px 0 0; }
  .cta-hotspots { display: none; }
  .cta-store-bar { display: flex; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 5rem 0 5.5rem;
  background: var(--faq-bg);
}
.faq-box {
  background: #fff;
  border-radius: 40px;
  padding: 3.25rem 3rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.faq-left-panel {
  display: flex;
  flex-direction: column;
}
.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 1rem;
}
.faq-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
}
.faq-left-panel h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-weight: 700;
  color: #111;
  margin-bottom: auto;
  padding-bottom: 2.5rem;
  line-height: 1.2;
}
.faq-contact-block { margin-top: auto; }
.faq-contact-title {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}
.faq-contact-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: #f6f7f9;
  border-radius: 14px;
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item:has(.faq-toggle.active),
.faq-item-open {
  background: #f0f2f5;
}
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: #111;
  text-align: left;
  background: transparent;
  gap: 1rem;
}
.faq-icon {
  font-size: 1.15rem;
  color: #111;
  flex-shrink: 0;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-content p {
  padding: 0 1.25rem 1.2rem;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .faq-box {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: #fff;
}
.footer-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
}
.footer-brand { max-width: 380px; }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer-company-name {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.3;
}
.footer-compliance {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 0.625rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: background var(--transition), border-color var(--transition);
}
.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
}
.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 3rem;
  justify-content: end;
}
.footer-nav-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.footer-nav-col a {
  display: block;
  color: #e5e7eb;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: #fff; }
.footer-business-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gold-bright) !important;
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-business-link:hover { opacity: 0.85; }
.footer-bottom-bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom-bar p {
  font-size: 0.8rem;
  color: #6b7280;
}
@media (max-width: 1000px) {
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav-group {
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer-bottom-bar { flex-direction: column; text-align: center; }
}
