:root {
  --primary-blue: #0b4f9c;
  --secondary-blue: #1d6fd8;
  --golden-yellow: #f4c542;
  --white: #ffffff;
  --light-bg: #f4f8fc;
  --dark-text: #1a2b49;
  --cta-red: #e63946;
  --whatsapp-green: #25d366;

  --text-soft: #4e6387;
  --border-soft: #d2e2fa;
  --surface: #f9fbff;

  --radius-lg: 1.25rem;
  --radius-md: 0.95rem;
  --radius-pill: 999px;

  --shadow-sm: 0 8px 18px rgba(11, 79, 156, 0.08);
  --shadow-md: 0 14px 30px rgba(11, 79, 156, 0.14);
  --shadow-lg: 0 18px 36px rgba(11, 79, 156, 0.2);

  --section-space: clamp(3.2rem, 7vw, 5.5rem);
  --motion-fast: 0.22s;
  --motion-base: 0.34s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 13% 8%, rgba(244, 197, 66, 0.18), transparent 38%),
    radial-gradient(circle at 85% 5%, rgba(29, 111, 216, 0.11), transparent 36%),
    var(--white);
  text-rendering: optimizeLegibility;
}

html[lang="te"] body,
html[lang="te"] button,
html[lang="te"] input,
html[lang="te"] select,
html[lang="te"] textarea {
  font-family: "Noto Sans Telugu", "Inter", sans-serif;
}

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

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

a,
button,
.btn,
.brand-mark,
.brand-name,
.nav-menu a,
.hero-image-card,
.about-image-wrapper,
.showcase-card,
.faq-item,
.child-plan-card,
.child-plan-page,
.service-detail,
.benefit-detail,
.choose-detail,
.contact-grid,
.about-stats-panel,
.stat-pill {
  transition: transform var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease), border-color var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease), color var(--motion-fast) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease);
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section-padding {
  padding: var(--section-space) 0;
}

section {
  position: relative;
  scroll-margin-top: 92px;
}

section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, 38%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(29, 111, 216, 0.28), transparent);
}

.text-center {
  text-align: center;
}

.eyebrow {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--secondary-blue);
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.section-title::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin: 0.8rem auto 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary-blue), var(--golden-yellow));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.78rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible,
.mobile-menu-toggle:focus-visible,
.back-to-top:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(244, 197, 66, 0.55);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--cta-red);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.28);
}

.btn-primary:hover {
  background: #c72734;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover {
  background: #11be53;
}

.btn-outline {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--primary-blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(7, 47, 97, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 20px rgba(7, 47, 97, 0.14);
}

.main-nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-logo:hover .brand-mark {
  transform: translateY(-1px) rotate(-5deg) scale(1.04);
}

.brand-logo:hover .brand-name {
  color: #0d61be;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--golden-yellow);
  background: linear-gradient(145deg, var(--primary-blue), #083e7d);
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-menu-toggle {
  border: 0;
  background: transparent;
  color: var(--primary-blue);
  font-size: 1.2rem;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  padding: 1rem 4%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.28s ease, opacity 0.24s ease, transform 0.24s ease;
}

.nav-menu.open {
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  font-weight: 600;
  color: var(--dark-text);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

.nav-menu a:hover {
  transform: translateY(-1px);
}

.nav-whatsapp-btn {
  display: none;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #eef5ff;
  border: 1px solid #cddff8;
  border-radius: var(--radius-pill);
  padding: 0.22rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--primary-blue);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.62rem;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--primary-blue);
  color: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11, 79, 156, 0.95), rgba(29, 111, 216, 0.88)),
    radial-gradient(circle at 80% 10%, rgba(244, 197, 66, 0.2), transparent 42%);
  color: var(--white);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(244, 197, 66, 0.18);
  filter: blur(8px);
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-image-card,
.about-image-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #ffffff, #eef4ff);
}

.hero-image-card {
  position: relative;
  min-height: 330px;
  display: flex;
}

.hero-image-card:hover,
.about-image-wrapper:hover,
.contact-grid:hover,
.about-stats-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 30, 71, 0.5) 100%);
}

.hero-image-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-sm);
}

.hero-image-badge i {
  color: var(--golden-yellow);
}

.hero-profile-image,
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.18;
  color: var(--white);
}

.hero-content {
  max-width: 620px;
}

.hero-content h2 {
  margin-top: 0.55rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 3.6vw, 1.6rem);
  color: var(--golden-yellow);
}

.hero-subtitle {
  margin-top: 0.35rem;
  font-weight: 700;
  color: #fff5d6;
}

.hero-intro {
  margin: 0.9rem 0 1.2rem;
  color: #e7efff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badges span {
  padding: 0.45rem 0.78rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-entrance {
  opacity: 0;
  transform: translateY(8px);
  animation: badgeIn 0.45s ease forwards;
}

.about-section,
.benefits-section,
.how-section {
  background: var(--light-bg);
}

.about-content h3,
.contact-details h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 3.7vw, 2.02rem);
  margin-bottom: 0.8rem;
}

.about-content p,
.contact-details p {
  color: var(--text-soft);
}

.about-image-wrapper {
  position: relative;
  min-height: 320px;
}

.about-image-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.advisor-meta {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed #9ec0f1;
  background: var(--surface);
}

.advisor-chip {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 0.8rem;
  padding: 0.55rem;
}

.advisor-chip img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d9e7fb;
}

.advisor-chip span {
  color: var(--dark-text);
  font-size: 0.86rem;
  line-height: 1.35;
}

.about-showcase-image {
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid #dce5f1;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(11, 79, 156, 0.18);
  background: #ffffff;
  min-height: 320px;
}

.about-showcase-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 0.8rem;
  background: #ffffff;
  transition: transform var(--motion-base) var(--motion-ease);
}

.about-showcase-image:hover img {
  transform: scale(1.03);
}

.about-stats-panel {
  margin-top: 1.15rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid #dfe7f3;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6fd 100%);
  box-shadow: 0 14px 30px rgba(12, 46, 90, 0.12);
  padding: 1.05rem;
}

.about-stats-panel::before {
  content: "";
  position: absolute;
  inset: -30% -22% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(2px);
}

.about-stats-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -70px -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(27, 97, 180, 0.12);
}

.about-stats-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1f4f8e;
  margin-bottom: 0.85rem;
}

.about-stats-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #1d6fd8, #f4c542);
}

.about-stats-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.62rem;
  grid-template-columns: 1fr;
}

.stat-pill {
  position: relative;
  border-radius: 1rem;
  border: 1px solid #e0e8f3;
  background: #ffffff;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: statLift 6s ease-in-out infinite;
}

.stat-pill:nth-child(2) {
  animation-delay: 0.25s;
}

.stat-pill:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-pill:nth-child(4) {
  animation-delay: 0.55s;
}

.stat-pill:nth-child(5) {
  animation-delay: 0.7s;
}

.stat-pill:nth-child(6) {
  animation-delay: 0.85s;
}

.stat-pill:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 24px rgba(10, 50, 104, 0.16);
}

.stat-value {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.52rem, 3.7vw, 2.1rem);
  line-height: 1.15;
  font-weight: 800;
  color: #f39b17;
  letter-spacing: 0.01em;
}

.stat-label {
  margin-top: 0.2rem;
  color: #425976;
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 600;
}

.about-stats-panel .stat-value,
.about-stats-panel .stat-label {
  margin-bottom: 0;
}

.card-grid,
.trust-card-grid,
.steps-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 1.05rem;
}

.trust-card,
.info-card,
.premium-card,
.benefit-card,
.feature-card,
.step-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card:hover,
.info-card:hover,
.premium-card:hover,
.benefit-card:hover,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #b4cff7;
}

.trust-card i,
.info-card i,
.premium-card i,
.benefit-card i,
.feature-card i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.info-card,
.premium-card,
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  min-height: 108px;
}

.benefit-card[data-benefit-index] {
  cursor: pointer;
}

.benefit-card[data-benefit-index] > div {
  width: 100%;
}

.benefit-emoji {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.feature-card[data-choose-index] {
  cursor: pointer;
}

.choose-emoji {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.service-card {
  cursor: pointer;
}

.service-card > div {
  width: 100%;
}

.service-emoji {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.38rem;
}

.info-card h4,
.premium-card h4,
.benefit-card h4,
.trust-card h4,
.feature-card h4,
.step-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
}

.info-card p,
.premium-card p,
.benefit-card p {
  margin-top: 0.3rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.showcase-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.showcase-subtitle {
  max-width: 760px;
  margin: -0.75rem auto 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.showcase-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 1.05rem;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid #d5e5fb;
  box-shadow: var(--shadow-sm);
  min-height: 240px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.38s ease;
}

.showcase-card-large {
  min-height: 280px;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 40, 84, 0.06), rgba(5, 40, 84, 0.7));
  transition: opacity var(--motion-base) var(--motion-ease);
}

.showcase-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  color: var(--white);
}

.showcase-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.showcase-content p {
  margin-top: 0.28rem;
  font-size: 0.86rem;
  color: #e2ebff;
}

.showcase-card:hover {
  box-shadow: var(--shadow-md);
}

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

.showcase-card:hover::after {
  opacity: 0.88;
}

.feature-card p,
.step-card p {
  margin-top: 0.5rem;
  color: var(--text-soft);
}

.plans-section {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.plan-subtitle {
  margin: -0.8rem auto 0;
  max-width: 720px;
  color: var(--text-soft);
}

.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.plans-grid .premium-card {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-color: rgba(244, 197, 66, 0.68);
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  box-shadow: 0 10px 20px rgba(8, 60, 127, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.plans-grid .premium-card[data-plan] {
  cursor: pointer;
}

.plans-grid .premium-card:hover {
  border-color: #f1c53d;
  box-shadow: 0 14px 24px rgba(8, 60, 127, 0.14);
}

.plans-grid .premium-card[data-plan]:hover,
.plans-grid .premium-card[data-plan]:focus-visible {
  transform: translateY(-6px);
  border-color: #efbe2e;
  box-shadow: 0 18px 34px rgba(8, 60, 127, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.plans-grid .premium-card[data-plan]:focus-visible {
  outline: 3px solid rgba(29, 111, 216, 0.28);
  outline-offset: 3px;
}

.plan-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.9rem;
  transition: transform 0.22s ease;
}

.plans-grid .premium-card h4 {
  font-size: 1.1rem;
  line-height: 1.35;
  max-width: 12ch;
  transition: color 0.22s ease;
}

.plans-grid .premium-card[data-plan]:hover .plan-emoji,
.plans-grid .premium-card[data-plan]:focus-visible .plan-emoji {
  transform: translateY(-2px) scale(1.08);
}

.plans-grid .premium-card[data-plan]:hover h4,
.plans-grid .premium-card[data-plan]:focus-visible h4 {
  color: var(--primary-blue);
}

.child-plans-detail {
  margin-top: 1.25rem;
  border: 1px solid #d7e5fb;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 1rem;
}

.endowment-plans-detail {
  margin-top: 1.25rem;
  border: 1px solid #d7e5fb;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 1rem;
}

.child-plans-head {
  margin-bottom: 0.95rem;
}

.child-back-btn {
  border: 1px solid #c9ddf8;
  background: #ffffff;
  color: var(--primary-blue);
  border-radius: var(--radius-pill);
  padding: 0.42rem 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.child-back-btn:hover {
  background: #edf5ff;
}

.child-plans-head h4 {
  margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  color: var(--dark-text);
}

.child-plans-head p {
  margin-top: 0.3rem;
  color: var(--text-soft);
}

.child-plans-grid {
  display: grid;
  gap: 0.9rem;
}

.child-plan-card {
  background: #ffffff;
  border: 1px solid rgba(244, 197, 66, 0.7);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.child-plan-emoji {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.child-plan-card h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
}

.child-plan-card p {
  margin-top: 0.25rem;
  color: var(--text-soft);
}

.child-plan-page {
  margin-top: 1rem;
  background: #ffffff;
  border: 1px solid #d5e4fb;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.service-detail {
  margin-top: 1rem;
  background: #ffffff;
  border: 1px solid #d5e4fb;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.benefit-detail {
  margin-top: 1rem;
  background: #ffffff;
  border: 1px solid #d5e4fb;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.choose-detail {
  margin-top: 1rem;
  background: #ffffff;
  border: 1px solid #d5e4fb;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.service-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.child-plan-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.child-plan-nav-btns {
  display: inline-flex;
  gap: 0.45rem;
}

.child-nav-btn {
  border: 1px solid #c9ddf8;
  background: #ffffff;
  color: var(--primary-blue);
  border-radius: 0.65rem;
  min-width: 36px;
  height: 36px;
  font-weight: 700;
  cursor: pointer;
}

.child-nav-btn:hover {
  background: #edf5ff;
}

.child-plan-page-title {
  margin-top: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.12rem, 3.4vw, 1.4rem);
  color: var(--dark-text);
}

.child-plan-page-summary {
  margin-top: 0.45rem;
  color: var(--text-soft);
}

.child-plan-page-content {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.child-detail-block {
  border: 1px solid #e2ebfb;
  border-radius: 0.8rem;
  padding: 0.75rem;
  background: #fdfefe;
}

.child-detail-block h6 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--primary-blue);
  margin-bottom: 0.35rem;
}

.child-detail-block ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.child-detail-block li + li {
  margin-top: 0.2rem;
}

.child-plan-page-note {
  margin-top: 0.9rem;
  color: var(--dark-text);
  font-weight: 500;
}

.child-plan-page-website {
  margin-top: 0.55rem;
  color: var(--text-soft);
}

.child-plan-page-website a {
  color: var(--primary-blue);
  font-weight: 600;
}

.child-plan-page-wa {
  margin-top: 0.8rem;
}

.choose-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.faq-section {
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
}

.faq-icon {
  color: #e4b100;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  border-top: 1px dashed #cde0fb;
  padding: 0.95rem 1rem;
}

.faq-answer p {
  color: var(--text-soft);
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: rgba(11, 79, 156, 0.1);
}

.contact-grid {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: linear-gradient(140deg, #f7fbff 0%, #edf4ff 100%);
  padding: 1rem;
  align-items: start;
}

.contact-details ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-details li {
  color: var(--dark-text);
  font-weight: 500;
}

.contact-details i {
  color: var(--primary-blue);
  margin-right: 0.45rem;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 1rem;
}

.google-form-embed {
  padding: 0.45rem;
  overflow: hidden;
}

.google-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  height: 780px;
  border: 0;
  border-radius: 0.72rem;
  background: #ffffff;
}

.form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.82rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 0.72rem;
  border: 1px solid #b7cbee;
  background: #fcfdff;
  color: var(--dark-text);
  padding: 0.76rem 0.85rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: #7fa9eb;
  box-shadow: 0 0 0 4px rgba(29, 111, 216, 0.14);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.site-footer {
  background: linear-gradient(120deg, #083b75, #0b4f9c);
  color: #e9f0ff;
}

.footer-grid {
  padding: 2.6rem 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.site-footer h4,
.site-footer h5 {
  font-family: "Poppins", sans-serif;
  color: var(--golden-yellow);
  margin-bottom: 0.45rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 44, 88, 0.24);
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp {
  bottom: 16px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  font-size: 1.9rem;
  box-shadow: 0 12px 24px rgba(18, 101, 48, 0.38);
}

.floating-whatsapp i {
  display: none;
}

.floating-whatsapp::before {
  content: "";
  width: 64%;
  height: 64%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M19.11 17.21c-.27-.14-1.58-.78-1.83-.87-.24-.09-.42-.13-.6.13-.18.27-.69.87-.85 1.05-.16.18-.31.2-.58.07-.27-.14-1.13-.42-2.16-1.33-.8-.71-1.35-1.58-1.51-1.85-.16-.27-.02-.41.12-.55.12-.12.27-.31.4-.47.13-.16.18-.27.27-.45.09-.18.04-.34-.02-.47-.07-.13-.6-1.45-.82-1.98-.22-.53-.44-.46-.6-.47-.16-.01-.34-.01-.53-.01-.18 0-.47.07-.71.34-.24.27-.93.91-.93 2.22 0 1.31.95 2.58 1.08 2.76.13.18 1.86 2.84 4.5 3.98.63.27 1.12.44 1.5.56.63.2 1.2.17 1.65.11.5-.07 1.58-.65 1.8-1.28.22-.63.22-1.17.15-1.28-.07-.11-.24-.18-.51-.32z'/%3E%3Cpath fill='%23fff' d='M16.03 4.5c-6.32 0-11.45 5.13-11.45 11.45 0 2.02.53 3.99 1.53 5.72L4.5 27.5l6.01-1.57a11.39 11.39 0 0 0 5.52 1.41h.01c6.32 0 11.45-5.13 11.45-11.45S22.35 4.5 16.03 4.5zm0 20.89h-.01a9.48 9.48 0 0 1-4.83-1.32l-.35-.21-3.57.93.95-3.48-.23-.36a9.5 9.5 0 1 1 8.04 4.44z'/%3E%3C/svg%3E");
}

.back-to-top {
  bottom: 82px;
  z-index: 998;
  background: var(--cta-red);
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-whatsapp:hover,
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(8, 44, 88, 0.32);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition: opacity 0.68s var(--motion-ease), transform 0.68s var(--motion-ease);
  will-change: opacity, transform;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

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

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

@media (max-width: 991px) {
  .main-nav {
    gap: 0.55rem;
  }

  .brand-name {
    max-width: 180px;
    font-size: 0.86rem;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .lang-btn {
    padding: 0.28rem 0.56rem;
    font-size: 0.76rem;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 699px) {
  section {
    scroll-margin-top: 78px;
  }

  .container {
    width: min(1140px, 94%);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 1.25rem;
  }

  .hero-image-card {
    min-height: 280px;
  }

  .showcase-content {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.75rem;
  }

  .showcase-content h4 {
    font-size: 0.94rem;
  }

  .showcase-content p {
    font-size: 0.8rem;
  }

  .service-detail-top,
  .child-plan-page-top {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .child-plan-nav-btns {
    margin-left: auto;
  }

  .contact-grid {
    padding: 0.85rem;
  }

  .about-showcase-image {
    margin-top: 1.8rem;
    margin-bottom: 0.3rem;
    border-radius: 0.85rem;
    min-height: 280px;
    box-shadow: 0 12px 28px rgba(11, 79, 156, 0.14);
  }
}

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

  .plans-grid .premium-card {
    min-height: 148px;
  }

  .hero-cta-group,
  .form-actions {
    gap: 0.55rem;
  }

  .hero-cta-group .btn,
  .form-actions .btn,
  .child-plan-page-wa {
    width: 100%;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 0.85rem;
  }

  .about-showcase-image {
    margin-top: 1.6rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-bottom: 0.2rem;
    border-radius: 0.65rem;
    min-height: 260px;
    box-shadow: 0 10px 22px rgba(11, 79, 156, 0.12);
  }

  .about-showcase-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.6rem;
  }

  .google-form-embed {
    padding: 0.25rem;
  }

  .google-form-embed iframe {
    min-height: 620px;
    height: 680px;
  }

  .about-stats-panel {
    padding: 0.85rem;
  }

  .stat-pill {
    min-height: 90px;
    padding: 0.58rem 0.66rem;
  }

  .stat-value {
    font-size: clamp(1.38rem, 6.8vw, 1.82rem);
  }

  .stat-label {
    font-size: 0.82rem;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(1240px, 92%);
  }

  .hero-grid {
    gap: 2.4rem;
  }

  .hero-content h1 {
    max-width: 18ch;
  }
}

@media (max-width: 420px) {
  .main-nav {
    height: 68px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .hero-cta-group .btn,
  .form-actions .btn {
    width: 100%;
  }

  .showcase-card {
    min-height: 210px;
  }

  .showcase-card-large {
    min-height: 230px;
  }

  .hero-content h1 {
    font-size: clamp(1.58rem, 7.2vw, 2rem);
  }

  .hero-intro {
    margin: 0.72rem 0 0.9rem;
  }

  .trust-badges {
    gap: 0.6rem;
  }

  .nav-menu {
    top: 68px;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .floating-whatsapp,
  .back-to-top {
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    bottom: 74px;
  }
}

@media (max-width: 390px) {
  :root {
    --section-space: clamp(2.6rem, 9vw, 3.4rem);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .brand-name {
    max-width: 138px;
    font-size: 0.74rem;
  }

  .lang-btn {
    padding: 0.24rem 0.45rem;
    font-size: 0.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .trust-badges span {
    font-size: 0.76rem;
    padding: 0.38rem 0.62rem;
  }

  .showcase-card {
    min-height: 190px;
  }

  .showcase-card-large {
    min-height: 210px;
  }

  .showcase-content h4 {
    font-size: 0.9rem;
  }

  .showcase-content p {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(1140px, 95.5%);
  }

  .brand-name {
    max-width: 124px;
  }

  .nav-menu {
    padding: 0.85rem 4%;
  }

  .hero-content h1 {
    font-size: clamp(1.42rem, 8.1vw, 1.78rem);
  }

  .hero-content h2 {
    font-size: 1.06rem;
  }

  .child-back-btn,
  .child-nav-btn {
    min-height: 34px;
  }
}

@media (min-width: 700px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card-large {
    grid-column: span 2;
    min-height: 320px;
  }

  .showcase-card-right-only {
    grid-column: span 2;
  }

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

  .child-plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-image-card {
    min-height: 460px;
  }

  .about-stats-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.78rem;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-menu a {
    position: relative;
    padding: 0;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--cta-red), var(--golden-yellow));
    transition: width 0.2s ease;
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }

  .nav-whatsapp-btn {
    display: inline-flex;
  }

  .lang-switcher {
    margin-left: 0.25rem;
  }

  .hero-image-card {
    min-height: 540px;
  }

  .about-image-wrapper {
    min-height: 470px;
  }

  .services-grid,
  .benefits-grid,
  .choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .showcase-card-right-only {
    grid-column: span 2;
  }

  .contact-grid {
    padding: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .benefits-grid,
  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image-card {
    min-height: 420px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .container {
    width: min(1200px, 91%);
  }

  .hero-grid {
    gap: 2.1rem;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(1320px, 90%);
  }

  .hero-image-card {
    min-height: 580px;
  }

  .showcase-card-large,
  .showcase-card-right-only {
    min-height: 390px;
  }
}
