:root {
  --page-gutter: clamp(28px, 6vw, 92px);
  --navy: #1b2b4b;
  --navy-deep: #111b31;
  --teal: #1a6e6a;
  --teal-bright: #29a39d;
  --ink: #142033;
  --muted: #58667a;
  --cream: #f7f3ed;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(9, 16, 31, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--page-gutter);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  gap: 3px;
  min-width: 218px;
  padding: 8px 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(8, 16, 31, 0.2);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  line-height: 1;
}

.brand-name {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
}

.brand-name span:last-child {
  color: var(--teal);
}

.brand-tagline {
  color: #98a18c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-align: center;
  white-space: nowrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 130px var(--page-gutter) 76px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 42%, rgba(41, 163, 157, 0.2), transparent 34%),
    linear-gradient(135deg, #111b31 0%, #1b2b4b 52%, #102034 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 27, 49, 0.94) 0%, rgba(17, 27, 49, 0.82) 44%, rgba(17, 27, 49, 0.25) 78%),
    url("assets/hero-appointment.png") right center / min(56vw, 720px) auto no-repeat;
  opacity: 0.5;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 13, 25, 0.2), rgba(7, 13, 25, 0.68));
  content: "";
}

.hero-content,
.section-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  max-width: 1160px;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  margin-bottom: 24px;
  max-width: 780px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 650px;
  margin: 0 0 34px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
}

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

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  aspect-ratio: 1023 / 1537;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  position: absolute;
  inset: 9% -12% 7% -4%;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(41, 163, 157, 0.18));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  content: "";
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.button-primary:hover {
  background: #21817c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(4, 12, 24, 0.24);
}

.button-dark:hover {
  background: var(--navy-deep);
  box-shadow: 0 20px 46px rgba(4, 12, 24, 0.3);
}

.section {
  padding: 80px var(--page-gutter);
}

.section-navy {
  background: var(--navy);
}

.section-teal {
  background: var(--teal);
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.audience-section {
  background:
    linear-gradient(135deg, rgba(17, 27, 49, 0.98), rgba(26, 110, 106, 0.9)),
    var(--navy);
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.audience-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.6vw, 42px);
  text-align: left;
}

.audience-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-style: italic;
  line-height: 1.75;
}

.audience-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.94);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.audience-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-bright);
  content: "";
}

.narrow {
  max-width: 800px;
  text-align: center;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(31px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
}

.copy-block {
  display: grid;
  gap: 22px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
}

.copy-block p,
.feature-card p,
.step p,
.split p,
.final-cta p {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  min-height: 100%;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #f3d36b;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-icon svg path:first-child:last-child {
  fill: currentColor;
  stroke: currentColor;
}

.feature-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.25;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
}

.feature-card p + p {
  margin-top: 20px;
}

.video-placeholder {
  position: relative;
  display: grid;
  width: min(100%, 800px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(17, 27, 49, 0.72), rgba(17, 27, 49, 0.72)),
    url("assets/hero-appointment.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.video-placeholder::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.26) 68%);
  content: "";
}

.video-placeholder p {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.play-button svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: currentColor;
}

.demo-video {
  display: block;
  width: min(100%, 800px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}

.portrait-placeholder {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border: 3px solid var(--teal);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.24), transparent 16%),
    linear-gradient(145deg, rgba(41, 163, 157, 0.44), rgba(17, 27, 49, 0.92));
  box-shadow: var(--shadow);
}

.portrait-placeholder span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 88px;
  font-weight: 700;
  font-style: italic;
}

.about-photo {
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 3px solid var(--teal);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.about-copy h2 {
  text-align: left;
}

.about-copy p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
}

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

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

.stat-card {
  padding: 36px 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(27, 43, 75, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 14px;
  text-align: left;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-list summary::marker {
  color: var(--teal-bright);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.step {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.step span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal-bright);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.step p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.split h2 {
  text-align: left;
}

.split p {
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(27, 43, 75, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(20, 32, 51, 0.08);
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  content: "";
}

.final-cta {
  padding: 100px var(--page-gutter);
  background: var(--teal);
  text-align: center;
}

.final-cta p {
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
}

.pricing-line {
  font-size: 16px;
}

.cta-note {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-size: 16px !important;
}

.site-footer {
  padding: 40px var(--page-gutter);
  background: #111111;
  color: var(--white);
  text-align: center;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 3px;
  min-width: 180px;
  padding: 7px 10px 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  text-decoration: none;
}

.footer-brand .brand-name {
  font-size: 24px;
}

.footer-brand .brand-tagline {
  font-size: 8px;
  letter-spacing: 0.3em;
}

.footer-tagline,
.copyright {
  margin: 0;
}

.footer-tagline {
  color: var(--teal-bright);
  font-size: 14px;
  font-style: italic;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.footer-social a,
.footer-email {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

.footer-email {
  font-size: 14px;
  font-style: italic;
}

.copyright {
  color: rgba(255, 255, 255, 0.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

@media (max-width: 820px) {
  :root {
    --page-gutter: 22px;
  }

  .site-header {
    gap: 12px;
    padding: 16px 14px;
  }

  .brand-mark {
    min-width: 150px;
    padding: 7px 8px 8px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-tagline {
    font-size: 7px;
    letter-spacing: 0.25em;
  }

  .social-links {
    gap: 5px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
  }

  .social-links svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: auto;
    padding: 118px 20px 78px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 27, 49, 0.96) 0%, rgba(17, 27, 49, 0.78) 54%, rgba(17, 27, 49, 0.54) 100%),
      url("assets/hero-appointment.png") center bottom / 92vw auto no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 340px);
  }

  .hero-subtitle,
  .section-subtitle,
  .copy-block,
  .final-cta p,
  .split p,
  .about-copy p {
    font-size: 17px;
    line-height: 1.7;
  }

  .section,
  .final-cta {
    padding: 68px 22px;
  }

  .card-grid,
  .steps,
  .split,
  .audience-panel,
  .about-layout,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .split {
    gap: 32px;
  }

  .split h2,
  .audience-panel h2,
  .about-copy h2 {
    text-align: center;
  }

  .audience-panel {
    gap: 30px;
    padding: 30px 22px;
  }

  .audience-panel p {
    text-align: center;
  }

  .audience-list li {
    font-size: 18px;
  }

  .about-layout {
    gap: 38px;
  }

  .portrait-placeholder,
  .about-photo {
    max-width: 240px;
  }

  .video-placeholder p {
    margin-top: 86px;
  }
}

@media (max-width: 480px) {
  .hero::before {
    background-position: center bottom;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

}
