:root {
  --primary-blue: #0b4db8;
  --dark-blue: #073b8e;
  --accent-yellow: #ffd23f;
  --soft-yellow: #fff6d8;
  --white: #ffffff;
  --light-bg: #f7faff;
  --blue-soft: #eef5ff;
  --text-dark: #111827;
  --text-muted: #64748b;
  --text-white: #ffffff;

  --border: #dfe7f3;
  --shadow: 0 18px 45px rgba(7, 59, 142, 0.1);
  --shadow-soft: 0 12px 28px rgba(7, 59, 142, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section-padding {
  padding: 5.5rem 0;
}

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

.section-blue {
  background: var(--primary-blue);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 231, 243, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--primary-blue);
  color: var(--accent-yellow);
  box-shadow: 0 10px 22px rgba(11, 77, 184, 0.18);
}

.brand-text {
  font-size: 1.05rem;
}

.brand-text strong {
  color: var(--primary-blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

.main-nav a:not(.btn) {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-yellow);
  transition: width 0.2s ease;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(11, 77, 184, 0.2);
}

.btn-primary:hover {
  background: var(--dark-blue);
}

.btn-outline {
  background: var(--white);
  color: var(--primary-blue);
  border-color: rgba(11, 77, 184, 0.24);
}

.btn-outline:hover {
  box-shadow: var(--shadow-soft);
}

.btn-yellow {
  background: var(--accent-yellow);
  color: var(--text-dark);
}

.btn-small {
  min-height: 40px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.hero,
.page-hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.home-hero {
  background-image: url("../images/home-hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(7, 1, 20, 0.64);
}

/* .home-hero .hero-content {
  padding: 2rem;
  border: 1px solid rgba(217, 228, 246, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
} */

/* .home-hero .hero-image-card {
  background: rgba(255, 255, 255, 0.71);
} */

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--border);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  /* grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr); */
  align-items: center;
  gap: 3rem;
}

.hero-content h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 3.85rem);
  line-height: 1.04;
  color: var(--text-white);

  /* letter-spacing: em; */
}

.page-hero h1 {
  font-size: clamp(2.15rem, 4.7vw, 4.1rem);
}

.hero-text,
.page-hero p,
.section-heading p,
.split-grid p,
.cta-box p,
.contact-info-panel p,
.course-section-intro p {
  color: var(--text-white);
  font-size: 1.06rem;
}

.hero-text {
  max-width: 660px;
  margin: 1.35rem 0 0;
  font-size: 1.18rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
  color: var(--primary-blue);
  background: var(--blue-soft);
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.eyebrow.yellow {
  color: var(--text-dark);
  background: var(--soft-yellow);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
/* Simple CTA - previous style */
.simple-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3rem);
    background: #f5f9ff;
    border: 1px solid rgba(11, 77, 184, 0.14);
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(11, 77, 184, 0.08);
}

.simple-cta-card h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.simple-cta-card p {
    margin: 1rem 0 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.simple-cta-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.simple-cta-actions .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .simple-cta-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
        border-radius: 24px;
    }

    .simple-cta-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .simple-cta-card {
        padding: 1.5rem;
    }

    .simple-cta-card h2 {
        font-size: 1.8rem;
    }

    .simple-cta-card p {
        font-size: 0.96rem;
    }

    .simple-cta-actions {
        flex-direction: column;
    }

    .simple-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-stats div {
  min-width: 118px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light-bg);
}

.hero-stats strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.hero-media,
.page-hero-media {
  position: relative;
}

.hero-image-card,
.page-image-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image-card img,
.page-image-card img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
}

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

.float-note,
.float-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.float-note {
  left: -1.2rem;
  bottom: 2rem;
  max-width: 210px;
  padding: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.float-card {
  right: -1rem;
  top: 1.5rem;
  padding: 0.85rem 1rem;
}

.float-card strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.float-card span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hero-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.hero-mini-row div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  border: 1px solid var(--border);
}

.hero-mini-row span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-mini-row strong {
  color: var(--primary-blue);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 3rem;
}

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

.split-grid h2,
.section-heading h2,
.cta-box h2,
.contact-info-panel h2,
.lead-form h2,
.course-section-intro h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.feature-item,
.benefit-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary-blue);
}

.card-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.course-card,
.testimonial-card,
.info-card,
.step-card,
.contact-info-panel,
.lead-form,
.map-box,
.faq-list details,
.course-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.course-card,
.testimonial-card,
.info-card,
.step-card {
  padding: 1.35rem;
}

.course-card h2,
.course-card h3,
.info-card h2,
.info-card h3,
.step-card h3 {
  margin: 0.85rem 0 0.45rem;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.course-card p,
.info-card p,
.step-card p,
.testimonial-card p,
.card-list {
  color: var(--text-muted);
}

.card-list {
  padding-left: 1.15rem;
  margin: 1rem 0;
}

.course-tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  background: var(--soft-yellow);
  color: #7a5a00;
  font-weight: 600;
  font-size: 0.72rem;
}

.text-link {
  color: var(--primary-blue);
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-blue);
  color: var(--accent-yellow);
  font-weight: 600;
}

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

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

.form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.lead-form {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label span {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 0.9rem 1rem;
  color: var(--text-dark);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(11, 77, 184, 0.1);
}

.full-width {
  grid-column: 1 / -1;
}

.field-error {
  border-color: #dc2626 !important;
}

.form-message {
  margin: 1rem 0 0;
  font-weight: 600;
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #dc2626;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--primary-blue);
  margin-top: 1rem;
}

.testimonial-card span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.cta-section {
  padding: 4.8rem 0;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--text-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin: 0.4rem 0;
}

.footer-brand .brand-text strong {
  color: var(--accent-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.SEB{
 color: var(--accent-yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

.image-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  border: 1px solid var(--border);
  border-radius: 26px;
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.icon-dot {
  width: 42px;
  height: 42px;
  display: block;
  border-radius: 14px;
  background: var(--accent-yellow);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.45);
}

.large-card {
  padding: 1.7rem;
}

.course-section {
  padding: 1.3rem;
  margin-bottom: 1.4rem;
}

.course-section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.course-section-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-section-intro p {
  margin: 0.65rem 0 0;
}

.course-section-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.course-section-meta div {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light-bg);
}

.course-section-meta strong {
  display: block;
  color: var(--primary-blue);
}

.playful-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--soft-yellow);
}

.playful-card h2 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.playful-card p {
  color: var(--text-muted);
}

.kids-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.kids-tags span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-info-panel {
  padding: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  color: var(--text-muted);
}

.contact-list strong {
  color: var(--text-dark);
}

.map-box {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--white);
}

.map-box span {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.7rem;
}

.map-box p {
  margin: 0;
  color: var(--text-muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro p {
  color: var(--text-muted);
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-yellow);
  color: var(--primary-blue);
  font-weight: 600;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--primary-blue);
  font-weight: 600;
}

.faq-list details[open] summary {
  color: var(--primary-blue);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 1.2rem 1.2rem 4.45rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .form-panel,
  .contact-grid,
  .course-section-header,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .three-col,
  .steps-grid,
  .benefits-grid.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
  }

  .main-nav a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .feature-row,
  .three-col,
  .two-col,
  .steps-grid,
  .benefits-grid,
  .benefits-grid.large,
  .form-grid,
  .course-section-meta,
  .hero-mini-row {
    grid-template-columns: 1fr;
  }

  .float-note,
  .float-card {
    position: static;
    margin-top: 0.9rem;
  }

  .cta-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-hero .hero-content {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .container {
    width: min(100% - 1.1rem, var(--container));
  }

  .hero-content h1,
  .page-hero h1 {
    letter-spacing: -0.025em;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }

  .course-card,
  .testimonial-card,
  .info-card,
  .step-card,
  .lead-form,
  .contact-info-panel,
  .cta-box,
  .course-section {
    border-radius: 20px;
  }

  .hero-image-card img,
  .page-image-card img,
  .image-card img {
    min-height: 240px;
  }

  .faq-list summary {
    padding-right: 2.9rem;
  }

  .faq-list p {
    padding-left: 1.2rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    font-size: 0.86rem;
  }
}


/* Camford updates: lighter typography, form validation, tutor page, no gradients */
.home-hero .eyebrow {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.88);
}

.home-hero .hero-content {
  max-width: 760px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.92);
}

.btn,
.brand,
.main-nav,
.feature-item,
.benefit-card,
.course-tag,
.text-link,
.step-card span,
.whatsapp-float,
.course-section-label,
.kids-tags span,
.map-box span,
.faq-list summary,
label span,
.form-message {
  font-weight: 600;
}

.brand-text strong,
.hero-stats strong,
.course-section-meta strong,
.contact-list strong,
.float-card strong,
.hero-mini-row strong {
  font-weight: 700;
}

.hero-content h1,
.page-hero h1,
.split-grid h2,
.section-heading h2,
.cta-box h2,
.contact-info-panel h2,
.lead-form h2,
.course-section-intro h2,
.faq-intro h2,
.playful-card h2,
.tutor-content h2 {
  font-weight: 600;
}

.section-heading p,
.split-grid p,
.cta-box p,
.contact-info-panel p,
.course-section-intro p,
.info-card p,
.step-card p,
.course-card p,
.testimonial-card p,
.card-list,
.faq-list p,
.map-box p,
.playful-card p {
  color: var(--text-muted);
}

.home-hero .hero-text {
  color: rgba(255, 255, 255, 0.92);
}

.section-blue .lead-form,
.section-blue .lead-form p,
.section-blue .lead-form h2,
.section-blue label span {
  color: var(--text-dark);
}

.hidden {
  display: none !important;
}

.field-error {
  border-color: #dc2626 !important;
  background: #fff7f7;
}

.field-help {
  display: block;
  margin-top: 0.35rem;
  color: #dc2626;
  font-size: 0.78rem;
  font-weight: 500;
}

.form-note {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.form-message {
  min-height: 1.5rem;
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #dc2626;
}

.captcha-wrap {
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light-bg);
  overflow-x: auto;
}

.captcha-wrap small {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.tutor-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: center;
}

.tutor-photo-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tutor-photo-card img {
  width: 100%;
  min-height: 430px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
}

.tutor-badge {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.tutor-badge strong,
.tutor-badge span {
  display: block;
}

.tutor-badge strong {
  color: var(--primary-blue);
  font-size: 1.35rem;
}

.tutor-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.tutor-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.tutor-facts div {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light-bg);
}

.tutor-facts span,
.tutor-facts strong {
  display: block;
}

.tutor-facts span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.tutor-facts strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.lead-form button[disabled] {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1024px) {
  .tutor-profile-grid {
    grid-template-columns: 1fr;
  }
}

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

  .tutor-photo-card img {
    min-height: 320px;
  }

  .tutor-badge {
    position: static;
    margin-top: 0.9rem;
  }
}

/* Laravel demo form + thank-you modal */
.alert-box {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: var(--blue-soft);
  color: var(--dark-blue);
}

.alert-box.error {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(17, 24, 39, 0.58);
}

.success-modal.is-open {
  display: flex;
}

.success-modal-card {
  width: min(100%, 560px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
}

.success-modal-card h2 {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.admin-body {
  background: var(--light-bg);
}

.admin-shell {
  min-height: 100vh;
}

.admin-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-main {
  padding: 2rem 0 4rem;
}

.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.admin-table th {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.status-badge {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--dark-blue);
  font-size: 0.82rem;
  font-weight: 600;
}

.filter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-item {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.detail-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

@media (max-width: 820px) {
  .admin-grid,
  .detail-grid,
  .filter-form {
    grid-template-columns: 1fr;
  }

  .success-modal-card {
    padding: 1.5rem;
  }
}

/* UI + SEO update: page heroes, extra sections, reusable form, WhatsApp bubble, and admin UX */
.page-visual-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.page-visual-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.58);
}

.page-visual-hero .hero-content {
  max-width: 780px;
}

.page-visual-hero .eyebrow,
.home-hero .eyebrow {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
}

.page-visual-hero .hero-text {
  color: rgba(255, 255, 255, 0.92);
}

.hero-about { background-image: url("../images/about-learning.webp"); }
.hero-courses { background-image: url("../images/courses.webp"); }
.hero-kids { background-image: url("../images/kids-and-teens.webp"); }
.hero-tutors { background-image: url("../images/tutors.webp"); }
.hero-contact { background-image: url("../images/contact-learning.webp"); }
.hero-demo { background-image: url("../images/tutors.webp"); }

.hero-inner-page-grid {
  grid-template-columns: minmax(0, 1fr);
}

.home-hero .hero-stats div {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.93);
}

.btn-with-icon {
  gap: 0.45rem;
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.center-actions {
  justify-content: center;
}

.image-content-section {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.section-image-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-image-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 26px;
  background: var(--blue-soft);
}

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

.benefit-card h3 {
  margin: 0 0 0.45rem;
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-intro {
  margin: 0.4rem 0 1.1rem;
  color: var(--text-muted);
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light-bg);
}

.contact-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.contact-card strong {
  color: var(--text-dark);
  font-weight: 600;
}

.single-form {
  display: block;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.enhanced-faq details {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.enhanced-faq summary {
  font-size: 1rem;
}

.tutor-grid {
  align-items: stretch;
}

.tutor-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tutor-image {
  height: 250px;
  background: var(--blue-soft);
}

.tutor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tutor-body {
  padding: 1.25rem;
}

.tutor-body h3 {
  margin: 0.65rem 0 0.55rem;
  color: var(--text-dark);
  font-weight: 600;
}

.compact-steps {
  grid-template-columns: 1fr;
}

.whatsapp-float {
  right: 1.1rem;
  bottom: 1.1rem;
  min-height: 56px;
  padding: 0.65rem 1.05rem 0.65rem 0.65rem;
  gap: 0.55rem;
  border-radius: 999px;
  background: #22c55e;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.32);
}

.whatsapp-float-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.15rem;
}

.whatsapp-float-text {
  font-size: 0.92rem;
}

.admin-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.filter-form input[type="search"] {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  min-width: 260px;
}

.hero-content h1,
.page-visual-hero h1,
.section-heading h2,
.split-grid h2,
.cta-panel h2,
.lead-form h2 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

.main-nav {
  font-weight: 600;
}

@media (max-width: 900px) {
  .image-content-section,
  .contact-grid,
  .six-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-visual-hero {
    min-height: 360px;
  }

  .section-image-card img {
    min-height: 240px;
  }

  .filter-form input[type="search"] {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-hero,
  .page-visual-hero {
    min-height: auto;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
  }

  .whatsapp-float-text {
    display: none;
  }

  .whatsapp-float-icon {
    width: 100%;
    height: 100%;
  }
}


/* Focused requested UI refinements: screenshot-style CTA, FAQ, cards, form fields, and WhatsApp button */
.cta-panel,
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #f7fbff;
  color: var(--text-dark);
  box-shadow: 0 18px 45px rgba(7, 59, 142, 0.07);
}

.section-blue {
  background: var(--white);
  color: var(--text-dark);
}

.cta-panel .eyebrow,
.cta-box .eyebrow {
  color: var(--primary-blue);
  background: var(--blue-soft);
}

.cta-panel h2,
.cta-box h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.cta-panel p,
.cta-box p {
  max-width: 650px;
  color: var(--text-muted);
}

.cta-panel .btn-yellow,
.cta-box .btn-yellow {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(11, 77, 184, 0.18);
}

.cta-panel .btn-yellow:hover,
.cta-box .btn-yellow:hover {
  background: var(--dark-blue);
}

.feature-card,
.benefit-card,
.contact-card,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: none;
}

.section-light .feature-card,
.section-light .benefit-card,
.section-light .contact-card {
  background: var(--white);
}

.feature-card {
  min-height: 270px;
  padding: 1.9rem;
}

.feature-card .eyebrow {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #ffe68a;
  color: transparent;
  position: relative;
  margin-bottom: 1.4rem;
}

.feature-card .eyebrow::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent-yellow);
}

.feature-card h2,
.feature-card h3 {
  color: #020617;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.feature-card p,
.benefit-card p {
  color: var(--text-muted);
}

.benefits-grid.six-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* grid-auto-rows: minmax(190px, auto); */
  gap: 1rem;
}

.benefits-grid.six-grid .benefit-card {
  padding: 1.6rem;
  background: #f3f7fc;
}

/* .benefits-grid.six-grid .benefit-card:nth-child(3) {
  grid-row: span 2;
  background: var(--dark-blue);
  color: var(--white);
} */

/* .benefits-grid.six-grid .benefit-card:nth-child(3) h3,
.benefits-grid.six-grid .benefit-card:nth-child(3) p {
  color: var(--white);
} */

.faq-layout {
  gap: clamp(2rem, 7vw, 5rem);
}

.faq-intro .eyebrow,
.section-heading .eyebrow {
  border: 1px solid var(--border);
}

.faq-list {
  gap: 0.9rem;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  padding: 1.08rem 3.25rem 1.08rem 1.1rem;
}

.faq-list p {
  max-width: 560px;
  padding-bottom: 1.25rem;
}

.btn-icon,
.wa-svg {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
}

.btn-icon svg,
.wa-svg {
  width: 1.15em;
  height: 1.15em;
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  min-height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  text-decoration: none !important;
  z-index: 99999;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: wa-pulse 1.8s infinite;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.08);
  color: #fff;
}

.whatsapp-float-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
}

.whatsapp-float-icon svg {
  width: 33px;
  height: 33px;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 900px) {
  .cta-panel,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefits-grid.six-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid.six-grid .benefit-card:nth-child(3) {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float-icon,
  .whatsapp-float-icon svg {
    width: 31px;
    height: 31px;
  }
}

/* Safe visual animation + section refinements (UI only) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.section-heading .eyebrow,
.hero-content .eyebrow {
  animation: softBadgeIn 0.7s ease both;
}

.hero-content h1 {
  animation: titleRise 0.85s ease both;
}

.hero-text,
.hero-actions,
.hero-stats {
  animation: titleRise 0.9s ease both;
}

.hero-actions { animation-delay: 0.08s; }
.hero-stats { animation-delay: 0.15s; }

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

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

.course-card,
.step-card,
.testimonial-card,
.info-card,
.tutor-card,
.feature-card,
.contact-card,
.faq-list details,
.lead-form,
.section-image-card,
.simple-cta-card,
.cta-box,
.cta-panel {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.course-card:hover,
.step-card:hover,
.testimonial-card:hover,
.info-card:hover,
.tutor-card:hover,
.feature-card:hover,
.contact-card:hover,
.faq-list details:hover,
.lead-form:hover,
.section-image-card:hover,
.simple-cta-card:hover,
.cta-box:hover,
.cta-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(7, 59, 142, 0.11);
  border-color: rgba(11, 77, 184, 0.22);
}

/* Why Choose Us: attractive icon cards */
.enhanced-benefits-grid {
  align-items: stretch;
}

.enhanced-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 1.45rem 1.55rem 1.55rem !important;
  background: #f4f8fd !important;
  border: 1px solid rgba(11, 77, 184, 0.12) !important;
  box-shadow: 0 16px 38px rgba(7, 59, 142, 0.055) !important;
}

.enhanced-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 210, 63, 0.14);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.enhanced-benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  border-radius: 16px;
  background: #fff2b8;
  color: var(--primary-blue);
  box-shadow: inset 0 0 0 1px rgba(255, 210, 63, 0.72), 0 10px 22px rgba(255, 210, 63, 0.25);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.enhanced-benefit-card h3,
.enhanced-benefit-card p {
  position: relative;
  z-index: 1;
}

.enhanced-benefit-card h3 {
  margin-bottom: 0.65rem;
  color: var(--primary-blue);
  letter-spacing: -0.015em;
}

.enhanced-benefit-card p {
  font-weight: 500;
  line-height: 1.75;
}

/* Free demo section: richer left side without touching form logic */
.form-panel {
  align-items: stretch;
}

.demo-copy-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(11, 77, 184, 0.13);
  border-radius: var(--radius-xl);
  background: #f7fbff;
  box-shadow: 0 18px 45px rgba(7, 59, 142, 0.075);
}

.demo-copy-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 210, 63, 0.38);
}

.demo-copy-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(11, 77, 184, 0.08);
}

.demo-copy-card > * {
  position: relative;
  z-index: 1;
}

.demo-copy-card h2 {
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.demo-copy-card p {
  color: var(--text-muted);
  max-width: 560px;
}

.demo-support-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1.35rem 0;
  padding: 1.05rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(11, 77, 184, 0.12);
  box-shadow: 0 14px 30px rgba(7, 59, 142, 0.07);
}

.demo-support-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-blue);
  color: var(--accent-yellow);
}

.demo-support-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.demo-support-card strong,
.demo-support-card span {
  display: block;
}

.demo-support-card strong {
  color: var(--text-dark);
  font-weight: 650;
}

.demo-support-card span {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.demo-benefit-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.demo-benefit-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.8rem;
  align-items: start;
  padding: 0.95rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 77, 184, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.demo-benefit-list div:hover {
  transform: translateX(5px);
  border-color: rgba(11, 77, 184, 0.22);
  background: #fff;
}

.demo-benefit-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--soft-yellow);
  color: #8a6500;
  font-size: 0.78rem;
  font-weight: 700;
}

.demo-benefit-list strong {
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.demo-benefit-list small {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.lead-form {
  position: relative;
  overflow: hidden;
}

.lead-form::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(11, 77, 184, 0.055);
  pointer-events: none;
}

.lead-form > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .demo-copy-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .demo-support-card {
    align-items: flex-start;
  }

  .enhanced-benefit-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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