/* ==========================================================================
   Orla Byers Hypnotherapy
   1. Tokens  2. Base  3. Layout  4. Components  5. Sections  6. Widget  7. Responsive
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */
:root {
  --navy-900: #041C28;
  --navy-800: #051628;
  --navy-700: #0A2540;
  --blue-700: #0369A1;
  --blue-600: #0284C7;
  --blue-500: #0EA5E9;
  --sky-300: #7DD3FC;
  --teal-400: #42D9B8;
  --text: #0A2540;
  --text-muted: #33506B;
  --text-subtle: #52697F;
  --surface: #FFFFFF;
  --surface-light: #F4F8FB;
  --border: #DCE7F0;
  --border-input: #CAD8E4;
  --white-85: rgba(255, 255, 255, 0.85);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-4: rgba(255, 255, 255, 0.04);

  --gradient-button: linear-gradient(100deg, #0EA5E9 0%, #2BC4B0 100%);
  --gradient-text-light: linear-gradient(90deg, #38BDF8 0%, #42D9B8 100%);
  --gradient-text-dark: linear-gradient(90deg, #0284C7 0%, #0F9488 100%);
  --gradient-trust: linear-gradient(90deg, #60B8E8 0%, #42D9B8 100%);
  --gradient-teal: linear-gradient(135deg, #1ED6C2 0%, #025988 100%);

  --font-display: 'Red Hat Display', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --container: 1200px;
  --container-wide: 1640px;
  --gutter: 40px;
  --section-space: 110px;
  --radius: 16px;
  --radius-pill: 999px;
  --header-height: 140px;
}

/* 2. Base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }

ul, ol { padding: 0; list-style: none; }

a { color: var(--blue-700); }
a:hover { color: #075985; }

button, input, select, textarea { font: inherit; color: inherit; }

.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-gradient {
  background: var(--gradient-text-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient--dark { background-image: var(--gradient-text-dark); }

/* 3. Layout
   ========================================================================== */
.container,
.container-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container { max-width: var(--container); }
.container-wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-space); }
.section--light { background: var(--surface-light); }
.section--dark { background: radial-gradient(ellipse at 50% 0%, var(--navy-700) 0%, var(--navy-800) 70%); color: #FFFFFF; }
.section--darkest { background: var(--navy-900); color: #FFFFFF; }
.section--gradient { background: var(--gradient-teal); color: #FFFFFF; }

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.section-header--center { align-items: center; text-align: center; }
.section-header--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
.section-header--split .section-title { max-width: 640px; }

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

.section-actions { display: flex; justify-content: center; margin-top: 48px; }

/* 4. Components
   ========================================================================== */

/* Typography */
.eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-700);
}
.eyebrow--light { color: var(--sky-300); }

.section-title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.section-title--lg { font-size: 56px; }

.section-lead {
  max-width: 480px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
}

.body-text {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--gradient-button);
  color: #FFFFFF;
  border: 0;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}
.btn--primary:hover { color: #FFFFFF; box-shadow: 0 14px 36px rgba(14, 165, 233, 0.45); }

.btn--ghost { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.08); }

.btn--outline { color: var(--text); border-color: var(--text); }
.btn--outline:hover { color: var(--text); background: rgba(10, 37, 64, 0.05); }

.btn--sm { padding: 13px 24px; }
.btn--lg { padding: 18px 30px; font-size: 18px; }
.btn--block { display: flex; width: 100%; padding-block: 17px; font-size: 17px; }

.btn-group { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.05);
}
.card__icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card__text { font-size: 18px; line-height: 1.55; }
.card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}
.card__label { font-size: 14px; color: rgba(255, 255, 255, 0.65); }

.card--dark {
  padding: 36px;
  background: var(--white-4);
  border: 1px solid var(--white-10);
  box-shadow: none;
}
.card--dark .card__title { color: var(--sky-300); font-size: 28px; }
.card--dark .card__text { color: var(--white-85); }

/* Lists */
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; font-size: 17px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2342D9B8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5l4.5 4.5L17 5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.check-list--blue li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%230EA5E9' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5l4.5 4.5L17 5'/%3E%3C/svg%3E");
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}
.tag {
  padding: 10px 20px;
  font-size: 16px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.inline-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  font-size: 16px;
  color: var(--white-85);
}
.inline-checks li { display: flex; align-items: center; gap: 8px; }
.inline-checks li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2342D9B8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5l4.5 4.5L17 5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Placeholder (content still to come) */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  background: #E6EEF5;
  border: 1px dashed #9FB6CA;
  border-radius: var(--radius);
}

/* Site header */
.site-header { position: relative; z-index: 20; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.site-header__logo img { width: 240px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav__link {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--sky-300); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle svg { fill: none; stroke: #FFFFFF; stroke-width: 1.8; stroke-linecap: round; }

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 16px 80px;
  flex-wrap: wrap;
  min-height: 52px;
  padding: 12px 58px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  background: var(--gradient-trust);
}
.trust-bar__item { display: flex; align-items: center; gap: 10px; }
.trust-bar__icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.08);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 15px; font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 17px;
  background: #F9FBFD;
  border: 1px solid var(--border-input);
  border-radius: 12px;
}
.form-field textarea { resize: vertical; }
.form-field :focus { outline: 2px solid var(--blue-500); outline-offset: 1px; }
.form-check { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.form-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--blue-600); }

/* 5. Sections
   ========================================================================== */

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #FFFFFF;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(90deg, rgba(5, 22, 40, 0.55) 0%, rgba(5, 22, 40, 0.3) 40%, rgba(5, 22, 40, 0) 60%),
    linear-gradient(180deg, rgba(5, 22, 40, 0.6) 0%, rgba(5, 22, 40, 0) 20%),
    url("../images/hero-background.jpg");
  background-size: auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-bottom: 40px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero__lead {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.hero__zoom { width: 120px; height: auto; opacity: 0.7; }
.hero__media { position: relative; }
.hero__image {
  position: absolute;
  right: calc(var(--gutter) * -1);
  bottom: 0;
  width: calc(100% + 100px);
  max-width: none;
  height: auto;
  max-height: 92%;
  object-fit: contain;
  object-position: right bottom;
}

/* Intro */
.intro { text-align: center; }
.intro__title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.intro__text {
  max-width: 860px;
  margin: 28px auto 0;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* About */
.about__inner { display: flex; align-items: center; gap: 88px; }
.about__content { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.about__content .btn-group { margin-top: 8px; }
.about__media { flex: 0 0 580px; aspect-ratio: 1; }

/* Steps */
.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--gradient-button);
  border-radius: 50%;
}
.step .card__text { color: var(--text-muted); }

/* Testimonials */
.testimonial { gap: 20px; color: var(--text); }
.testimonial__quote { font-size: 19px; line-height: 1.55; }
.testimonial__name { font-size: 16px; font-weight: 600; color: var(--blue-700); }


/* Page header (inner pages) */
.page-header {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(90deg, rgba(5, 22, 40, 0.75) 0%, rgba(5, 22, 40, 0.45) 55%, rgba(5, 22, 40, 0.2) 100%),
    url("../images/hero-background.jpg");
  background-size: cover;
  background-position: center;
}
.page-header__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-block: 64px 120px;
}
.page-header__title {
  max-width: 1000px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.page-header__lead {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

/* Page hero (About page) */
.hero--page { min-height: 760px; }
.hero--page .hero__title { font-size: 88px; }

/* Split layout: text + media */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 88px;
}
.split__content { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.split__media { aspect-ratio: 1; width: 100%; }
.split--top { align-items: start; }

/* Video feature */
.video-feature {
  overflow: hidden;
  background: #000000;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.video-feature__player { width: 100%; aspect-ratio: 16 / 9; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-list__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-list__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.feature-list__text { font-size: 16px; color: var(--text-muted); }

/* Pricing + FAQ */
.pricing { display: flex; align-items: flex-start; gap: 32px; }

.price-card {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 44px;
  text-align: center;
  color: var(--text);
  background: var(--surface);
  border-radius: var(--radius);
}
.price-card__title { font-family: var(--font-display); font-size: 32px; font-weight: 600; line-height: 1.2; }
.price-card .check-list { align-self: stretch; margin: 0; text-align: left; }
.price-card__price { font-family: var(--font-display); font-size: 64px; font-weight: 600; line-height: 1; }
.price-card__note { font-size: 15px; color: var(--text-subtle); }
.section--light .price-card { box-shadow: 0 20px 50px rgba(10, 37, 64, 0.08); }

.pricing__details { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; padding-top: 12px; }
.pricing__details .check-list { margin: 0; }

.faq { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.container.faq { max-width: 960px; }
.faq .section-title { font-size: 44px; margin-bottom: 12px; }
.faq__item {
  padding: 24px 28px;
  background: var(--white-4);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--sky-300);
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23FFFFFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s;
}
.faq__item[open] .faq__question::after { transform: rotate(180deg); }
.faq__answer { margin-top: 12px; font-size: 17px; color: var(--white-85); }

/* Call to action */
.cta {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta .container { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.cta__text { max-width: 700px; font-size: 20px; color: var(--white-85); }
.cta .inline-checks { padding-top: 14px; }

/* Contact */
.contact { display: flex; gap: 80px; }
.contact__intro { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.contact__intro .body-text { max-width: 500px; }
.contact-form { flex: 0 0 600px; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 60px 5vw 30px;
  background: var(--navy-900);
  border-top: 1px solid var(--white-10);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2.5fr repeat(4, 1fr);
  gap: 38px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 60px;
}
.site-footer__logo { width: 220px; height: auto; margin-bottom: 16px; }
.site-footer__tagline {
  max-width: 390px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}
.social-links { display: flex; align-items: center; gap: 20px; }
.social-links__link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.social-links__link:hover { color: #1ED6C2; }
.social-links__link svg { width: 22px; height: 22px; fill: currentColor; }

.site-footer__title {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
.site-footer__list li { line-height: 1.4; }
.site-footer__list a {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  transition: color 0.15s;
}
.site-footer__list a:hover { color: #FFFFFF; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__copy { font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__legal a:hover { color: rgba(255, 255, 255, 0.85); }

/* 6. Video widget
   ========================================================================== */
.video-widget {
  position: fixed;
  right: 32px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  transition: transform 0.35s, opacity 0.35s;
}
.video-widget.is-hidden { transform: translateY(160%); opacity: 0; pointer-events: none; }

.video-widget__avatar {
  position: relative;
  width: 80px;
  height: 80px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--gradient-teal);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-widget__avatar:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); }
.video-widget__avatar[aria-expanded="true"] { background: #004A6E; }
.video-widget__avatar video {
  position: absolute;
  top: -15px;
  left: -26px;
  width: 160%;
  max-width: none;
  height: 160%;
  object-fit: cover;
  pointer-events: none;
}
.video-widget__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(30, 214, 194, 0.4);
  animation: widget-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes widget-pulse {
  from { transform: scale(1); opacity: 0.6; }
  to { transform: scale(1.6); opacity: 0; }
}

.video-widget__bubble {
  position: relative;
  max-width: 220px;
  background: #FFFFFF;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: bubble-in 0.4s ease both;
}
.video-widget__bubble[hidden] { display: none; }
.video-widget__bubble::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FFFFFF;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.video-widget__bubble-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 34px 14px 18px;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  color: #111111;
  background: none;
  border: 0;
  cursor: pointer;
}
.video-widget__bubble-body strong { font-weight: 500; }
.video-widget__bubble-body span { font-size: 13px; opacity: 0.85; }
.video-widget__bubble-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  color: #8A8A8A;
  background: none;
  border: 0;
  cursor: pointer;
}

.video-widget__card {
  position: fixed;
  right: 32px;
  bottom: 124px;
  z-index: 9998;
  width: 300px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: card-in 0.3s ease both;
}
.video-widget__card[hidden] { display: none; }
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.video-widget__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--gradient-teal);
}
.video-widget__card-header img { width: 142px; height: auto; }
.video-widget__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.video-widget__close:hover { background: rgba(255, 255, 255, 0.35); }
.video-widget__card-body { padding: 20px; }

.video-widget__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.video-widget__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-widget__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45) 100%);
}
.video-widget__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: transform 0.2s, background 0.2s;
}
.video-widget__play svg { width: 28px; height: 28px; margin-left: 4px; fill: #FFFFFF; }
.video-widget__thumb:hover .video-widget__play { transform: translate(-50%, -50%) scale(1.08); background: rgba(0, 0, 0, 0.45); }

.video-widget__options { display: flex; flex-direction: column; gap: 8px; }
.video-widget__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #004A6E;
  text-decoration: none;
  background: rgba(0, 74, 110, 0.06);
  border-radius: 6px;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.video-widget__option:hover { color: #004A6E; background: rgba(0, 74, 110, 0.12); }
.video-widget__option--primary,
.video-widget__option--primary:hover { color: #FFFFFF; background: var(--gradient-teal); }
.video-widget__option--primary:hover { opacity: 0.9; transform: translateY(-1px); }
.video-widget__option .icon { width: 16px; height: 16px; }

.video-widget__card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 12px;
  color: #6B7280;
  background: #F8F9FA;
  border-top: 1px solid #E8E8E8;
}
.video-widget__card-footer .icon { width: 12px; height: 12px; stroke-width: 2.2; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(4, 12, 20, 0.85);
  border: 0;
  cursor: pointer;
}
.video-modal__player {
  position: relative;
  width: min(960px, 90vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.video-modal__player video { width: 100%; height: 100%; }
.video-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

/* 7. Responsive
   ========================================================================== */
@media (max-width: 1280px) {
  :root { --section-space: 96px; }
  .hero__title { font-size: 84px; }
  .section-title, .intro__title { font-size: 44px; }
  .section-title--lg { font-size: 48px; }
  .cta__title { font-size: 54px; }
  .about__media { flex-basis: 460px; }
  .price-card { flex-basis: 420px; }
  .contact-form { flex-basis: 520px; }
}

@media (max-width: 1024px) {
  :root { --gutter: 32px; --header-height: 100px; --section-space: 80px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 12px);
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--navy-800);
    border: 1px solid var(--white-10);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link { padding: 12px 8px; }
  .site-nav .btn { margin-top: 8px; }

  .hero__body { grid-template-columns: 1fr; }
  .hero__content { padding-block: 24px 0; }
  .hero__title { font-size: 72px; }
  .hero__media { min-height: 420px; }
  .hero__image { right: 50%; width: auto; height: 100%; max-height: none; transform: translateX(50%); }

  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-header--split { flex-direction: column; align-items: flex-start; gap: 16px; }

  .about__inner,
  .pricing,
  .contact { flex-direction: column; align-items: stretch; gap: 48px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-header__title { font-size: 60px; }
  .page-header__body { padding-block: 32px 80px; }
  .hero--page { min-height: 0; }
  .hero--page .hero__title { font-size: 64px; }
  .about__media { flex-basis: auto; width: 100%; max-width: 580px; }
  .price-card,
  .contact-form { flex-basis: auto; }

  .site-footer { padding: 32px 6vw 20px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; --header-height: 80px; --section-space: 64px; }
  body { font-size: 17px; }

  .site-header__logo img { width: 180px; }
  .hero__title,
  .hero--page .hero__title { font-size: 48px; line-height: 1; }
  .feature-list__item { padding: 20px; gap: 16px; }
  .hero__lead { font-size: 18px; }
  .hero__note { font-size: 14px; }
  .hero__zoom { width: 90px; }
  .btn-group .btn { width: 100%; }
  .hero__media { min-height: 340px; }

  .trust-bar { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px var(--gutter); }

  .section-title, .intro__title, .faq .section-title { font-size: 34px; }
  .section-title--lg, .cta__title { font-size: 38px; }
  .intro__title br, .cta__title br { display: none; }
  .intro__text { font-size: 18px; }

  .grid--3,
  .grid--4,
  .form-row { grid-template-columns: 1fr; }
  .page-header__title { font-size: 44px; line-height: 1.02; }
  .page-header__lead { font-size: 18px; }
  .page-header__body { padding-block: 16px 56px; }
  .card, .card--dark, .price-card, .contact-form { padding: 24px; }
  .price-card__price { font-size: 52px; }

  .site-footer__bottom { display: block; padding-top: 20px; text-align: center; border-top: 0; }
  .site-footer__copy, .site-footer__legal { display: inline; font-size: 11px; color: rgba(255, 255, 255, 0.6); }
  .site-footer__legal a { font-size: 11px; color: rgba(255, 255, 255, 0.6); text-decoration: underline; white-space: nowrap; }
  .site-footer__legal { display: flex; justify-content: center; gap: 4px 16px; margin-top: 8px; }

  .video-widget { right: 16px; bottom: 16px; }
  .video-widget__card { right: 16px; left: 16px; bottom: 110px; width: auto; max-height: calc(100vh - 130px); overflow-y: auto; }
}

@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; }
}
