/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #0d3b2e;
  --green-mid: #1a5c45;
  --green-light: #2d7a5f;
  --gold: #c9a84c;
  --gold-light: #e8c870;
  --gold-pale: #f5e8c0;
  --cream: #faf7f0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-muted: #6b6b6b;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4e;
  --shadow-sm: 0 2px 12px rgba(13,59,46,0.08);
  --shadow-md: 0 8px 32px rgba(13,59,46,0.12);
  --shadow-lg: 0 20px 60px rgba(13,59,46,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

/* Responsive images/media baseline — never overflow their container */
img, video { max-width: 100%; height: auto; }

body {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* English font styling - slightly better readability for Latin text */
body.lang-en {
  font-family: 'Inter', 'Hind Siliguri', sans-serif;
}

body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4 {
  font-family: 'Inter', 'Hind Siliguri', sans-serif;
  letter-spacing: -0.02em;
}

/* Respect user preference: no motion = static background */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.gold-text { color: var(--gold); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.btn-outline {
  border: 2px solid var(--green-mid);
  color: var(--green-mid);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-mid);
  color: white;
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--green-deep);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--green-deep);
}

.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13,59,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 3px;
  position: relative;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.navbar.scrolled .lang-toggle {
  background: rgba(255,255,255,0.08);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.lang-btn:hover {
  color: white;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 2px 8px rgba(201,168,76,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  max-width: 100%;
}

.navbar.scrolled .logo-img {
  height: 32px;
}

/* Footer logo - slightly larger */
.footer .logo-img {
  height: 42px;
}

.logo-leaf { font-size: 24px; }

.logo-text { color: white; }
.logo-text strong { color: var(--gold); }

/* Footer-specific: logo text should be light color for dark bg */
.footer .logo-text { color: white; }

.nav-cta {
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, #1e6b4d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Slight zoom breathes life into it */
  animation: heroBgZoom 25s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.1); }
}

/* Dark green overlay — ensures text remains readable over video */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(13,59,46,0.85) 0%, rgba(26,92,69,0.8) 50%, rgba(30,107,77,0.75) 100%),
    radial-gradient(ellipse at bottom left, rgba(13,59,46,0.4) 0%, transparent 60%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
}

.badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 32px;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.avatar-fallback {
  display: none;
  color: var(--green-deep);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
}

.founder-avatar.no-img .avatar-fallback {
  display: block;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.urgency-line {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  z-index: 3;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--white);
  text-align: center;
}

.video-section .section-sub {
  margin: 0 auto 40px;
}

.video-container {
  max-width: 720px;
  margin: 0 auto;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Once video is playing, thumbnail becomes plain (not clickable bg) */
.video-thumb.video-playing {
  cursor: default;
}

/* YouTube iframe wrapper - fills the video-thumb */
.youtube-player-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.youtube-player-wrap iframe,
.youtube-player-wrap video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ===== VIDEO END CTA OVERLAY ===== */
.video-end-cta {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,59,46,0.96), rgba(26,92,69,0.96));
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 20px;
}

.video-end-cta.show {
  opacity: 1;
  pointer-events: auto;
  animation: ctaReveal 0.6s ease;
}

@keyframes ctaReveal {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.end-cta-content {
  text-align: center;
  max-width: 520px;
  animation: slideUpCta 0.7s ease 0.2s backwards;
}

@keyframes slideUpCta {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.end-cta-icon {
  font-size: 56px;
  margin-bottom: 14px;
  display: inline-block;
  animation: bounceIcon 0.8s ease 0.4s backwards;
}

@keyframes bounceIcon {
  0% { transform: scale(0) rotate(-180deg); }
  60% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0); }
}

.end-cta-content h3 {
  font-size: clamp(22px, 4vw, 32px);
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
}

.end-cta-content p {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.5;
}

.end-cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.end-cta-btns .btn {
  font-size: 14px;
  padding: 12px 22px;
}

.end-cta-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.end-cta-close:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(201,168,76,0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
  animation: pulse-gold 2s infinite;
}

.play-btn:hover { transform: scale(1.1); background: var(--gold-light); }

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

.video-placeholder-text {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.video-placeholder-text span { font-size: 40px; display: block; margin-bottom: 8px; }

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.problem-text {
  font-size: 19px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.reason-block {
  background: #fff3f3;
  border-left: 4px solid #e53935;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 0;
}

.reason-lead {
  font-size: 20px;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 8px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid #e53935;
  transition: transform 0.2s;
}

.problem-card:hover { transform: translateX(4px); }

.problem-icon { font-size: 28px; min-width: 36px; }

.problem-card h4 {
  font-size: 17px;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 28px 0;
}

.cta-strip-dark {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-strip p {
  font-size: 19px;
  font-weight: 600;
  color: var(--green-deep);
}

.cta-strip-dark p { color: white; }

/* ===== SOLUTION SECTION ===== */
.solution-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-card-ai {
  background: linear-gradient(135deg, #0d3b2e 0%, #1a5c45 100%);
  border: 1px solid var(--gold);
  color: white;
  overflow: hidden;
}

.service-card-ai::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.service-card-ai h4 {
  color: white !important;
}

.service-card-ai p {
  color: rgba(255,255,255,0.8) !important;
}

.service-card-ai:hover {
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}

.ai-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 2;
  animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

.service-card-wide {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border-color: var(--gold);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.service-card-wide .service-icon { margin-bottom: 0; font-size: 40px; }

.service-card h4 {
  font-size: 16px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.service-features {
  list-style: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(201,168,76,0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-mid);
  padding: 5px 10px;
  background: rgba(201,168,76,0.12);
  border-radius: 6px;
  text-align: left;
  transition: all 0.2s;
}

.service-card:hover .service-features li {
  background: rgba(201,168,76,0.2);
  transform: translateX(2px);
}

/* AI card bullet points - styled for dark background */
.service-card-ai .service-features {
  border-top: 1px dashed rgba(201,168,76,0.5);
  position: relative;
  z-index: 1;
}

.service-card-ai .service-features li {
  color: var(--gold-light);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
}

.service-card-ai:hover .service-features li {
  background: rgba(201,168,76,0.25);
  border-color: rgba(201,168,76,0.5);
}

.solution-closing {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
}

.solution-closing p {
  font-size: 20px;
  color: white;
}

.solution-closing strong { color: var(--gold); }

/* ===== CRM SECTION ===== */
.crm-section {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, #1e6b4d 100%);
}

.crm-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "visual"
    "cards"
    "actions"
    "closing";
  gap: 32px;
}

.crm-intro   { grid-area: intro; }
.crm-visual  { grid-area: visual; }
.crm-features-block { grid-area: cards; }
.crm-actions { grid-area: actions; }
.crm-closing { grid-area: closing; }

.crm-label {
  background: rgba(232,200,112,0.14);
  color: var(--gold-light);
}

.crm-section .crm-title { color: white; }
.crm-section .crm-sub { color: rgba(255,255,255,0.85); }

.crm-paragraph {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 8px;
}

/* --- dashboard product shot: staged showcase, no frame --- */
.crm-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.crm-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 34px 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* soft spotlight / glassy halo behind the devices */
.crm-halo {
  position: absolute;
  width: 92%;
  height: 92%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 45%, rgba(255,255,255,0) 70%);
  border: 1px solid rgba(232,200,112,0.18);
  backdrop-filter: blur(2px);
  z-index: 0;
}

/* abstract blurred color blobs for depth */
.crm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.blob-gold {
  width: 55%;
  height: 55%;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(201,168,76,0.4) 0%, rgba(201,168,76,0) 70%);
}
.blob-green {
  width: 60%;
  height: 60%;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(45,122,95,0.55) 0%, rgba(45,122,95,0) 70%);
}

/* grounding shadow under the laptop */
.crm-shadow-ellipse {
  position: absolute;
  bottom: 6%;
  width: 58%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 75%);
  filter: blur(6px);
  z-index: 1;
}

.crm-mockup-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4)) drop-shadow(0 0 50px rgba(201,168,76,0.15));
  animation: crmFloat 6s ease-in-out infinite;
}

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

/* floating UI highlight badges - sit in the stage's padding gutter, never over the screens */
.crm-float-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(10,43,33,0.75);
  border: 1px solid rgba(232,200,112,0.35);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  white-space: nowrap;
  animation: crmBadgeFloat 5s ease-in-out infinite;
}

.crm-float-icon { font-size: 13px; }

/* short gold pointer stub aimed back toward the device */
.crm-float-badge::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), rgba(232,200,112,0));
}

.badge-1 { top: 0;    left: 0;   animation-delay: 0s; }
.badge-1::after { bottom: -8px; right: 10px; transform: rotate(55deg); }

.badge-2 { top: 4%;   right: 0;  animation-delay: 0.8s; }
.badge-2::after { bottom: -8px; left: 10px; transform: rotate(-55deg); background: linear-gradient(270deg, var(--gold-light), rgba(232,200,112,0)); }

.badge-3 { bottom: 14%; left: 0; animation-delay: 1.6s; }
.badge-3::after { top: -8px; right: 10px; transform: rotate(-55deg); }

.badge-4 { bottom: 0;  right: 0; animation-delay: 2.4s; }
.badge-4::after { top: -8px; left: 10px; transform: rotate(55deg); background: linear-gradient(270deg, var(--gold-light), rgba(232,200,112,0)); }

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

@media (prefers-reduced-motion: reduce) {
  .crm-mockup-img, .crm-float-badge { animation: none; }
}

/* --- feature cards (compact tabs, full CRM module list) --- */
.crm-features-head {
  text-align: center;
  margin-bottom: 24px;
}

.crm-features-title {
  color: white;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 8px;
}

.crm-features-sub {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

.crm-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.crm-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
  transition: all 0.25s ease;
}

.crm-feature-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.crm-feature-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.crm-feature-card h4 {
  color: white;
  font-size: 13.5px;
  margin-bottom: 4px;
}

.crm-feature-card p {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.4;
}

/* --- actions & closing --- */
.crm-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.crm-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

.crm-closing {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,200,112,0.25);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
}

.crm-closing p {
  font-size: 19px;
  font-weight: 600;
  color: white;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  background: var(--cream);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.testi-video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.testi-video-thumb:hover .testi-play-btn { transform: scale(1.1); }

.testi-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  margin-bottom: 10px;
}

.testi-label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

.testi-info {
  padding: 20px;
}

.testi-info h4 {
  font-size: 17px;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.testi-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testi-badges span {
  background: rgba(201,168,76,0.15);
  color: var(--green-mid);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--white);
  text-align: center;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  max-width: 240px;
  flex: 1;
  min-width: 180px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.step-icon { font-size: 36px; margin-bottom: 12px; display: block; }

.step-card h4 {
  font-size: 19px;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.step-card p { font-size: 14px; color: var(--text-muted); }

.step-arrow {
  font-size: 28px;
  color: var(--gold);
  align-self: center;
  padding: 0 4px;
  opacity: 0.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--cream);
}

.faq-section .section-sub {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 560px;
}

.faq-section .section-label,
.faq-section .section-title {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,168,76,0.15);
}

.faq-q {
  width: 100%;
  padding: 20px 26px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Hind Siliguri', sans-serif;
  transition: background 0.2s;
}

body.lang-en .faq-q {
  font-family: 'Inter', 'Hind Siliguri', sans-serif;
}

.faq-q:hover {
  background: rgba(201,168,76,0.05);
}

.faq-q-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.5;
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--green-deep);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  color: white;
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 26px 22px;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px dashed rgba(201,168,76,0.3);
  padding-top: 16px;
}

.faq-bottom-cta {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border: 1px dashed rgba(201,168,76,0.4);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 0 auto;
}

.faq-bottom-cta p {
  font-size: 17px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.faq-bottom-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.section-link-cta {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}
.section-link-cta a { text-decoration: none; }
.section-link-cta a:hover { text-decoration: underline; }

/* ===== STRONG CTA ===== */
.strong-cta-section {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 100%);
  text-align: center;
}

.strong-cta-headline {
  font-size: clamp(28px, 5vw, 48px);
  color: white;
  margin-bottom: 16px;
}

.strong-cta-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.strong-cta-sub strong { color: var(--gold-light); }

.strong-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.strong-cta-btns .btn-outline {
  border-color: white;
  color: white;
}
.strong-cta-btns .btn-outline:hover {
  background: white;
  color: var(--green-deep);
}

/* Hero sits on a dark green background too — same light-outline treatment */
.hero-btns .btn-outline {
  border-color: white;
  color: white;
}
.hero-btns .btn-outline:hover {
  background: white;
  color: var(--green-deep);
}

/* ===== BOOKING ===== */
.booking-section {
  background: var(--cream);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.booking-benefits h3 {
  font-size: 24px;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.booking-benefits ul {
  list-style: none;
  margin-bottom: 28px;
}

.booking-benefits li {
  font-size: 17px;
  color: var(--green-mid);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,122,95,0.12);
}

.trust-badge {
  background: rgba(45,122,95,0.1);
  border: 1px solid rgba(45,122,95,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.trust-badge p {
  font-size: 15px;
  color: var(--green-mid);
}

.direct-contact { display: flex; flex-direction: column; gap: 12px; }
.direct-contact p { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.2);
}

.form-card h3 {
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius);
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Honeypot field - hidden from real users, catches spam bots */
.hidden-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.8);
}

.footer-top { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 15px;
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-founder {
  margin-top: 8px !important;
  color: var(--gold-light) !important;
}

.footer h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-contact ul { list-style: none; }
.footer-contact li { margin-bottom: 10px; }
.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== STICKY WHATSAPP ===== */
.sticky-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.sticky-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.video-modal.active { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-video-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

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

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-deep);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 300;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== ANIMATIONS ===== */
/* Hero fade-in: content is VISIBLE by default, animates on load.
   This prevents blank hero if JS fails to run. */
.fade-in {
  animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* Scroll-triggered reveal (below hero) still needs JS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
/* ===== SMALL PHONES (iPhone SE, small Android ~360-400px) ===== */
