/* ============================================
   English with Leo — Styles
   ============================================ */

:root {
  --color-white: #ffffff;
  --color-bg: #fafbfc;
  --color-bg-alt: #f0f4f8;
  --color-navy: #1a2b4a;
  --color-navy-light: #2d4a6f;
  --color-blue: #2563eb;
  --color-blue-light: #3b82f6;
  --color-blue-soft: #dbeafe;
  --color-green: #059669;
  --color-green-soft: #d1fae5;
  --color-green-light: #10b981;
  --color-yellow: #f59e0b;
  --color-yellow-soft: #fef3c7;
  --color-yellow-dark: #d97706;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;

  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(26, 43, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 43, 74, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 43, 74, 0.12);
  --shadow-xl: 0 20px 60px rgba(26, 43, 74, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 760px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
  background: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 43, 74, 0.3);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: var(--color-blue-soft);
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn--yellow:hover {
  background: var(--color-yellow-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-navy));
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1rem;
}

.nav__logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}

.nav__menu--open {
  display: flex;
}

.nav__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--color-blue);
  background: var(--color-blue-soft);
}

.nav__link--cta {
  background: var(--color-blue);
  color: var(--color-white) !important;
  margin-top: 0.5rem;
}

.nav__link--cta:hover {
  background: var(--color-navy);
}

.nav__link--active {
  color: var(--color-blue);
  background: var(--color-blue-soft);
}

/* ---- Sections ---- */
.section {
  padding: 4rem 0;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}

.section__label--light {
  color: var(--color-yellow-soft);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.section__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-green-soft);
  color: var(--color-green);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-green-soft);
  color: var(--color-green);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__image-grid img:first-child {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__img-small {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ---- About ---- */
.section--about {
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about__photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--color-blue-soft), var(--color-green-soft));
  aspect-ratio: 4/5;
  max-width: 400px;
  margin: 0 auto;
}

.about__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo-frame img[src=""],
.about__photo-frame img:not([src]),
.about__photo-frame img.photo-placeholder {
  object-fit: contain;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
}

.about__photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.about__photo-badge-icon {
  font-size: 1.1rem;
}

.about__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.6rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---- Cards ---- */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

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

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card__icon--blue { background: var(--color-blue-soft); }
.card__icon--green { background: var(--color-green-soft); }
.card__icon--yellow { background: var(--color-yellow-soft); }
.card__icon--navy { background: rgba(26, 43, 74, 0.08); }

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Benefit cards */
.section--benefits {
  background: var(--color-white);
}

/* Service cards */
.section--lessons {
  background: var(--color-bg);
}

.service-card {
  position: relative;
  padding-top: 2.5rem;
}

.service-card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue-soft);
  line-height: 1;
}

/* ---- Level Check ---- */
.section--level-check {
  padding: 0;
}

.level-check {
  display: grid;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 50%, var(--color-blue) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 1.25rem;
  max-width: calc(1200px - 2.5rem);
  margin-left: auto;
  margin-right: auto;
}

.level-check__content {
  padding: 2.5rem 1.5rem;
}

.level-check__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.level-check__note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.level-check__visual {
  display: none;
}

.level-check__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Pricing ---- */
.section--packages {
  background: var(--color-bg-alt);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--color-blue);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.pricing-card__header {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}

.pricing-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1.25rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.packages__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 1.25rem;
  background: var(--color-yellow-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-yellow);
  max-width: 800px;
  margin: 0 auto;
}

/* ---- Steps ---- */
.section--how {
  background: var(--color-white);
}

.steps {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blue), var(--color-navy));
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.step__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- Dual Cards (Online/Home) ---- */
.section--online-home {
  background: var(--color-bg);
}

.dual-cards {
  display: grid;
  gap: 1.5rem;
}

.format-grid {
  display: grid;
  gap: 1.5rem;
}

.dual-card {
  padding: 0;
  overflow: hidden;
}

.dual-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dual-card__body {
  padding: 1.75rem;
}

.dual-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.dual-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
}

.dual-card__icon--blue { background: var(--color-blue-soft); }
.dual-card__icon--green { background: var(--color-green-soft); }
.dual-card__icon--yellow { background: var(--color-yellow-soft); }

.dual-card__list li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dual-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.image-disclosure {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ---- Testimonials ---- */
.section--testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-blue-soft);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-card__author::before {
  content: '— ';
}

/* ---- CTA Banner ---- */
.section--cta-banner {
  padding: 2rem 0;
}

.cta-banner {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--color-green-soft) 0%, var(--color-blue-soft) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.cta-banner__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FAQ ---- */
.section--faq {
  background: var(--color-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--color-blue-soft);
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}

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

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover {
  color: var(--color-blue);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Contact ---- */
.section--contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--color-blue-soft);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
}

.contact-link {
  color: var(--color-blue);
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

.contact-cta__box {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact-cta__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.contact-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.contact-cta__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--color-white);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

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

.whatsapp-float:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal--delay {
  transition-delay: 0.15s;
}

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }

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

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

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    gap: 0.15rem;
  }

  .nav__link {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .nav__link--cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }

  .about__photo-frame {
    margin: 0;
  }

  .level-check {
    grid-template-columns: 1.2fr 1fr;
    margin: 0 auto;
  }

  .level-check__content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .level-check__visual {
    display: block;
  }

  .dual-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .dual-card__image img {
    height: 220px;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 2rem;
  }

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

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .btn:hover,
  .card:hover {
    transform: none;
  }
}

/* ---- Legal and error pages ---- */
.legal-page {
  min-height: 100vh;
  background: var(--color-bg);
  padding: 3rem 0 5rem;
}

.legal-shell {
  width: min(820px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--color-blue);
  font-weight: 700;
}

.legal-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-card h1 {
  color: var(--color-navy);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.legal-card h2 {
  color: var(--color-navy);
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.legal-card p,
.legal-card li {
  color: var(--color-text-muted);
}

.legal-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.legal-card a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, var(--color-bg), var(--color-blue-soft));
}

.error-page__inner {
  width: min(640px, 100%);
}

.error-page__code {
  color: var(--color-blue);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  line-height: 1;
}

.error-page h1 {
  color: var(--color-navy);
  margin: 1rem 0;
}

.error-page p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
