@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, "Inter", sans-serif;
  background: #0a0a0a;
  color: #e8e4df;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* --- Navigation --- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #191919;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  display: block;
  margin: 0;
  vertical-align: middle;
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  background: #c4a87a;
  padding: 8px 20px;
  border-radius: 980px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: #d4bc94;
}

.nav-cta-sub {
  font-weight: 400;
  opacity: 0.6;
}

/* --- Logo frames (dark mode adaptation of apps site) --- */

.logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-frame img {
  display: block;
}

.logo-frame--nav {
  padding: 0;
  margin: 0;
  border-radius: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
}

.logo-frame--hero {
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}

/* --- Hero --- */

.hero {
  margin-top: 40px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 80px;
  background: radial-gradient(ellipse at 50% 0%, #1a1612 0%, #0a0a0a 70%);
}

.hero-logo {
  width: clamp(70px, 9vw, 180px);
  height: auto;
  border-radius: 20px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4a87a;
  margin-bottom: 20px;
}

.headline {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #ffffff;
  max-width: 1200px;
  margin-bottom: 20px;
}

.headline em {
  font-style: normal;
  color: #c4a87a;
}

.subheadline {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: #a09a93;
  max-width: 680px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 980px;
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #c4a87a;
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #d4bc94;
  transform: translateY(-1px);
}

.btn-sub {
  display: block;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 1px;
}


.hero-sub-cta {
  font-size: 15px;
  line-height: 1.5;
  color: #6e6e73;
  max-width: 460px;
  margin-top: 16px;
}

/* --- Sections --- */

.section-wrap {
  width: 100%;
  padding: 110px 0;
}

.section-wrap--alt {
  background: #111111;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

/* --- Objections (card style matching apps site) --- */

.objections {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

.objection {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.objection:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #c4a87a;
}

.objection h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 12px;
}

.objection p {
  font-size: 17px;
  line-height: 1.5;
  color: #a09a93;
}

/* --- Quote block --- */

.quote-block {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin: 0 0 32px;
  border-left: 3px solid #c4a87a;
}

.quote-block p {
  font-size: clamp(16px, 1.6vw, 18px);
  font-style: italic;
  line-height: 1.65;
  color: #c8c2ba;
}

.quote-block cite {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  color: #c4a87a;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
}

.quote-author {
  color: #c4a87a;
}

.quote-author-site {
  font-size: 13px;
  font-weight: 400;
  color: #6e6e73;
}

.quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

/* --- Quote highlights --- */

.highlight {
  color: #c4a87a;
  font-style: italic;
  font-weight: 600;
}

/* --- Price anchor --- */

.price-anchor {
  text-align: center;
  margin-top: 64px;
}

.price-anchor-text {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.4;
  color: #a09a93;
  margin-bottom: 8px;
}

.price-anchor-kicker {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.context-text {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: #a09a93;
  margin-bottom: 12px;
}

.context-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* --- How it works grid (card style matching apps site) --- */

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.how-step {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #c4a87a;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4a87a;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 17px;
  line-height: 1.5;
  color: #a09a93;
}

/* --- Final CTA --- */

.final-cta {
  text-align: center;
  padding: 110px 24px;
  background: radial-gradient(ellipse at 50% 100%, #1a1612 0%, #0a0a0a 70%);
}

.final-cta .section-headline {
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: #a09a93;
  max-width: 680px;
  margin: 0 auto 32px;
}

/* --- Footer --- */

.footer {
  background: #191919;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
}

.footer-legal {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.6;
  margin: 0;
}

/* --- Responsive --- */

@media (max-width: 767px) {
  .hero {
    padding: 40px 20px 60px;
    min-height: auto;
  }

  .section-wrap {
    padding: 80px 0;
  }

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

  .final-cta {
    padding: 80px 20px;
  }

  .quote-block {
    padding: 24px 28px;
  }

  .objection,
  .how-step {
    padding: 28px 24px;
  }
}

/* --- Embedded Booking Calendar --- */

.booking-embed {
  max-width: 700px;
  margin: 0 auto;
}

.booking-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

@media (max-width: 767px) {
  .booking-embed iframe {
    min-height: 500px;
  }
}
