/* ================================================
   NCMCcard.com — Stylesheet
   Mobile-first, production-ready
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Mukta:wght@300;400;500;600;700&family=Tiro+Devanagari+Marathi:ital@0;1&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0D47A1;
  --primary-light: #1565C0;
  --primary-dark: #0A3578;
  --accent: #FF6D00;
  --accent-hover: #E65100;
  --success: #2E7D32;
  --bg-light: #F8FAFC;
  --bg-dark: #0A1628;
  --text-primary: #1A1A2E;
  --text-secondary: #546E7A;
  --gold: #F9A825;
  --tricolor-saffron: #FF9933;
  --tricolor-green: #138808;
  --white: #FFFFFF;
  --wa-green: #25D366;

  --font-heading: 'Tiro Devanagari Marathi', 'Noto Serif Devanagari', serif;
  --font-body: 'Mukta', 'Noto Sans Devanagari', sans-serif;
  --font-english: 'DM Sans', sans-serif;

  --max-width: 1200px;
  --header-h: 64px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 17px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* Focus states */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Watermark Overlay ---- */
.watermark {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.watermark__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  white-space: nowrap;
  font-family: var(--font-english);
  font-size: 6vw;
  font-weight: 700;
  color: rgba(13, 71, 161, 0.03);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  user-select: none;
  width: 250%;
  text-align: center;
  line-height: 3.5;
  /* Repeat the text vertically */
  background-image: repeating-linear-gradient(
    transparent, transparent
  );
}

/* Pseudo-elements for repeating watermark rows */
.watermark::before,
.watermark::after {
  content: 'अधिकृत वितरक  •  AUTHORIZED  •  NCMC CARD  •  अधिकृत वितरक  •  AUTHORIZED  •  NCMC CARD  •  अधिकृत वितरक  •  AUTHORIZED  •  NCMC CARD';
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: rgba(13, 71, 161, 0.025);
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
}

.watermark::before {
  top: 30%;
  left: -10%;
  transform: rotate(-30deg);
}

.watermark::after {
  top: 65%;
  left: -10%;
  transform: rotate(-30deg);
}

/* ---- Trust Banner (above header) ---- */
.trust-banner {
  background: linear-gradient(90deg, var(--success), #1B5E20);
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.trust-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-banner__shield { font-size: 1rem; }

.trust-banner__text {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,71,161,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(13,71,161,0); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================
   HEADER
   ================================================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  transition: box-shadow var(--transition), background var(--transition);
}

.header.is-scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 50px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.header__nav {
  display: none;
  gap: 32px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
  white-space: nowrap;
}

.header__link:hover { color: var(--primary); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Selector */
.lang-select {
  appearance: none;
  background: var(--bg-light);
  border: 1.5px solid #D0D5DD;
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23546E7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color var(--transition);
}

.lang-select:hover { border-color: var(--primary); }
.lang-select:focus { border-color: var(--primary); outline: none; }

/* English font adjustment */
.lang-en { font-family: var(--font-english), var(--font-body); }
.lang-en .hero__title { font-family: var(--font-english); font-weight: 700; }
.lang-en .section__title { font-family: var(--font-english); font-weight: 700; }

.header__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wa-green);
  transition: transform var(--transition);
}
.header__wa-btn:hover { transform: scale(1.1); }

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px 24px;
  gap: 0;
  z-index: 999;
  animation: fadeInUp 0.3s ease;
}

.header__nav.is-open .header__link {
  font-size: 1.15rem;
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
}


/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 36px);
  min-height: calc(100dvh - var(--header-h) - 36px);
  display: flex;
  align-items: center;
  padding: 32px 0 48px;
  background: linear-gradient(135deg, #0A1628 0%, #0D47A1 50%, #1565C0 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,109,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(249,168,37,0.06) 0%, transparent 50%);
  /* India map silhouette hint via subtle shape */
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__content { max-width: 640px; }

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46,125,50,0.15);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: 100px;
  color: #A5D6A7;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.hero__title-accent { color: var(--accent); }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero__desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

/* Card mockup */
.hero__card { display: flex; justify-content: center; }

.hero__card-mockup {
  position: relative;
  width: 220px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  overflow: hidden;
}

.hero__card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg);
  animation: shine 4s ease-in-out infinite;
}

.hero__card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}


/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,109,0,0.3);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(255,109,0,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(249,168,37,0.3);
}
.btn--gold:hover {
  background: #F9B825;
  box-shadow: 0 6px 24px rgba(249,168,37,0.4);
}

.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }


/* ================================================
   STATS BAR
   ================================================ */
.stats {
  background: var(--primary);
  padding: 36px 0;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__item { color: var(--white); }

.stats__number {
  display: block;
  font-family: var(--font-english);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.stats__label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
}


/* ================================================
   SECTION BASE
   ================================================ */
.section {
  padding: 48px 0;
}

.section--light { background: var(--bg-light); }
.section--white { background: var(--white); }
.section--dark { background: var(--bg-dark); }

.section__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.section__title--light { color: var(--white); }


/* ================================================
   WHAT IS NCMC
   ================================================ */
.what-is__content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-secondary);
}

.what-is__content p { margin-bottom: 16px; }
.what-is__content strong { color: var(--text-primary); }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--primary);
  opacity: 0.2;
}

.timeline__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-light);
}

.timeline__year {
  font-family: var(--font-english);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  min-width: 60px;
}

.timeline__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}


/* ================================================
   USE CASES
   ================================================ */
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid #E8EDF2;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.usecase-card__icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.usecase-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.usecase-card__desc { font-size: 0.85rem; color: var(--text-secondary); }

.usecases__tagline {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}


/* ================================================
   BENEFITS
   ================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid #E8EDF2;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-card__icon { font-size: 1.8rem; flex-shrink: 0; }
.benefit-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.benefit-card__desc { font-size: 0.9rem; color: var(--text-secondary); }


/* ================================================
   HOW TO GET (Steps)
   ================================================ */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.steps__item {
  text-align: center;
  max-width: 280px;
  padding: 24px;
}

.steps__number {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.steps__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.steps__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.steps__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--primary), rgba(13,71,161,0.2));
}

.steps__cta { text-align: center; }

.steps__urgency {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}


/* ================================================
   DISTRIBUTORSHIP
   ================================================ */
.distrib__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.distrib__subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.distrib__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.distrib__benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.distrib__check { flex-shrink: 0; }

.distrib__pricing {
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  margin-bottom: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.distrib__districts {
  margin-bottom: 36px;
}

.distrib__districts-title {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.distrib__districts-list {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.9;
}

.distrib__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.section--dark .section__title,
.section--dark .distrib__badge,
.section--dark .distrib__subtitle {
  text-align: center;
}


/* ================================================
   ABOUT
   ================================================ */
.about__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.about__photo { display: flex; justify-content: center; }

.about__photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background: #ECEFF1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #9E9E9E;
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}

.about__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about__title-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.about__bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.about__details p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.about__details a {
  color: var(--primary);
  font-weight: 600;
}

.about__cert { margin-top: 16px; }

.about__cert-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px dashed #E0E0E0;
  border-radius: var(--radius-sm);
  background: #FFF9C4;
  color: #9E9E9E;
  font-size: 0.8rem;
}


/* ================================================
   FAQ
   ================================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #E0E0E0;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq__answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}


/* ================================================
   CONTACT
   ================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact__btn:hover { transform: scale(1.02); }

.contact__btn--call {
  background: var(--primary);
  color: var(--white);
}

.contact__btn--wa {
  background: var(--wa-green);
  color: var(--white);
}

.contact__info {
  padding: 16px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact__info p { margin-bottom: 8px; }

/* Form */
.contact__form {
  background: var(--bg-light);
  padding: 28px 24px;
  border-radius: var(--radius);
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition);
}

.form__input:focus {
  border-color: var(--primary);
  outline: none;
}

.form__input.is-error { border-color: #D32F2F; }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23546E7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__error {
  display: block;
  font-size: 0.8rem;
  color: #D32F2F;
  margin-top: 4px;
  min-height: 1.2em;
}

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

.form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}

.form__radio input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}


/* ================================================
   AUTHORITY SEAL
   ================================================ */
.authority-seal {
  padding: 48px 0;
  background: linear-gradient(135deg, #F1F8E9, #E8F5E9, #F1F8E9);
  border-top: 3px solid var(--success);
  border-bottom: 3px solid var(--success);
}

.authority-seal__inner {
  display: flex;
  justify-content: center;
}

.authority-seal__badge {
  text-align: center;
  max-width: 600px;
}

.authority-seal__icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.authority-seal__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--success);
  margin-bottom: 12px;
}

.authority-seal__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.authority-seal__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.authority-seal__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(46,125,50,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-dark);
  padding: 36px 0 100px; /* extra bottom for floating buttons */
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.footer__inner { text-align: center; }

.footer__logo-img {
  height: 64px;
  width: auto;
  border-radius: 6px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.footer__copy { margin-bottom: 16px; }

.footer__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__badge {
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: var(--font-english);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.footer__disclaimer {
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 600px;
  margin: 0 auto;
}


/* ================================================
   FLOATING BUTTONS
   ================================================ */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  animation: pulse 3s ease-in-out infinite;
  transition: transform var(--transition);
}
.floating-wa:hover { transform: scale(1.1); }

.floating-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(13,71,161,0.4);
  z-index: 900;
  animation: pulseCall 3s ease-in-out infinite;
  animation-delay: 1.5s;
  transition: transform var(--transition);
}
.floating-call:hover { transform: scale(1.1); }


/* ================================================
   RESPONSIVE — TABLET (768px+)
   ================================================ */
@media (min-width: 768px) {
  html { font-size: 18px; }

  .container { padding: 0 32px; }

  .section { padding: 80px 0; }

  .section__title { font-size: 2rem; margin-bottom: 48px; }

  /* Header */
  .header__nav {
    display: flex;
  }
  .header__hamburger { display: none; }

  /* Hero */
  .hero { padding: 48px 0 64px; }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .hero__content { flex: 0.6; }
  .hero__card { flex: 0.4; }

  .hero__title { font-size: 3rem; }
  .hero__subtitle { font-size: 1.25rem; }

  .hero__ctas {
    flex-direction: row;
    gap: 16px;
  }

  /* Stats */
  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .stats__number { font-size: 2.5rem; }

  /* Use cases */
  .usecases__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Steps */
  .steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .steps__connector {
    width: 48px;
    height: 2px;
    margin-top: 52px;
    background: linear-gradient(to right, var(--primary), rgba(13,71,161,0.2));
  }

  /* Distributorship */
  .distrib__benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .distrib__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  /* About */
  .about__card {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
  }

  .about__photo { flex-shrink: 0; }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  /* Floating: hide call button on desktop */
  .floating-call { display: none; }
}


/* ================================================
   RESPONSIVE — DESKTOP (1024px+)
   ================================================ */
@media (min-width: 1024px) {
  .hero__title { font-size: 3.5rem; }

  .hero__card-mockup {
    width: 260px;
  }

  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__form { padding: 36px 32px; }
}


/* ================================================
   SMALL MOBILE (<480px)
   ================================================ */
@media (max-width: 479px) {
  .hero__title { font-size: 2.2rem; }
  .hero__card-mockup { width: 180px; }
  .stats__number { font-size: 1.6rem; }

  .floating-wa { width: 64px; height: 64px; }
  .floating-call { width: 60px; height: 60px; }
}
