:root {
  --navy: #041426;
  --navy-2: #071d36;
  --navy-3: #09284c;
  --gold: #f2b632;
  --gold-2: #ffc84d;
  --blue: #4d82d4;
  --text: #101418;
  --muted: #5b6674;
  --light: #f5f5f5;
  --line: rgba(255, 255, 255, 0.12);
  --card-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 44px rgba(7, 16, 28, 0.16);
  --container: min(1180px, calc(100% - 32px));
}

.hidden {
  display: none !important;
}

p,
div.copy {
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.35;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

svg { width: 1em; height: 1em; fill: currentColor; display: block; }

.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 20, 38, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: min(200px, 44vw);
  object-fit: contain;
  float: left;
  padding: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  /* letter-spacing: 0.01em; */
  text-transform: uppercase;
}

.nav a:not(.btn) {
  position: relative;
  opacity: 0.94;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:not(.btn):hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(72, 134, 224, 0.3), transparent 22%),
    linear-gradient(90deg, rgba(3,15,28,0.98) 0%, rgba(3,18,34,0.96) 36%, rgba(6,24,50,0.8) 100%);
}

.hero__crowd {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3,15,28,0.7), rgba(3,15,28,0.35)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 18px, transparent 18px 140px);
  opacity: .28;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,20,38,1) 0%, rgba(4,20,38,0.95) 35%, rgba(4,20,38,0.56) 64%, rgba(4,20,38,0.9) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 14px;
  padding: 42px 0 14px;
}

.hero__text {
  max-width: 590px;
  padding: 12px 0 32px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5.3vw, 5rem);
  line-height: 0.96;
  /* letter-spacing: -0.04em; */
  text-transform: uppercase;
  font-weight: 900;
}

.hero h1 span { display: block; }
.hero h1 .gold { color: var(--gold); }

.hero__copy {
  margin: 18px 0 0;
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.42;
  color: #e8eef8;
}

.hero__copy strong { color: var(--gold); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: flex-end;
}

.hero__visual img {
  width: min(100%, 610px);
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.42));
}

.hero__note {
  /* position: absolute;
  right: 10px;
  top: 104px;
  width: 190px;
  text-align: left; */
}
.hero__note {
  position: absolute;
  /* right: 10px; */
  /* top: 325px; */
  bottom: 0;
  width: 100%;
  /* width: 200px; */
  text-align: left;
  padding: 15px;
  background-image: linear-gradient(to left, rgba(255, 0, 0, 0), rgb(0, 0, 0));
}

.hero__note p {
  margin: 0 0 8px;
  font-family: "Caveat", cursive;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 0.92;
}

.hero__note span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  position: relative;
}

.XXhero__note span::after {
  content: "";
  display: block;
  width: 88px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 8px;
  transform: rotate(-7deg);
}

.stats-bar {
  background: #050608;
  color: #fff;
  border-top: 2px solid rgba(242, 182, 50, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 12px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
}

.stat strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.12rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: #f3f6fb;
  text-transform: uppercase;
  font-size: 0.84rem;
  line-height: 1.15;
  opacity: 0.95;
}

.stat__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
  border: 2px solid rgba(242, 182, 50, 0.5);
  font-weight: 900;
  font-size: 1.35rem;
}

.stat__icon--google {
  color: #fff;
  font-size: 1.55rem;
  border-color: rgba(255,255,255,0.22);
  background: conic-gradient(#4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.story {
  background:
    linear-gradient(180deg, #f2f2f2 0%, #fcfcfc 100%);
  padding: 18px 0 0;
}

.story__grid {
  display: grid;
  /* grid-template-columns: 1fr 1.18fr; */
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  align-items: center;
}

.story__image {
  position: relative;
  min-height: 200px;
  align-self: stretch;
  display: flex;
  align-items: end;
}

.story__image img {
  width: 100%;
  border-radius: 4px 4px 0 0;
  object-fit: cover;
}

.scribble {
  position: absolute;
  left: 18px;
  top: 6px;
  z-index: 1;
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: #2a59b2;
  transform: rotate(-2deg);
}

.story__content {
  padding: 18px 0;
}

.story__content h2,
.section-heading h2,
.plan__title h2,
.results h2,
.testimonials h2,
.bottom-cta h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.96;
  /* letter-spacing: -0.03em; */
  font-weight: 900;
}

.story__content h2 {
  /* font-size: clamp(2rem, 4vw, 3rem); */
  font-size: 2em;
}

.story__content p {
  margin: 14px 0 0;
  color: #323946;
  font-size: 1.15rem;
  line-height: 1.45;
}

.story__content .highlight {
  color: #315cae;
  font-weight: 800;
}

.offers {
  background:
    linear-gradient(180deg, #041426 0%, #051a30 100%);
  color: #fff;
  padding: 16px 0 40px;
}

.section-heading {
  margin-bottom: 22px;
}

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

.section-heading h2 {
  /* font-size: clamp(2.2rem, 5vw, 3.4rem); */
  font-size: 2em;
}

.section-heading p {
  margin: 6px 0 0;
  text-transform: uppercase;
  color: #b0bfda;
  font-weight: 700;
  /* letter-spacing: 0.04em; */
}

.section-heading--dark p { color: #b5c6e7; }

.cards {
  display: grid;
  gap: 20px;
}

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

.offer-card {
  background:
    linear-gradient(180deg, rgba(10, 38, 73, 0.95) 0%, rgba(7, 30, 61, 0.95) 100%);
  border: 1px solid rgba(104, 154, 228, 0.35);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.offer-card--featured {
  background:
    linear-gradient(180deg, rgba(76, 55, 8, 0.96) 0%, rgba(34, 28, 11, 0.96) 100%);
  border-color: rgba(242, 182, 50, 0.4);
}

.offer-card a.btn {
  /* margin: 0 auto; */
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 200px;
}

.offer-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: var(--gold);
  /* background: rgba(255,255,255,0.05); */
  font-size: 1.25rem;
}

.offer-card h3 {
  /* margin: 0;
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1.02; */
}

.offer-card h3 {
  margin: 0;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.75;
}

.offer-card p {
  margin: 12px 0 16px;
  color: #d2def3;
  font-size: 1.02rem;
  min-height: 92px;
}

.price {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 16px;
}

.plan {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  padding: 24px 0;
}

.plan__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 26px 34px;
}

.plan__title h2 {
  /* font-size: clamp(2.2rem, 4vw, 3.55rem); */
  font-size: 1.5em;
}

.script {
  margin: 10px 0 0;
  font-family: "Caveat", cursive;
  color: #2b61c0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
}

.testimonials .script {
  font-size: 1.75em;
}

.plan .script {
  font-size: 2em;
}

.plan__intro p {
    /* margin: 0;
    font-size: 1em;
    color: #2f3844;
    line-height: 1.2;
    max-width: 640px; */
}

.plan__intro p {
  margin: 0;
  font-size: 1em;
  color: #2f3844;
  line-height: 1.2;
  max-width: 640px;
}

.plan__intro .btn { margin-top: 16px; }

.steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.step__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #5b8fe1;
  color: #fff;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.78), 0 8px 18px rgba(73, 113, 183, 0.2);
  font-size: 2rem;
}

.step--arrow {
  font-size: 2rem;
  color: #727f93;
}

.parent {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
}


.div2 {
  grid-column: span 2 / span 2;
}

.div3 {
  grid-column: span 3 / span 3;
  grid-column-start: 4;
}

.results {
  /* width: var(--container); */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.22fr 0.95fr;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy);
}

.results__text {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,20,38,1) 0%, rgba(5,24,46,0.95) 100%);
  display: flex;
  align-items: center;
  padding: 32px 0;
}

.results__text > .container {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: 0;
  padding-left: clamp(20px, 4vw, 44px);
  padding-right: clamp(20px, 3vw, 34px);
}

.results h2 {
  /* font-size: clamp(2.1rem, 4vw, 3.15rem); */
  font-size: 1.5em;
}

.results__text > .container > p {
  margin: 6px 0 0;
  color: #d6e1f2;
  font-size: 1.12rem;
}

.results__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.result-item__icon {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
  /* margin-bottom: 10px; */
  margin: 0 auto 10px auto;
}

.result-item strong {
  text-align: center;
  color: #fff !important;
}

.result-item__icon svg {
      width: 75px;
        height: 75px;
}

.result-item strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.42rem;
}

.result-item span {
  display: block;
  margin-top: 6px;
  color: #eaf0fa;
}

.results__image {
  background:
    linear-gradient(90deg, rgba(3,9,17,0.05), rgba(3,9,17,0.18)),
    url("beach-man.png") center/cover no-repeat;
}

.testimonials {
  background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
  padding: 22px 0 30px;
}

.testimonials__header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
}

.testimonials h2 {
  /* font-size: clamp(2rem, 4vw, 3rem); */
  font-size: 1.5em;
}

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

.testimonial {
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 22, 36, 0.08);
  display: flex;
  gap: 12px;
}

.testimonial__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7aa3df 0%, #416ebc 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.testimonial p {
  margin: 0;
  color: #27303d;
  font-size: 1rem;
  line-height: 1.42;
}

.testimonial footer {
  margin-top: 10px;
}

.testimonial strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.testimonial span {
  color: #6d7785;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.journey {
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  padding: 18px 0 24px;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journey__item {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}

.journey__icon {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  color: #7a7d83;
  flex: 0 0 auto;
}

.journey__icon svg {
  width: 75px;
  height: 75px;
}

.journey__item h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.journey__item p {
  margin: 6px 0 0;
  color: #424a55;
  font-size: 1rem;
}

.bottom-cta {
  background:
    linear-gradient(90deg, #0d3b89 0%, #0a3277 56%, #113983 56%, #113983 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bottom-cta::after {
  /* content: "";
  position: absolute;
  right: 80px;
  bottom: 12px;
  width: 150px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  transform: rotate(-8deg);
  opacity: 0.9; */
}

.bottom-cta__wrap {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
}

.bottom-cta h2 {
  /* font-size: clamp(1.9rem, 3vw, 2.7rem); */
  font-size: 2em;
}

.bottom-cta p {
  margin: 4px 0 0;
  color: #dce7f8;
  font-size: 1.06rem;
}

.bottom-cta__note {
  margin: 0;
  font-family: "Caveat", cursive;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.6rem) !important;
  line-height: 0.95;
  text-align: right;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  /* letter-spacing: 0.02em; */
  transition: transform .18s ease, filter .18s ease, background .18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn--small {
  min-height: 44px;
  padding-inline: 1.15rem;
  font-size: 0.86rem;
}

.btn--large {
  min-height: 56px;
  padding-inline: 1.4rem;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #161d27;
  box-shadow: 0 10px 24px rgba(242, 182, 50, 0.18);
}

.btn--outline {
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  background: rgba(255,255,255,0.02);
}

.btn--blue {
  background: linear-gradient(180deg, #5990e8 0%, #4174c4 100%);
  color: #fff;
}

@media (max-width: 1100px) {
  .hero__content,
  .story__grid,
  .results,
  .testimonials__header,
  .bottom-cta__wrap {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__note {
    /* right: 0;
    top: 70px; */
  }

  .testimonials__header {
    gap: 16px;
  }

  .bottom-cta__note {
    text-align: left;
  }

  .results__text > .container {
    max-width: none;
    margin-inline: 0;
  }

  .results__image {
    min-height: 320px;
  }
}

@media (max-width: 920px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(4, 20, 38, 0.98);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  }

  .nav.is-open { display: flex; }

  .menu-toggle { display: block; }

  .cards--three,
  .cards--testimonials,
  .journey__grid,
  .stats-grid,
  .results__items,
  .plan__grid {
    grid-template-columns: 1fr;
  }

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

  .step--arrow { display: none; }

  .plan__title { max-width: 420px; }

  .stat {
    min-height: auto;
    padding: 4px 0;
  }

  .hero__content {
    min-height: auto;
    padding-top: 26px;
  }

  .hero__text {
    max-width: none;
    padding-bottom: 10px;
  }

  .hero__visual img {
    width: min(100%, 560px);
  }

  .hero__note {
    width: 160px;
    top: 46px;
  }

  .offer-card p { min-height: 0; }

  .results__text {
    padding-block: 26px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 20px, 1000px);
  }

  .site-header {
    position: sticky;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .hero__actions,
  .bottom-cta__wrap {
    gap: 12px;
  }

  .hero__actions .btn,
  .bottom-cta .btn {
    width: 100%;
  }

  .hero__note {
    position: static;
    width: auto;
    margin-top: -16px;
    margin-left: auto;
    max-width: 220px;
  }

  .hero__visual {
    padding-top: 10px;
  }

  .story,
  .offers,
  .plan,
  .testimonials,
  .journey {
    padding-block: 18px;
  }

  .story__content p,
  .plan__intro p,
  .journey__item p,
  .testimonial p {
    font-size: 1rem;
  }

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

  .step {
    padding: 4px 0;
  }

  .result-item__icon,
  .journey__icon,
  .offer-card__icon,
  .step__icon {
    margin-inline: auto;
  }

  .result-item,
  .journey__item,
  .offer-card,
  .step {
    text-align: center;
  }

  .journey__item {
    flex-direction: column;
    align-items: center;
  }

  .scribble {
    position: static;
    margin-bottom: 8px;
  }

  .bottom-cta::after {
    right: 20px;
    width: 110px;
  }
}
