:root {
  --bg-start: #071a2f;
  --bg-end: #0d2b4a;
  --gold: #d4a24c;
  --text-main: #ffffff;
  --text-soft: #d4dfec;
  --line: rgba(255, 255, 255, 0.035);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(5, 18, 33, 0.72);
  --border: rgba(212, 162, 76, 0.34);
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(160deg, var(--bg-start), var(--bg-end));
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cairo", "Tahoma", "Arial", sans-serif;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.7;
  background: linear-gradient(160deg, var(--bg-start), var(--bg-end));
  position: relative;
}

h1,
h2,
h3,
p,
a,
button,
input,
textarea,
span {
  font-family: "Cairo", "Tahoma", "Arial", sans-serif;
  font-weight: 400;
}

.hero {
  background: linear-gradient(160deg, var(--bg-start), var(--bg-end));
  padding-bottom: 0 !important;
}

.hero.section {
  padding-top: 1rem;
  padding-bottom: 1.8rem !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
}

.top-logo-header {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background: rgba(4, 18, 34, 0.55);
}

.top-logo-wrap {
  display: flex;
  justify-content: center;
}

.top-logo-image {
  width: min(260px, 62vw);
  height: auto;
  display: block;
}

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

.section {
  padding: 4rem 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 45px;
  line-height: 1.22;
  margin-bottom: 1rem;
  font-weight: 400;
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 26, 47, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  direction: ltr;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--text-main);
  text-decoration: none;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  letter-spacing: 0.03em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.45rem;
  font-weight: 400;
}

.btn-gold {
  background: var(--gold);
  color: #1f1610;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #e3b866;
}

.btn-consult {
  font-family: "Cairo", "Tahoma", "Arial", sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.hero-cta {
  border-radius: 6px;
  padding: 0.7rem 2.2rem;
  font-size: 27px;
  line-height: 1.1;
  min-width: 240px;
}

#book.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2.2rem !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  margin: 0 auto !important;
  width: 318px;
  height: 80px;
  min-width: 0;
  text-align: center;
}

.hero-content {
  text-align: center;
}

.hero-content > :last-child {
  margin-bottom: 0;
}

.label-en {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: #f4d7a3;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.highlight {
  color: var(--gold);
}

.highlight-custom {
  color: #e2ac6c;
}

.highlight-white {
  color: #ffffff;
}

.subheadline {
  max-width: 66ch;
  margin-inline: auto;
  color: #ff4d4d;
  margin-bottom: 1.5rem;
}

.video-wrap {
  display: grid;
  justify-items: center;
  margin-bottom: 1.3rem;
}

.video-frame {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section-kicker {
  color: #f2d294;
  margin-bottom: 0.3rem;
}

.testimonials {
  background: #ffffff;
  margin-top: 0;
  padding-top: 1.8rem;
  padding-bottom: 2.8rem;
}

.hero + .testimonials.section {
  margin-top: 0 !important;
}

.testimonials .section-kicker {
  color: #a0732f;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  margin-bottom: 1.3rem;
}

.testimonials h2 {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1.1rem, 4.6vw, 2rem);
  color: #0f2239;
  text-align: center;
}

.testimonials-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.trustpilot-rating {
  display: block;
  width: clamp(68px, 18vw, 140px);
  height: auto;
  flex: 0 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  background: #f8f9fc;
  border: 1px solid #e0e6ef;
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
}

.testimonial-shot {
  width: 100%;
  display: block;
}

.about-consultant {
  background: linear-gradient(160deg, #0a2340, #0d2b4a);
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.about-section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}

.about-consultant-wrap {
  direction: ltr;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.about-image-column,
.about-text-column {
  direction: rtl;
}

.about-image-placeholder {
  min-height: 360px;
  border-radius: 14px;
  border: 1px solid rgba(212, 162, 76, 0.34);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: #d4dfec;
  text-align: center;
  padding: 1rem;
}

.about-consultant-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(212, 162, 76, 0.34);
  display: block;
}

.about-text-column {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 162, 76, 0.34);
  border-radius: 14px;
  padding: 1.35rem;
}

.about-text-column p {
  color: #d4dfec;
  font-size: 1.08rem;
  line-height: 1.95;
  margin-bottom: 1rem;
}

.about-text-column p:last-child {
  margin-bottom: 0;
}

.calendly-section {
  background: linear-gradient(160deg, #0a2340, #0d2b4a);
  padding-top: 1.8rem;
  padding-bottom: 2.8rem;
}

.calendly-wrap h2 {
  margin-top: 0;
  margin-bottom: -2.4rem;
  text-align: center;
  color: #ffffff;
}

.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: 900px;
}

.calendly-placeholder {
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border: 1px solid rgba(212, 162, 76, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
}

.calendly-placeholder p {
  margin: 0;
  color: #d4dfec;
}

.faq {
  background: linear-gradient(180deg, transparent, rgba(1, 8, 18, 0.24));
}

.faq-intro {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel-strong);
  overflow: hidden;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  width: 100%;
  text-align: right;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font: inherit;
  font-weight: 700;
  padding: 0.95rem 1rem;
  cursor: pointer;
  position: relative;
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--gold);
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "−";
}

.accordion-panel {
  padding: 0 1rem 1rem;
}

.accordion-panel p {
  color: var(--text-soft);
  margin: 0;
}

.faq-cta {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.faq-cta p {
  margin: 0;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 0 2rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--text-soft);
}

.footer-wrap nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap a {
  color: #f0cf93;
  text-decoration: none;
}

.footer-wrap a:hover,
.footer-wrap a:focus-visible {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #f0c977;
  outline-offset: 2px;
}

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

  .hero.section {
    padding-top: 1rem;
    padding-bottom: 1.8rem !important;
  }

  .testimonials,
  .about-consultant,
  .calendly-section {
    padding-top: 1.8rem;
    padding-bottom: 2.8rem;
  }

  .about-consultant-wrap {
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.35fr);
  }

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

  .calendly-inline-widget {
    height: 760px;
  }

  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .calendly-inline-widget {
    height: 1550px;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.thank-you-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.thank-you-wrap {
  max-width: 920px;
  text-align: center;
}

.thank-you-title {
  font-family: "Cairo", "Tahoma", "Arial", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  display: grid;
  gap: 0.2rem;
}

.urgent-text {
  color: #ffffff;
  background: #ff3b30;
  font-weight: 400;
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 8px;
  justify-self: center;
  animation: blinkUrgent 1.1s infinite;
}

.blinking-dots {
  display: inline-block;
  margin-right: 0.15rem;
  animation: none;
}

.pending-confirmation {
  font-weight: 700;
}

@keyframes blinkUrgent {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.thank-you-copy {
  color: #d4dfec;
  margin-bottom: 1.2rem;
}

.thank-you-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 162, 76, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  margin: 0 auto 1.2rem;
}

.thank-you-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.confirm-payment-btn {
  margin-bottom: 1.2rem;
}

.thank-you-testimonials {
  margin: 0 0 1.2rem;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: #ffffff;
  border-radius: 0;
  padding: 1rem 1rem 1.2rem;
}

.thank-you-testimonials h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: #0f2239;
  text-align: center;
}

.thank-you-testimonials-box {
  border: 1px solid #e0e6ef;
  border-radius: 14px;
  background: #f8f9fc;
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 1rem;
  width: min(100%, 920px);
  margin-inline: auto;
}

.thank-you-testimonials-box p {
  margin: 0;
  color: #334b63;
}
