/* =========================================================
   NAMMA CHIT — Design Tokens
   Palette:
     --forest      #163529  (header/footer, deep brand green)
     --forest-2    #1f4a37  (secondary green, gradients)
     --leaf        #2f7a4f  (accent green for highlighted text)
     --gold        #e8b923  (primary CTA / brand gold)
     --gold-dark   #c99a2e  (gold hover/border)
     --cream       #f7f4ea  (page background)
     --cream-2     #efe9d8  (section alt background)
     --ink         #1c241f  (body text)
     --ink-soft    #52604f  (muted text)
   Type:
     Display  -> "Poppins" (700/800) — bold geometric, matches the
                 confident rounded headline in the brand reference
     Body     -> "Inter" (400/500/600) — clean, highly legible
   ========================================================= */

:root {
  --forest: #163529;
  --forest-2: #1f4a37;
  --forest-soft: #26543f;
  --leaf: #2f7a4f;
  --gold: #e8b923;
  --gold-dark: #c99a2e;
  --cream: #f5f8fc;
  --cream-2: #edf3fa;
  --ink: #1c241f;
  --ink-soft: #56624f;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(22, 53, 41, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--forest);
}
h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 8px 20px rgba(232, 185, 35, 0.35);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-green {
  background: var(--leaf);
  color: var(--white);
}
.btn-green:hover { background: var(--forest-soft); }

.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* ---------------- Navbar ---------------- */
.navbar {
  background: #0B2F55;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text .name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.brand-text .tag {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cfe4d7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: #e6efe9;
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #2563eb;
  border-bottom-color: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15,47,95,0.10);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: block; }
  .nav-cta .btn span { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 52%, #f4f8fc 100%);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}

/* Ambient blobs drifting behind the hero content */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.hero-blob-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(47,122,79,0.35), transparent 70%);
  top: -120px; left: -80px;
  animation: driftA 16s ease-in-out infinite;
}
.hero-blob-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,185,35,0.35), transparent 70%);
  bottom: -100px; right: -60px;
  animation: driftB 18s ease-in-out infinite;
}
@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 24px) scale(1.08); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, -18px) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blob-1, .hero-blob-2 { animation: none; }
}
.eyebrow {
  display: inline-block;
  background: var(--cream-2);
  border: 1px solid var(--gold-dark);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--leaf); }
.hero-sub {
  font-size: 1.05rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin: 26px 0 30px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}
.hero-badge .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(232,185,35,0.28) 0%, rgba(232,185,35,0.08) 45%, transparent 72%);
  filter: blur(6px);
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite;
}
.hero-art img {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Orbiting dashed ring around the logo, echoing the tree's coin motif */
.logo-orbit {
  position: absolute;
  width: 82%;
  height: 82%;
  top: 9%;
  left: 9%;
  border: 2px dashed rgba(232, 185, 35, 0.45);
  border-radius: 50%;
  z-index: 1;
  animation: orbitSpin 22s linear infinite;
}
.logo-orbit::before,
.logo-orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(232,185,35,0.6);
}
.logo-orbit::before { top: -5px; left: calc(50% - 5px); }
.logo-orbit::after { bottom: -5px; left: calc(50% - 5px); background: var(--leaf); box-shadow: 0 0 10px 2px rgba(47,122,79,0.6); }
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Falling coin animation - coins flow from the top to the bottom */
.coin-particle {
  position: absolute;
  top: -12%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  color: #8a5a00;
  background: radial-gradient(circle at 35% 30%, #fff4a8 0%, #f6cf55 24%, #e8a91c 62%, #b86d00 100%);
  border: 2px solid #c9850c;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35), 0 5px 12px rgba(154,94,0,0.28);
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
  animation: coinFall 6s linear infinite;
}
.coin-particle::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
}

/* Different horizontal paths, sizes and timings */
.coin-particle.c1 { left: 5%;  animation-delay: 0s;  transform: scale(.78); }
.coin-particle.c2 { left: 18%; animation-delay: 1.1s; transform: scale(.62); }
.coin-particle.c3 { left: 31%; animation-delay: 2.2s; transform: scale(.88); }
.coin-particle.c4 { left: 45%; animation-delay: 3.3s; transform: scale(.70); }
.coin-particle.c5 { left: 58%; animation-delay: 0.7s; transform: scale(.82); }
.coin-particle.c6 { left: 71%; animation-delay: 1.8s; transform: scale(.66); }
.coin-particle.c7 { left: 84%; animation-delay: 2.9s; transform: scale(.90); }
.coin-particle.c8 { left: 94%; animation-delay: 4s;   transform: scale(.72); }

@keyframes coinFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0) rotateY(0deg) rotateZ(-10deg) scale(.45);
  }
  8% { opacity: 1; }
  25% {
    transform: translate3d(18px, 25%, 0) rotateY(90deg) rotateZ(8deg) scale(1);
  }
  50% {
    transform: translate3d(-14px, 55%, 0) rotateY(180deg) rotateZ(-6deg) scale(.92);
  }
  75% {
    opacity: 1;
    transform: translate3d(20px, 85%, 0) rotateY(270deg) rotateZ(10deg) scale(.82);
  }
  100% {
    opacity: 0;
    transform: translate3d(-8px, 125%, 0) rotateY(360deg) rotateZ(-8deg) scale(.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art img, .hero-art::before, .logo-orbit, .coin-particle { animation: none; }
  .coin-particle { opacity: 0.95; }
}

/* ---------------- Section shell ---------------- */
.section { padding: 78px 0; background: rgba(255,255,255,0.72); }
.section-alt { background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%); }
.section-forest {
  /* Light trust section so all content remains clearly readable. */
  background:
    radial-gradient(circle at 12% 20%, rgba(47,122,79,0.08), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(232,185,35,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
  color: var(--ink);
}
.section-forest h2, .section-forest h3 { color: #173d2d; }
.section-forest p { color: #40534a; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head .accent { color: var(--leaf); }
.section-forest .section-head .accent { color: var(--gold); }

/* ---------------- Cards grid ---------------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(22,53,41,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(22,53,41,0.16); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--leaf);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------------- Process steps ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
.step { text-align: center; padding: 0 16px; position: relative; }
.step-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--cream);
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.86rem; }
.steps-track {
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed var(--gold-dark);
  z-index: 1;
}
@media (max-width: 780px) {
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps-track { display: none; }
}

/* ---------------- Professional mobile preview ---------------- */
.mobile-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(30, 64, 175, 0.07), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 52%, #f8fbff 100%);
}

.mobile-preview-section::before,
.mobile-preview-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.mobile-preview-section::before {
  width: 360px;
  height: 360px;
  top: -170px;
  left: -170px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  box-shadow: 0 0 0 38px rgba(37, 99, 235, 0.025), 0 0 0 76px rgba(37, 99, 235, 0.018);
}
.mobile-preview-section::after {
  width: 300px;
  height: 300px;
  bottom: -160px;
  right: -130px;
  border: 1px solid rgba(22, 53, 41, 0.08);
  box-shadow: 0 0 0 36px rgba(22, 53, 41, 0.018), 0 0 0 72px rgba(22, 53, 41, 0.012);
}

.mobile-preview-banner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 36px;
  padding: 14px;
  border: 1px solid rgba(30, 64, 175, 0.10);
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 22px 55px rgba(30,64,175,0.10);
  backdrop-filter: blur(12px);
}
.mobile-preview-banner img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(15,23,42,0.08);
}

.phones {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
  margin-top: 42px;
}
.phones > div { min-width: 0; }

.phone-frame {
  width: min(100%, 280px);
  margin: 0 auto;
  padding: 9px;
  border-radius: 34px;
  background: linear-gradient(145deg, #10251f, #07130f);
  border: 1px solid rgba(15,23,42,0.35);
  box-shadow: 0 24px 55px rgba(15,23,42,0.20), 0 6px 18px rgba(37,99,235,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #172a24;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 26px;
}
.phone-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(15,23,42,0.25), 0 10px 24px rgba(37,99,235,0.12);
}

.phone-caption {
  text-align: center;
  margin: 15px 0 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: #14213d;
}
.phone-caption::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: #2563eb;
}

@media (max-width: 900px) {
  .phones { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .mobile-preview-banner { padding: 8px; border-radius: 20px; }
  .phones { grid-template-columns: 1fr; gap: 30px; }
  .phone-frame { width: min(100%, 310px); }
}

/* ---------------- Mobile app trust strip ---------------- */
.mobile-trust-strip {
  position: relative;
  z-index: 2;
  margin: 8px auto 0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(20,50,40,0.08);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(20,50,40,0.10);
}
.mobile-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mobile-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  font-size: 1.2rem;
  border: 1px solid rgba(18,72,56,0.08);
}
.mobile-trust-blue { background: #eaf2ff; }
.mobile-trust-green { background: #eaf8ef; }
.mobile-trust-orange { background: #fff3df; }
.mobile-trust-purple { background: #f1ebff; }
.mobile-trust-pink { background: #fdeaf2; }
.mobile-trust-item div { min-width: 0; }
.mobile-trust-item strong {
  display: block;
  color: #16335f;
  font-size: 0.78rem;
  line-height: 1.2;
  margin-bottom: 4px;
}
.mobile-trust-item span:not(.mobile-trust-icon) {
  display: block;
  color: #52606d;
  font-size: 0.68rem;
  line-height: 1.35;
}
@media (max-width: 1000px) {
  .mobile-trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .mobile-trust-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
}

/* ---------------- Feature list (check items) ---------------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--forest); font-size: 0.95rem; }
.check-list li::before {
  content: "✓";
  width: 22px; height: 22px;
  background: var(--leaf);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}
@media (max-width: 560px) { .check-list { grid-template-columns: 1fr; } }

/* ---------------- Store badges ---------------- */
.store-badges { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: #ffffff;
  color: var(--forest);
  padding: 10px 18px;
  border: 1px solid rgba(18, 72, 56, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(18, 72, 56, 0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.store-badge:hover {
  background: #f4fbf8;
  border-color: var(--leaf);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(18, 72, 56, 0.12);
}
.store-badge .store-icon { font-size: 1.3rem; color: var(--forest); }
.store-badge .store-lines { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .store-lines small { font-size: 0.62rem; opacity: 0.75; color: #334155; }
.store-badge .store-lines strong { font-size: 0.92rem; color: var(--forest); }

/* ---------------- About page specifics ---------------- */
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.value-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-badge .icon { color: var(--leaf); font-size: 1.3rem; margin-top: 2px; }
.trust-panel {
  background: rgba(255,255,255,0.92);
  color: #1c241f;
  border: 1px solid rgba(22,53,41,0.10);
  box-shadow: 0 18px 45px rgba(22,53,41,0.08);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-panel .badge-check {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff4c9;
  color: #17643f;
  border: 1px solid rgba(232,185,35,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ---------------- Contact page ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(22,53,41,0.1);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--leaf);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.85rem; font-weight: 600; color: var(--forest); }
input, textarea, select {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #dcd6c4;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  background: var(--cream);
  color: var(--ink);
}
input, select {
  min-height: 46px;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%),
                    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 19px) 19px, calc(100% - 13px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
select:invalid { color: #777; }
input:focus, textarea:focus, select:focus {
  border-color: var(--leaf);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 135, 87, 0.10);
}
.form-status { margin-top: 12px; font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--leaf); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 26px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  background: linear-gradient(135deg, #0f2f5f 0%, #174a8a 55%, #2563b8 100%);
  color: var(--white);
  padding: 56px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: #cfe4d7; max-width: 560px; margin: 0 auto; }
.page-hero .eyebrow { background: rgba(255,255,255,0.08); border-color: var(--gold); color: var(--gold); }

/* ---------------- Footer ---------------- */
.footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(47,122,79,0.07), transparent 28%),
    linear-gradient(180deg, #f8fcfa 0%, #eef7f2 100%);
  color: #1d2f27;
  padding: 64px 0 26px;
  border-top: 1px solid rgba(22,53,41,0.08);
}
.footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
}
.footer h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer p { color: #4c5f56; font-size: 0.88rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 0.88rem; color: #263b32; transition: color 0.2s, transform 0.2s; }
.footer ul a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand .name { font-family: "Poppins", sans-serif; font-weight: 800; color: var(--gold); font-size: 1.1rem; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(22,53,41,0.12);
  color: #185b3c;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-row a:hover { background: var(--gold); color: var(--forest); transform: translateY(-2px); }
.footer-store { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: #64766e;
}
.footer-bottom a { color: #17643f; }

@media (max-width: 980px) {
  .footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer .container { grid-template-columns: 1fr; }
}

/* ---------------- Misc ---------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Directional reveal variants */
.reveal-left { transform: translateX(-32px); }
.reveal-left.in { transform: translateX(0); }
.reveal-right { transform: translateX(32px); }
.reveal-right.in { transform: translateX(0); }
.reveal-scale { transform: scale(0.9); }
.reveal-scale.in { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1; transform: none; transition: none;
  }
}

/* Card / step / phone hover motion */
.card { will-change: transform; }
.step-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.step:hover .step-icon {
  transform: scale(1.12) rotate(-4deg);
  background: var(--leaf);
}

.phone-frame {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.phone-frame:hover {
  transform: translateY(-10px) rotate(-1.5deg) scale(1.02);
  box-shadow: 0 26px 50px rgba(22,53,41,0.28);
}
.phones > div:nth-child(2) .phone-frame:hover,
.phones .phone-frame:nth-child(2):hover {
  transform: translateY(-10px) rotate(1.5deg) scale(1.02);
}

/* Button micro-interaction */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.btn:hover::after { opacity: 1; transform: scale(1.4); }
.btn-gold {
  animation: goldPulse 3.2s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(232, 185, 35, 0.35); }
  50% { box-shadow: 0 8px 26px rgba(232, 185, 35, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-gold { animation: none; }
}

/* Navbar scroll state - stable height to prevent header flicker/layout shift */
.navbar {
  transition: box-shadow 0.25s ease;
  min-height: 76px;
}
.navbar.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.navbar.scrolled .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: #0B2F55;
  z-index: 200;
  transition: width 0.1s linear;
}

/* Section head underline draw-in */
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  height: 3px;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.6s ease 0.2s;
}
.section-head.in h2::after,
.section-head h2.in::after { width: 64px; }

/* =========================================================
   EXTRA MODERN ANIMATIONS
   ========================================================= */

/* Soft floating motion for the hero phone/image */
.hero-art img {
  animation: heroImageFloat 5s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
}

/* Gentle glow behind hero artwork */
.hero-art::before {
  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { transform: scale(0.94); opacity: 0.55; }
  to { transform: scale(1.08); opacity: 0.9; }
}

/* Floating background blobs */
.hero-blob-1 { animation: blobFloatOne 8s ease-in-out infinite; }
.hero-blob-2 { animation: blobFloatTwo 10s ease-in-out infinite; }

@keyframes blobFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -20px, 0) scale(1.05); }
}

@keyframes blobFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 16px, 0) scale(1.06); }
}

/* Hero badges gently rise one after another */
.hero-badge {
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: 0.35s; }
.hero-badge:nth-child(3) { animation-delay: 0.7s; }
.hero-badge:nth-child(4) { animation-delay: 1.05s; }

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

/* Feature dots/icons pop slightly on hover */
.hero-badge .dot {
  display: inline-flex;
  transition: transform 0.3s ease;
}
.hero-badge:hover .dot {
  transform: scale(1.18) rotate(8deg);
}

/* Cards lift smoothly when hovered */
.benefit-card,
.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.benefit-card:hover,
.card:hover {
  transform: translateY(-8px);
}

/* Animated shine passing over buttons */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255,255,255,0.28),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn:hover::before {
  left: 135%;
}

/* Phone screens get a subtle floating shadow */
.phone-frame {
  animation: phoneShadow 4s ease-in-out infinite;
}
.phone-frame:nth-child(2) { animation-delay: 0.8s; }

@keyframes phoneShadow {
  0%, 100% { filter: drop-shadow(0 10px 16px rgba(22,53,41,0.10)); }
  50% { filter: drop-shadow(0 18px 22px rgba(22,53,41,0.18)); }
}

/* Process icons have a soft pulse */
.step-icon {
  animation: iconPulse 3.5s ease-in-out infinite;
}
.step:nth-child(2) .step-icon { animation-delay: 0.45s; }
.step:nth-child(3) .step-icon { animation-delay: 0.9s; }
.step:nth-child(4) .step-icon { animation-delay: 1.35s; }

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 7px 20px rgba(36,95,44,0.08); }
  50% { box-shadow: 0 10px 28px rgba(36,95,44,0.18); }
}

/* Navigation links slide a tiny amount on hover */
.nav-links a {
  transition: color 0.25s ease, transform 0.25s ease;
}
.nav-links a:hover {
  transform: translateY(-2px);
}

/* Keep the main Namma Chit logo completely static. */
.hero-art img {
  animation: none !important;
  transform: none !important;
}
.hero-art::before {
  animation: none !important;
  transform: none !important;
}
.logo-orbit,
.coin-particle {
  display: none !important;
}

/* Keep the header logo stable to prevent visual flicker. */
.brand img {
  animation: none;
  transform: none;
}

/* Footer social/app links */
.footer-store {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-store:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Back-to-top button bounce when visible */
.top-btn.show {
  animation: topButtonIn 0.45s ease both;
}

@keyframes topButtonIn {
  0% { opacity: 0; transform: translateY(15px) scale(0.85); }
  70% { transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Accessibility: respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-art img,
  .hero-art::before,
  .hero-blob-1,
  .hero-blob-2,
  .hero-badge,
  .phone-frame,
  .step-icon,
  .brand img,
  .btn-gold,
  .top-btn.show {
    animation: none !important;
  }

  .nav-links a,
  .btn,
  .benefit-card,
  .card,
  .phone-frame,
  .footer-store {
    transition: none !important;
  }
}

/* ---------------- Phone showcase - prevent screen overlap ---------------- */
.phones {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 40px;
}

.phones > div {
  flex: 0 1 250px;
  min-width: 0;
  text-align: center;
}

.phones .phone-frame {
  width: 100% !important;
  max-width: 250px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  animation: none;
  transition: transform 0.35s ease;
}

.phones .phone-frame::before {
  display: none;
}

.phones .phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
  border-radius: 0;
}

.phones > div:nth-child(1) .phone-frame,
.phones > div:nth-child(3) .phone-frame {
  transform: translateY(18px);
}

.phones > div:nth-child(2) .phone-frame {
  transform: translateY(0);
}

.phones .phone-frame:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: none;
}

.phones > div:nth-child(1) .phone-frame:hover,
.phones > div:nth-child(3) .phone-frame:hover {
  transform: translateY(12px) scale(1.015);
}

@media (max-width: 900px) {
  .phones {
    gap: 18px;
  }

  .phones > div {
    flex-basis: 30%;
  }

  .phones .phone-frame img {
    max-height: 340px;
  }
}

@media (max-width: 680px) {
  .phones {
    flex-wrap: wrap;
    gap: 30px 18px;
  }

  .phones > div {
    flex: 0 1 calc(50% - 9px);
  }

  .phones > div:last-child {
    flex-basis: min(250px, 80%);
  }

  .phones > div:nth-child(1) .phone-frame,
  .phones > div:nth-child(2) .phone-frame,
  .phones > div:nth-child(3) .phone-frame {
    transform: none;
  }

  .phones .phone-frame:hover,
  .phones > div:nth-child(1) .phone-frame:hover,
  .phones > div:nth-child(3) .phone-frame:hover {
    transform: translateY(-5px) scale(1.015);
  }
}

@media (max-width: 430px) {
  .phones > div,
  .phones > div:last-child {
    flex-basis: 100%;
  }

  .phones .phone-frame {
    max-width: 235px;
  }
}

/* ===== Final phone showcase fix: all screens fully visible and close together ===== */
.phones {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin-top: 40px !important;
  overflow: visible !important;
}
.phones > div {
  flex: 0 1 220px !important;
  width: 220px !important;
  min-width: 0 !important;
  text-align: center !important;
  overflow: visible !important;
}
.phones .phone-frame {
  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative !important;
  transform: none !important;
  animation: none !important;
}
.phones .phone-frame img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  margin: 0 auto !important;
}
.phones .phone-caption { margin-top: 12px !important; }
.phones .phone-frame:hover { transform: translateY(-5px) scale(1.01) !important; }
@media (max-width: 980px) {
  .phones { gap: 8px !important; }
  .phones > div { flex-basis: 31% !important; width: 31% !important; }
  .phones .phone-frame { max-width: 210px !important; }
}
@media (max-width: 680px) {
  .phones { flex-wrap: wrap !important; gap: 24px 12px !important; }
  .phones > div { flex: 0 1 calc(50% - 6px) !important; width: calc(50% - 6px) !important; }
  .phones > div:nth-child(3) { margin: 0 auto !important; }
}
@media (max-width: 430px) {
  .phones > div { flex-basis: 100% !important; width: 100% !important; }
  .phones .phone-frame { max-width: 235px !important; }
}

/* ===== Full phone screens: prevent clipping/cropping ===== */
.phones {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 22px !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  overflow: visible !important;
}
.phones > div {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 270px !important;
  text-align: center !important;
  overflow: visible !important;
}
.phones .phone-frame {
  width: 100% !important;
  max-width: 270px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
  animation: none !important;
}
.phones .phone-frame img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.phones .phone-frame:hover {
  transform: translateY(-5px) scale(1.01) !important;
}
@media (max-width: 900px) {
  .phones { gap: 12px !important; }
  .phones > div { max-width: 220px !important; }
}
@media (max-width: 680px) {
  .phones { flex-wrap: wrap !important; }
  .phones > div { flex: 0 1 calc(50% - 8px) !important; max-width: 230px !important; }
  .phones > div:last-child { margin: 0 auto !important; }
}
@media (max-width: 430px) {
  .phones > div { flex-basis: 100% !important; max-width: 245px !important; }
}


/* ---------------- About customer-focused content ---------------- */
.about-services {
  position: relative;
  overflow: hidden;
}
.about-services::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(47,122,79,0.06);
  top: -120px;
  right: -90px;
  animation: aboutOrb 9s ease-in-out infinite;
  pointer-events: none;
}
.about-services::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(232,185,35,0.07);
  bottom: -110px;
  left: -80px;
  animation: aboutOrb 11s ease-in-out infinite reverse;
  pointer-events: none;
}
.about-services .container { position: relative; z-index: 1; }
.about-benefits { align-items: stretch; }
.about-benefit {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(22,53,41,0.08);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(22,53,41,0.07);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-benefit::after {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(47,122,79,0.055);
  right: -30px;
  top: -30px;
  transition: transform .45s ease;
}
.about-benefit:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 38px rgba(22,53,41,0.13);
  border-color: rgba(47,122,79,0.2);
}
.about-benefit:hover::after { transform: scale(1.45); }
.about-benefit-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef8ed, #fff8df);
  color: var(--leaf);
  font-size: 1.25rem;
  margin-bottom: 18px;
  transition: transform .4s ease, border-radius .4s ease;
}
.about-benefit:hover .about-benefit-icon {
  transform: rotate(-5deg) scale(1.1);
  border-radius: 50%;
}
.about-benefit h3 {
  color: var(--forest);
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.about-benefit p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
}
@keyframes aboutOrb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-16px,0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .about-services::before, .about-services::after { animation: none; }
  .about-benefit, .about-benefit-icon { transition: none; }
}
@media (max-width: 620px) {
  .about-benefit { padding: 23px 20px; }
}

/* ===== MOBILE PREVIEW BANNER ===== */
.mobile-preview-section {
  overflow: hidden;
}
.mobile-preview-banner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 42px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 50, 40, 0.14);
  border: 1px solid rgba(22, 53, 41, 0.08);
}
.mobile-preview-banner img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .mobile-preview-banner {
    margin-bottom: 28px;
    border-radius: 18px;
  }
}

/* Duplicate screenshot cleanup: the combined 3-screen preview was removed.
   Keep the individual Home, Auctions and Chit Details screenshots as the
   single unique showcase set. */
.mobile-preview-banner { display: none !important; }


/* ===== Mobile application screenshot + trust strip layout ===== */
.mobile-showcase-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 0 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,50,40,0.06);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(20,50,40,0.08);
}
.mobile-showcase-card .phones {
  margin-top: 0 !important;
  padding: 0 20px;
}
.mobile-showcase-card .phone-caption {
  margin: 10px 0 0 !important;
  font-size: 0.92rem;
  color: #102a50;
}
.mobile-showcase-card .phone-caption::after {
  display: none;
}
.phone-description {
  max-width: 220px;
  margin: 5px auto 0;
  text-align: center;
  color: #334155;
  font-size: 0.68rem;
  line-height: 1.35;
}
.mobile-showcase-card .mobile-trust-strip {
  margin: 14px 18px 0;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(20,50,40,0.09);
}
@media (max-width: 680px) {
  .mobile-showcase-card { padding: 12px 8px 16px; border-radius: 18px; }
  .mobile-showcase-card .phones { padding: 0 8px; }
  .mobile-showcase-card .mobile-trust-strip { margin-left: 8px; margin-right: 8px; }
}

/* ===== About page visibility fix =====
   Keep the trust panel readable on its light card background and
   prevent section content from being visually clipped. */
.trust-panel {
  overflow: visible !important;
}
.trust-panel h3 {
  color: var(--forest) !important;
}
.trust-panel p {
  color: var(--ink-soft) !important;
}
.section {
  overflow: visible;
}

@media (max-width: 640px) {
  .trust-panel {
    padding: 24px;
    align-items: flex-start;
  }
  .trust-panel .badge-check {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }
}
