:root {
  --topbar-space: 48px;
  --cream: #fffdf5;
  --navy: #13284b;
  --navy-dark: #0d1d39;
  --leaf: #15934d;
  --leaf-light: #5ac978;
  --gold: #f0be31;
  --muted: #66758a;
  --card: #fff;
  --border: #e7e5da;
  --shadow: 0 8px 30px -12px rgba(24, 43, 74, 0.16);
  --soft-shadow: 0 20px 60px -20px rgba(19, 40, 75, 0.3);
  --offer-shadow: 0 28px 80px -28px rgba(3, 15, 40, 0.7), 0 0 42px -18px rgba(240, 190, 49, 0.65);
  --display: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-top: var(--topbar-space);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}
.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  background: linear-gradient(110deg, #102344, #18305c, #167143);
  color: #fff;
  font-size: 0.875rem;
  box-shadow: 0 6px 18px -14px rgba(3, 15, 40, 0.8);
}
.topbar-content {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
  padding: 7px 0;
}
.topbar strong {
  color: var(--gold);
}
.topbar-cta {
  border-radius: 99px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 15px;
  text-transform: uppercase;
}
.header {
  position: relative;
  z-index: 30;
  background: rgba(255, 253, 245, 0.84);
  border-bottom: 1px solid rgba(231, 229, 218, 0.65);
  backdrop-filter: blur(13px);
}
.nav-content {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.25rem;
  white-space: nowrap;
}
.brand img {
  border-radius: 12px;
}
.brand b {
  color: var(--leaf);
  font-weight: 600;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}
nav a {
  transition: color 0.2s;
}
nav a:hover {
  color: var(--navy);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 25px;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform 0.18s,
    filter 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.15) brightness(1.03);
}
.button-primary {
  background: linear-gradient(115deg, #118344, #28ae62);
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(11, 122, 60, 0.8);
}
.button-secondary {
  border: 1px solid rgba(19, 40, 75, 0.2);
  color: var(--navy);
}
.button-secondary:hover {
  background: var(--navy);
  color: #fff;
}
.hero {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(90, 201, 120, 0.25), transparent 48%),
    radial-gradient(ellipse at 10% 90%, rgba(240, 190, 49, 0.2), transparent 44%),
    linear-gradient(180deg, var(--cream), #faf6e8);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 96px 0 112px;
}
.eyebrow,
.section-label {
  color: var(--leaf);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(21, 147, 77, 0.1);
  padding: 5px 12px;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--leaf);
  animation: dot-pulse 2.4s ease-out infinite;
}
.hero h1,
.section-heading h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}
.hero h1 {
  max-width: 620px;
  margin-top: 20px;
  font-size: clamp(2.55rem, 5vw, 4rem);
  line-height: 1.05;
}
.hero em,
.section-heading em {
  font-style: normal;
  color: var(--leaf);
  background: linear-gradient(transparent 63%, rgba(240, 190, 49, 0.48) 63%);
  padding: 0 0.05em;
}
.hero-description {
  max-width: 575px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-description strong {
  color: var(--navy);
  background: rgba(90, 201, 120, 0.17);
  border-radius: 5px;
  padding: 0.08em 0.22em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  font-size: 0.84rem;
  color: var(--muted);
}
.social-proof p {
  display: flex;
  flex-direction: column;
}
.social-proof strong {
  color: var(--leaf);
}
.social-proof span {
  color: var(--navy);
}
.avatar-stack {
  display: flex;
}
.avatar-stack i {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--navy));
}
.avatar-stack i:first-child {
  margin-left: 0;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: auto;
}
.hero-halo {
  position: absolute;
  inset: -24px;
  border-radius: 40px;
  background: rgba(21, 147, 77, 0.1);
  transform: rotate(2deg);
  animation: halo-breathe 5.5s ease-in-out infinite;
}
.dashboard {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
  animation: gentle-float 5.5s ease-in-out 0.8s infinite;
}
.floating-card {
  position: absolute;
  left: -24px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 240px;
  border-radius: 16px;
  background: var(--card);
  padding: 14px;
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  animation: gentle-float 5.5s ease-in-out 1.2s infinite;
}
.floating-card > span {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240, 190, 49, 0.25);
  color: var(--leaf);
  font-size: 1rem;
  font-weight: 800;
}
.floating-card p {
  display: flex;
  flex-direction: column;
}
.floating-card small {
  color: var(--muted);
  font-size: 0.72rem;
}
.pillars {
  color: #fff;
  background: linear-gradient(140deg, var(--navy), var(--navy-dark));
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 62px 0;
}
.pillars article {
  text-align: left;
}
.pillar-dot {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  border: 1px solid rgba(240, 190, 49, 0.3);
  border-radius: 16px;
  background: rgba(240, 190, 49, 0.14);
}
.pillar-dot:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}
.pillars h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
}
.pillars p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.65;
}
.section {
  padding: 96px 0;
}
.section-muted {
  background: #f3f2ec;
}
.section-heading {
  max-width: 680px;
}
.section-heading.centered {
  margin: auto;
  text-align: center;
}
.section-heading h2 {
  margin-top: 9px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
}
.section-heading > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}
.quote-banner {
  margin-top: 32px;
  border: 1px solid rgba(240, 190, 49, 0.4);
  border-radius: 16px;
  background: linear-gradient(115deg, #fffdf5, #ecf8ef);
  padding: 24px;
  color: var(--navy);
  text-align: center;
  font-size: 1.16rem;
}
.quote-banner strong {
  color: var(--leaf);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.audience-card {
  border: 1px solid rgba(21, 147, 77, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}
.audience-card > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.6rem;
}
.audience-card h3 {
  margin-top: 15px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}
.audience-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.access-grid {
  grid-template-columns: repeat(2, 1fr);
}
.section-highlight {
  background: linear-gradient(115deg, #fffdf5, #ecf8ef);
}
.first-lesson {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 52px;
  border: 1px solid rgba(240, 190, 49, 0.42);
  border-radius: 24px;
  background: #fff;
  padding: 42px 48px;
  box-shadow: var(--shadow);
}
.first-lesson h2 {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.first-lesson h2 em {
  color: var(--leaf);
  font-style: normal;
}
.first-lesson-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.first-lesson-copy p + p {
  margin-top: 12px;
}
.feature-line {
  color: var(--navy);
  font-size: 1.12rem;
}
.feature-line strong {
  color: var(--leaf);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.method-grid .step-card {
  padding: 25px 21px;
}
.method-grid .step-card > span {
  font-size: 3rem;
}
.method-grid .step-card h3 {
  font-size: 1.18rem;
}
.method-grid .step-card p {
  font-size: 0.83rem;
}
.audience-columns-wrap {
  max-width: 1000px;
}
.audience-columns-wrap > .section-heading {
  margin: auto;
  text-align: center;
}
.audience-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}
.check-panel {
  border: 1px solid rgba(21, 147, 77, 0.2);
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}
.check-panel-muted {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.58);
}
.check-panel h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}
.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(21, 147, 77, 0.13);
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
}
.cross-list li::before {
  content: "×";
  background: rgba(102, 117, 138, 0.12);
  color: var(--muted);
}
.audience-cta {
  display: flex;
  width: fit-content;
  min-width: 180px;
  margin: 30px auto 0;
}
.content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(231, 229, 218, 0.75);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}
.content-card:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--leaf), var(--gold));
}
.content-card:hover,
.step-card:hover {
  border-color: rgba(21, 147, 77, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.content-card small,
.offer-head small {
  color: var(--leaf);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.content-card h3 {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.2;
}
.content-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 147, 77, 0.12);
  border-radius: 24px;
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow);
  transition:
    transform 0.22s,
    border-color 0.22s,
    box-shadow 0.22s;
}
.step-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--leaf), var(--gold), var(--leaf-light));
}
.step-card > span {
  font-family: var(--display);
  color: rgba(21, 147, 77, 0.3);
  font-size: 3.8rem;
  line-height: 1;
}
.step-card h3 {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
}
.step-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.pricing {
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(21, 147, 77, 0.32), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(240, 190, 49, 0.2), transparent 35%),
    linear-gradient(145deg, #102344, #09152d);
  color: #fff;
}
.section-heading.light {
  max-width: 720px;
}
.section-heading.light .section-label {
  color: var(--leaf-light);
}
.section-heading.light em {
  color: var(--gold);
  background: none;
}
.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.75);
}
.offer-card {
  margin: 48px auto 0;
  max-width: 880px;
  border: 1px solid rgba(240, 190, 49, 0.3);
  border-radius: 24px;
  background: #fff;
  padding: 38px 42px;
  color: var(--navy);
  box-shadow: var(--offer-shadow);
  animation: offer-glow 3.8s ease-in-out infinite;
}
.offer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.offer-head h3 {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}
.offer-head > p {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.offer-head > p span,
.offer-head > p small {
  color: var(--muted);
  font-size: 0.8rem;
}
.offer-head > p strong {
  color: var(--leaf);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1.15;
}
.offer-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.offer-card li {
  display: flex;
  gap: 11px;
  font-size: 0.86rem;
  line-height: 1.45;
}
.offer-card li:before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240, 190, 49, 0.25);
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 800;
}
.offer-cta {
  width: 100%;
  margin-top: 32px;
  padding: 17px;
  font-size: 1.04rem;
}
.offer-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}
.faq-wrap {
  max-width: 850px;
}
.faq-list {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.faq-list details {
  padding: 21px 24px;
}
.faq-list details + details {
  border-top: 1px solid var(--border);
}
.faq-list details[open] {
  background: #f7f7f2;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--leaf);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 44px 0;
}
.footer-content .brand {
  color: #fff;
}
.footer-content p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.6;
}
.hero-enter {
  animation: rise-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.delay-1 {
  animation-delay: 0.08s;
}
.delay-2 {
  animation-delay: 0.16s;
}
.delay-3 {
  animation-delay: 0.24s;
}
.delay-4 {
  animation-delay: 0.32s;
}
.delay-5 {
  animation-delay: 0.4s;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.cta-breathe {
  animation: cta-breathe 2.8s ease-in-out infinite;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}
@keyframes halo-breathe {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(2deg) scale(0.98);
  }
  50% {
    opacity: 0.85;
    transform: rotate(2deg) scale(1.04);
  }
}
@keyframes cta-breathe {
  0%,
  100% {
    box-shadow: 0 14px 34px -14px rgba(11, 122, 60, 0.8);
  }
  50% {
    box-shadow: 0 19px 42px -12px rgba(11, 122, 60, 1);
  }
}
@keyframes dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(21, 147, 77, 0.45);
  }
  55% {
    box-shadow: 0 0 0 7px rgba(21, 147, 77, 0);
  }
}
@keyframes offer-glow {
  0%,
  100% {
    box-shadow: var(--offer-shadow);
  }
  50% {
    box-shadow:
      0 28px 80px -28px rgba(3, 15, 40, 0.7),
      0 0 56px -12px rgba(240, 190, 49, 0.8);
  }
}
@media (max-width: 800px) {
  nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 0 84px;
  }
  .hero-copy {
    order: 0;
  }
  .hero-visual {
    order: 1;
    max-width: 600px;
  }
  .pillars-grid,
  .content-grid,
  .audience-grid,
  .method-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .first-lesson {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .offer-card {
    padding: 30px;
  }
  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.3rem);
  }
}
@media (max-width: 560px) {
  :root {
    --topbar-space: 66px;
  }
  .container {
    width: min(100% - 28px, 1120px);
  }
  .topbar-content {
    gap: 7px;
    font-size: 0.75rem;
  }
  .topbar-cta {
    font-size: 0.62rem;
  }
  .header {
    top: 0;
  }
  .nav-content {
    min-height: 64px;
  }
  .brand > span {
    display: none;
  }
  .hero-grid {
    gap: 42px;
    padding-top: 48px;
  }
  .hero-description {
    font-size: 0.98rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .social-proof {
    gap: 13px;
  }
  .hero-halo {
    inset: -11px;
  }
  .dashboard {
    border-radius: 19px;
  }
  .floating-card {
    bottom: -20px;
    left: 4px;
    max-width: 220px;
    padding: 12px;
  }
  .pillars-grid,
  .content-grid,
  .audience-grid,
  .method-grid,
  .steps-grid,
  .offer-card ul {
    grid-template-columns: 1fr;
  }
  .audience-columns {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    gap: 32px;
    padding: 48px 0;
  }
  .pillars article {
    text-align: center;
  }
  .pillar-dot {
    margin-left: auto;
    margin-right: auto;
  }
  .section,
  .pricing {
    padding: 72px 0;
  }
  .section-heading h2 {
    font-size: 2.1rem;
  }
  .quote-banner {
    padding: 20px;
    font-size: 1rem;
  }
  .first-lesson {
    padding: 28px 22px;
  }
  .content-grid,
  .steps-grid {
    margin-top: 32px;
  }
  .offer-card {
    margin-top: 32px;
    padding: 25px 20px;
  }
  .offer-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .offer-head > p {
    text-align: left;
  }
  .offer-head > p strong {
    font-size: 2.55rem;
  }
  .offer-card ul {
    gap: 12px;
  }
  .faq-list details {
    padding: 19px;
  }
  .footer-content {
    padding: 36px 0;
  }
}
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
