:root {
  --ink: #14261f;
  --green: #123f32;
  --green-deep: #0c2f26;
  --green-soft: #2f6857;
  --ivory: #f6f0e4;
  --paper: #fbf8f1;
  --gold: #c79743;
  --gold-light: #e0bd74;
  --line: rgba(20, 38, 31, 0.16);
  --muted: #69766e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.visual-icon,
.whatsapp-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.visual-icon {
  overflow: visible;
}

.whatsapp-icon {
  display: inline-block;
}

::selection {
  background: var(--gold-light);
  color: var(--green-deep);
}

.announcement {
  min-height: 38px;
  padding: 9px clamp(20px, 5vw, 80px);
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement a {
  margin-left: auto;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement .whatsapp-icon {
  width: 15px;
  height: 15px;
}

.announcement a:hover {
  color: white;
}

.announcement-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-light);
}

.site-header {
  height: 88px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(185, 143, 62, 0.35);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--green-deep);
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
  font-size: 13px;
  font-weight: 600;
  color: #3d4b44;
}

.site-nav > a {
  transition: color 180ms ease;
}

.site-nav > a:hover {
  color: var(--gold);
}

.site-nav .nav-cta {
  padding: 13px 18px;
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-nav .nav-cta .whatsapp-icon {
  width: 16px;
  height: 16px;
}

.site-nav .nav-cta:hover {
  background: var(--green);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 12px 7px;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--green);
  margin: 7px 0;
  transition: transform 180ms ease;
}

.hero {
  min-height: calc(100vh - 126px);
  padding: clamp(60px, 8vw, 116px) clamp(20px, 7.2vw, 110px) clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(30deg, rgba(18, 63, 50, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(18, 63, 50, 0.1) 87.5%),
    linear-gradient(150deg, rgba(18, 63, 50, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(18, 63, 50, 0.1) 87.5%);
  background-size: 60px 104px;
  mask-image: linear-gradient(to right, transparent 0, transparent 46%, black 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.eyebrow-line {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2,
.trial-section h2,
.family-banner h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 6.8vw, 104px);
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-intro {
  max-width: 600px;
  margin: 32px 0 0;
  color: #53625a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button .visual-icon,
.button .whatsapp-icon {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  background: var(--green);
  color: white;
}

.button-primary:hover {
  background: var(--green-deep);
}

.button-gold {
  width: 100%;
  margin-top: 6px;
  background: var(--gold-light);
  color: var(--green-deep);
}

.button-gold:hover {
  background: #eccb88;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(18, 63, 50, 0.45);
  padding-bottom: 6px;
}

.hero-assurances {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  color: #5c6962;
  font-size: 12px;
}

.hero-assurances span,
.family-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.check-mark {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(199, 151, 67, 0.16);
  color: var(--gold);
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.hero-art {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

.arch {
  width: min(100%, 470px);
  aspect-ratio: 0.76;
  padding: 1px;
  border-radius: 50% 50% 12px 12px / 38% 38% 2% 2%;
  background: linear-gradient(160deg, var(--gold-light), rgba(199, 151, 67, 0.1));
  box-shadow: 0 34px 80px rgba(12, 47, 38, 0.18);
  position: relative;
  z-index: 2;
}

.arch-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 25%, rgba(224, 189, 116, 0.16), transparent 36%),
    var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.arch-inner::after {
  content: "✦";
  position: absolute;
  bottom: 28px;
  color: var(--gold-light);
  font-size: 18px;
}

.verse-label {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.arabic {
  margin: 35px 0 26px;
  font-family: "Times New Roman", serif;
  font-size: clamp(35px, 3vw, 49px);
  line-height: 1.7;
}

.verse-rule {
  width: 55px;
  height: 1px;
  background: var(--gold-light);
}

.translation {
  max-width: 250px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.pattern {
  position: absolute;
  border: 1px solid rgba(199, 151, 67, 0.33);
  transform: rotate(45deg);
}

.pattern::after,
.pattern::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(199, 151, 67, 0.18);
}

.pattern::after {
  transform: rotate(45deg);
}

.pattern-one {
  width: 190px;
  height: 190px;
  right: -45px;
  top: 45px;
}

.pattern-two {
  width: 130px;
  height: 130px;
  left: -5px;
  bottom: 45px;
}

.lesson-card {
  min-width: 315px;
  padding: 18px 20px;
  background: #fffdf7;
  box-shadow: 0 20px 46px rgba(12, 47, 38, 0.17);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  position: absolute;
  z-index: 3;
  right: -34px;
  bottom: 45px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #55a986;
  box-shadow: 0 0 0 5px rgba(85, 169, 134, 0.15);
}

.lesson-card div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lesson-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lesson-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
}

.lesson-arrow {
  color: var(--gold);
}

.trust-strip {
  padding: 30px clamp(20px, 7.2vw, 110px);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip > div {
  min-height: 54px;
  padding: 2px clamp(18px, 2.5vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.trust-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 11px;
  color: var(--gold);
}

.trust-strip > div:first-child {
  padding-left: 0;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 7.2vw, 110px);
}

.section-kicker {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-count {
  color: var(--gold);
}

.about-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 10vw;
}

.section h2,
.family-banner h2 {
  font-size: clamp(46px, 5.2vw, 78px);
}

.about-copy {
  padding-top: 8px;
}

.about-copy p {
  margin: 0 0 22px;
  color: #59665f;
  font-size: 14px;
  line-height: 1.9;
}

.about-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
}

.about-copy .inline-link {
  margin-top: 8px;
}

.feature-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.feature-grid article {
  padding: 26px clamp(18px, 2.4vw, 38px) 0;
  border-right: 1px solid var(--line);
}

.feature-grid article:first-child {
  padding-left: 0;
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
}

.feature-symbol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
}

.feature-symbol .visual-icon {
  width: 30px;
  height: 30px;
}

.feature-grid h3 {
  min-height: 50px;
  margin: 25px 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.section-courses {
  background: var(--green);
  color: white;
}

.courses-heading {
  margin: 70px 0 85px;
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 9vw;
}

.courses-heading p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}

.course-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.course-row {
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 68px minmax(220px, 0.8fr) 1fr 46px;
  align-items: center;
  gap: 28px;
  transition: background 180ms ease;
}

.course-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.course-number {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.course-marker {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.course-marker .visual-icon {
  width: 29px;
  height: 29px;
  color: var(--gold-light);
}

.course-title h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 400;
}

.course-title span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.course-row p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.course-row > a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.course-row > a .whatsapp-icon {
  width: 18px;
  height: 18px;
}

.course-row > a:hover {
  background: var(--gold-light);
  color: var(--green-deep);
}

.section-pricing {
  background: var(--ivory);
}

.pricing-heading {
  margin: 70px 0 58px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 9vw;
}

.pricing-intro > p {
  max-width: 530px;
  margin: 0 0 28px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}

.region-switcher {
  display: flex;
  border: 1px solid var(--line);
}

.region-switcher button {
  flex: 1;
  min-height: 43px;
  padding: 9px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.region-switcher button:last-child {
  border-right: 0;
}

.region-switcher button:hover,
.region-switcher button.is-active {
  background: var(--green);
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.price-card {
  min-height: 430px;
  padding: clamp(25px, 2.7vw, 40px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255, 255, 255, 0.35);
}

.price-card:last-child {
  border-right: 0;
}

.price-card.is-popular {
  background: var(--green);
  color: white;
  box-shadow: 0 24px 50px rgba(12, 47, 38, 0.14);
  transform: translateY(-8px);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 11px;
  background: var(--gold-light);
  color: var(--green-deep);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-name {
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--gold);
}

.is-popular .plan-icon {
  color: var(--gold-light);
}

.is-popular .plan-name {
  color: var(--gold-light);
}

.price {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
}

.is-popular .price {
  color: white;
}

.price > span {
  margin: 9px 4px 0 0;
  color: var(--gold);
  font-size: 18px;
}

.price strong {
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-period {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-popular .price-period {
  color: rgba(255, 255, 255, 0.58);
}

.price-rule {
  height: 1px;
  margin: 26px 0 19px;
  background: var(--line);
}

.is-popular .price-rule {
  background: rgba(255, 255, 255, 0.18);
}

.price-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
}

.price-card p::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}

.is-popular p {
  color: rgba(255, 255, 255, 0.68);
}

.price-card > a {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > a .whatsapp-icon,
.sunday-plan > a .whatsapp-icon {
  width: 17px;
  height: 17px;
}

.is-popular > a {
  color: var(--gold-light);
}

.special-plans,
.sunday-plan {
  margin-top: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
  display: grid;
  align-items: center;
}

.special-plans {
  grid-template-columns: 1.4fr repeat(3, 0.65fr) 52px;
}

.special-plan-heading,
.special-price {
  min-height: 94px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-plan-heading > span,
.sunday-plan > div > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.special-plan-heading p,
.sunday-plan p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.special-price > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-price strong,
.sunday-plan > strong {
  margin-top: 8px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.special-price small,
.sunday-plan small {
  margin-left: 3px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.special-plans > a {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.special-plans > a .whatsapp-icon {
  width: 18px;
  height: 18px;
}

.special-plans > a:hover {
  background: var(--green);
  color: var(--gold-light);
}

.sunday-plan {
  grid-template-columns: 1fr 0.32fr auto;
}

.sunday-plan > div,
.sunday-plan > strong,
.sunday-plan > a {
  min-height: 85px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sunday-plan > strong {
  margin: 0;
}

.sunday-plan > a {
  border-right: 0;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sunday-plan > a:hover {
  background: rgba(18, 63, 50, 0.06);
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.process-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
}

.process-heading > p {
  max-width: 430px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.steps {
  border-top: 1px solid var(--line);
}

.steps article {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
}

.steps article > .step-symbol {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  position: relative;
}

.step-symbol .visual-icon {
  width: 20px;
  height: 20px;
}

.step-symbol small {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  position: absolute;
  right: -8px;
  bottom: -8px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-style: italic;
}

.steps h3 {
  margin: 0 0 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.steps p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.family-banner {
  min-height: 390px;
  padding: clamp(60px, 7vw, 100px) clamp(20px, 7.2vw, 110px);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr 0.55fr;
  align-items: center;
  gap: 6vw;
}

.family-ornament {
  width: 126px;
  height: 170px;
  border: 1px solid var(--gold);
  border-radius: 60px 60px 4px 4px;
  display: grid;
  place-items: center;
  background: var(--green);
  box-shadow: 12px 12px 0 rgba(199, 151, 67, 0.15);
}

.family-ornament span {
  color: var(--gold-light);
  font-family: "Times New Roman", serif;
  font-size: 52px;
}

.overline {
  color: var(--green-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.family-banner h2 {
  max-width: 760px;
  margin-top: 20px;
  line-height: 1.05;
}

.family-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #4f5d55;
  font-size: 17px;
  line-height: 1.45;
}

.family-points > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9vw;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading > p {
  max-width: 340px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-heading > p a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-heading > p a .whatsapp-icon {
  width: 15px;
  height: 15px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 83px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.faq-toggle {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 240ms ease,
    opacity 240ms ease;
}

.faq-answer p {
  overflow: hidden;
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer p {
  padding: 0 60px 30px 0;
}

.trial-section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 7.2vw, 110px);
  background: var(--green-deep);
  color: white;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
}

.trial-intro h2 {
  max-width: 690px;
  font-size: clamp(46px, 5vw, 76px);
}

.trial-intro > p {
  max-width: 520px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.75;
}

.trial-whatsapp {
  margin: -15px 0 35px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(224, 189, 116, 0.45);
  padding-bottom: 7px;
}

.trial-whatsapp .whatsapp-icon {
  width: 18px;
  height: 18px;
}

.trial-note {
  max-width: 470px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
}

.trial-note > span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.trial-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.trial-form {
  padding: clamp(26px, 4vw, 54px);
  background: #fffdf7;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trial-form label {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(20, 38, 31, 0.24);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 11px 0 13px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.trial-form textarea {
  resize: vertical;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  border-color: var(--gold);
}

.trial-form input::placeholder,
.trial-form textarea::placeholder {
  color: #9ba39e;
}

.form-fineprint,
.form-status {
  margin: 12px 0 0;
  color: #7a857f;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 15px;
  color: var(--green-soft);
  font-weight: 700;
}

footer {
  padding: 70px clamp(20px, 7.2vw, 110px) 28px;
  background: #081f19;
  color: white;
}

.footer-main {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  align-items: start;
  gap: 6vw;
}

.brand-footer .brand-copy {
  color: white;
}

.footer-main > p {
  max-width: 360px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.footer-email {
  justify-self: end;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  border-bottom: 1px solid rgba(224, 189, 116, 0.5);
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-email .whatsapp-icon {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.floating-whatsapp {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #25d366;
  color: #082e1c;
  box-shadow: 0 12px 32px rgba(8, 46, 28, 0.25);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(8, 46, 28, 0.32);
}

.floating-whatsapp .whatsapp-icon {
  width: 22px;
  height: 22px;
}

.reveal {
  animation: reveal-up 700ms ease both;
}

.reveal-delay {
  animation-delay: 130ms;
}

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

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 45px;
  }

  .hero-art {
    min-height: 500px;
  }

  .lesson-card {
    right: -20px;
  }

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

  .feature-grid article {
    padding: 28px;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:nth-child(2) {
    border-right: 0;
  }

  .feature-grid article:first-child,
  .feature-grid article:nth-child(3) {
    padding-left: 0;
  }

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

  .price-card {
    border-bottom: 1px solid var(--line);
  }

  .price-card:nth-child(2) {
    border-right: 0;
  }

  .price-card:nth-child(3),
  .price-card:nth-child(4) {
    border-bottom: 0;
  }

  .price-card.is-popular {
    transform: none;
  }

  .special-plans {
    grid-template-columns: 1.25fr repeat(3, 0.7fr) 45px;
  }

  .family-banner {
    grid-template-columns: 120px 1fr;
  }

  .family-points {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .announcement > span:not(:first-child) {
    display: none;
  }

  .announcement {
    justify-content: space-between;
  }

  .announcement a {
    margin-left: 10px;
  }

  .site-header {
    height: 76px;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 32;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 31;
    inset: 76px 0 auto;
    padding: 36px 24px 46px;
    background: var(--paper);
    box-shadow: 0 24px 40px rgba(12, 47, 38, 0.14);
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-130%);
    visibility: hidden;
    transition:
      transform 260ms ease,
      visibility 260ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav > a {
    padding: 8px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-art {
    min-height: 540px;
    width: min(100%, 560px);
    justify-self: center;
  }

  .about-grid,
  .courses-heading,
  .pricing-heading,
  .process-grid,
  .faq-grid,
  .trial-section {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .pricing-heading,
  .process-grid,
  .faq-grid,
  .trial-section {
    gap: 55px;
  }

  .about-copy {
    max-width: 650px;
  }

  .course-row {
    grid-template-columns: 48px minmax(190px, 0.8fr) 1fr 42px;
    gap: 18px;
  }

  .special-plans {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .special-plan-heading {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .special-price:nth-of-type(4) {
    border-right: 0;
  }

  .special-plans > a {
    display: none;
  }

  .sunday-plan {
    grid-template-columns: 1fr 0.4fr;
  }

  .sunday-plan > strong {
    border-right: 0;
  }

  .sunday-plan > a {
    grid-column: 1 / -1;
    min-height: 60px;
    border-top: 1px solid var(--line);
    justify-content: space-between;
  }

  .faq-heading {
    position: static;
  }

  .trial-intro {
    max-width: 730px;
  }

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

  .footer-email {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .announcement {
    min-height: 34px;
    padding: 8px 16px;
    gap: 8px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .announcement a {
    gap: 5px;
    white-space: nowrap;
  }

  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .site-nav {
    inset: 72px 0 auto;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: 0.18em;
  }

  .hero {
    padding: 44px 18px 68px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-assurances {
    margin-top: 32px;
    padding-top: 20px;
    gap: 12px 18px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-art {
    min-height: 370px;
  }

  .arch {
    width: min(86vw, 330px);
  }

  .arch-inner {
    padding: 40px 28px;
  }

  .arabic {
    font-size: 30px;
  }

  .pattern-one {
    right: -80px;
  }

  .lesson-card {
    min-width: 0;
    width: min(86vw, 315px);
    right: 50%;
    bottom: 8px;
    transform: translateX(50%);
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .trust-strip > div {
    min-height: 132px;
    padding: 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip > div:nth-child(3),
  .trust-strip > div:nth-child(4) {
    border-bottom: 0;
  }

  .trust-strip > div:nth-child(3) {
    padding-left: 14px;
  }

  .trust-strip strong {
    font-size: 19px;
  }

  .section h2,
  .family-banner h2 {
    font-size: clamp(37px, 10.5vw, 48px);
    line-height: 1.06;
  }

  .section {
    padding: 70px 18px;
  }

  .about-grid,
  .courses-heading,
  .pricing-heading,
  .process-grid,
  .faq-grid {
    margin-top: 46px;
  }

  .feature-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .feature-grid article:first-child,
  .feature-grid article:nth-child(3) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .feature-grid h3 {
    min-height: 0;
    margin: 18px 0 12px;
    font-size: 21px;
  }

  .feature-grid p {
    font-size: 15px;
    line-height: 1.65;
  }

  .feature-symbol .visual-icon {
    width: 32px;
    height: 32px;
  }

  .courses-heading {
    margin-bottom: 50px;
  }

  .pricing-heading {
    margin-bottom: 38px;
  }

  .region-switcher {
    flex-direction: column;
  }

  .region-switcher button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .region-switcher button:last-child {
    border-bottom: 0;
  }

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

  .price-card,
  .price-card:nth-child(2),
  .price-card:nth-child(3) {
    min-height: 0;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price strong {
    font-size: 58px;
  }

  .price-card:nth-child(4) {
    border-bottom: 0;
  }

  .special-plans {
    grid-template-columns: 1fr;
  }

  .special-plan-heading,
  .special-price,
  .special-price:nth-of-type(3) {
    grid-column: 1;
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .special-price:last-of-type {
    border-bottom: 0;
  }

  .sunday-plan {
    grid-template-columns: 1fr;
  }

  .sunday-plan > div,
  .sunday-plan > strong,
  .sunday-plan > a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sunday-plan > a {
    grid-column: 1;
    border-bottom: 0;
  }

  .course-row {
    padding: 28px 0;
    grid-template-columns: 30px minmax(0, 1fr) 38px;
    gap: 14px;
    align-items: start;
  }

  .course-row p {
    grid-column: 2 / -1;
  }

  .course-row > a {
    grid-column: 3;
    grid-row: 1;
  }

  .family-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    padding: 64px 20px;
  }

  .family-ornament {
    width: 76px;
    height: 96px;
  }

  .family-ornament span {
    font-size: 40px;
  }

  .family-points {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 16px;
  }

  .family-points > span {
    align-items: flex-start;
  }

  .faq-item button {
    font-size: 17px;
  }

  .faq-item.is-open .faq-answer p {
    padding-right: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trial-section {
    padding: 72px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-email {
    grid-column: 1;
  }

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

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    right: 15px;
    bottom: 15px;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp .whatsapp-icon {
    width: 25px;
    height: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
