:root {
  --bg: #f3f5f8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(8, 17, 32, 0.1);
  --text: #07111f;
  --muted: #607086;
  --orange: #ff9a3d;
  --gold: #ffca74;
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
}

@font-face {
  font-family: "Orange Avenue";
  src: url("./font-family/OrangeAvenueDEMO-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Orange Avenue Outline";
  src: url("./font-family/OrangeAvenueOutlineDEMO-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 192, 124, 0.28), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(128, 210, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #fdfefe 0%, var(--bg) 50%, #edf1f6 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

h1 {
  font-family: "Orange Avenue", sans-serif;
  font-weight: 400;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  filter: blur(70px);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.ambient-one {
  top: -8rem;
  left: -10rem;
  background: rgba(255, 154, 61, 0.35);
}

.ambient-two {
  right: -10rem;
  top: 12rem;
  background: rgba(86, 136, 255, 0.18);
}

.container {
  position: relative;
  z-index: 1;
}

.hero-logo {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.hero-logo-link {
  display: flex;
  justify-content: center;
}

.hero-logo-link img {
  width: min(180px, 52vw);
  height: auto;
}

.reviews-card,
.feature-panel,
.apply-panel,
.story-card,
.metric-card,
.hero-image-card,
.glass-note,
.review-quote-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.cta-primary {
  color: #04101b;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 20px 40px rgba(255, 154, 61, 0.28);
  margin-top: 5px;
}

.cta-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(7, 17, 31, 0.08);
}

.hero-section {
  padding-top: 0;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 1rem;
  color: #d8731c;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
}
.success-stories {
  color: #d8731c;
}

.hero-copy h1,
.section-heading h2,
.reviews-card h2,
.apply-header h3,
.reviews-showcase-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.95;
  /* max-width: 12ch; */
}

.hero-copy h1.hero-title {
  font-family: "Orange Avenue", sans-serif;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  font-family: "Orange Avenue", "Syne", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.hero-title-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.03em;
  overflow: hidden;
}

.hero-title-letter {
  display: inline-block;
  font-family: "Orange Avenue", sans-serif;
  color: #d86f1b;
  text-shadow: 0 18px 45px rgba(216, 111, 27, 0.16);
  line-height: 1.03;
}

.hero-title-gap {
  display: inline-block;
  width: 0.28em;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-evenly;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 54px;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 17, 31, 0.1);
  color: #5f6368;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  justify-content: center;
}

.google-reviews-link:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 133, 244, 0.28);
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.1);
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.hero-metrics {
  margin-top: 2.3rem;
}

.metric-card {
  height: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.08);
}

.metric-card strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.media-stack {
  position: relative;
  padding: 1.1rem;
}

.hero-image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(6, 15, 26, 0.96);
  box-shadow: var(--shadow);
}

.hero-image-card img,
.hero-video {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-video {
  transform: scale(1.05);
}

.video-float {
  position: absolute;
  right: -0.5rem;
  bottom: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  border-radius: 24px;
  background: rgba(6, 15, 26, 0.8);
  color: #fff;
  box-shadow: 0 22px 55px rgba(4, 10, 20, 0.34);
}

.play-ring,
.story-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.play-ring {
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, rgba(255, 204, 115, 0.95), rgba(255, 154, 61, 0.9));
}

.play-ring::after,
.story-play::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 204, 115, 0.28);
  animation: pulse-ring 2.3s infinite;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #04101b;
}

.video-float-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.video-float-copy small,
.glass-note,
.story-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.glass-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 72%;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(6, 15, 26, 0.46);
  color: #fff;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.note-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.highlights-section,
.stories-section,
.reviews-section,
.reviews-showcase {
  padding-bottom: 5rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.reviews-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.feature-panel,
.apply-panel,
.reviews-card {
  height: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.feature-panel {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-item:last-child {
  border-bottom: 0;
}

.feature-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 154, 61, 0.12);
  color: #cf6b16;
  font-weight: 800;
}

.feature-item h3,
.story-copy strong {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-item p,
.footer-wrap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.apply-header {
  margin-bottom: 1.5rem;
}

.apply-header h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.02;
  /* max-width: 14ch; */
}

.field-shell {
  position: relative;
}

.floating-label {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  z-index: 2;
  padding: 0 0.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  color: rgba(7, 17, 31, 0.56);
  font-size: 0.96rem;
  font-weight: 600;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left top;
  transition: transform 0.22s ease, color 0.22s ease, font-size 0.22s ease, top 0.22s ease;
}

.form-control,
.form-select {
  min-height: 55px;
  border-radius: 18px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  box-shadow: none;
}

.field-shell .form-control,
.field-shell .form-select {
  padding: 0.55rem 1.25rem 0.55rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 154, 61, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 154, 61, 0.12);
}

.field-shell .form-control::placeholder {
  color: transparent;
}

.field-shell .form-control:focus + .floating-label,
.field-shell .form-control:not(:placeholder-shown) + .floating-label,
.field-shell.is-active .floating-label,
.field-shell-select.is-active .floating-label {
  top: 0;
  color: #cf6b16;
  font-size: 0.78rem;
  transform: translateY(-50%) scale(0.96);
}

.form-submit {
  min-width: 260px;
}

.form-submit {
  position: relative;
}

.form-submit-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(4, 16, 27, 0.22);
  border-top-color: #04101b;
  border-radius: 50%;
  animation: button-spin 0.7s linear infinite;
}

.form-submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.form-submit.is-loading .form-submit-loader {
  display: inline-block;
}

.stories-section .section-heading {
  margin-bottom: 2.4rem;
}

.stories-shell {
  position: relative;
  padding: 0.25rem 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stories-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.stories-meta p,
.stories-meta span {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stories-meta span {
  color: #cf6b16;
  font-weight: 800;
}

.stories-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border-radius: 0;
}

.stories-slider.is-dragging {
  cursor: grabbing;
}

.stories-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(10vw, 90px);
  pointer-events: none;
}

.stories-fade-left {
  left: 0;
  background: linear-gradient(90deg, rgba(240, 244, 248, 0.92), rgba(240, 244, 248, 0));
}

.stories-fade-right {
  right: 0;
  background: linear-gradient(270deg, rgba(240, 244, 248, 0.92), rgba(240, 244, 248, 0));
}

.stories-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: 0.35rem 0;
  will-change: transform;
}

.story-card {
  width: 100%;
  max-width: 360px;
  min-width: min(84vw, 360px);
  height: 100%;
  padding: 0.85rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(7, 17, 31, 0.1);
  border-color: rgba(255, 154, 61, 0.22);
}

.story-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: 24px;
  background: #07111f;
}

.story-visual img,
.story-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(4, 10, 20, 0.34));
  z-index: 1;
}

.story-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.22);
}

.story-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.28rem;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #07111f;
}

.story-copy {
  display: block;
  padding: 1rem 0.15rem 0.35rem;
}

.story-tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 154, 61, 0.08);
  color: #cf6b16;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy small {
  display: block;
  color: var(--muted);
}

.reviews-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.reviews-showcase {
  position: relative;
}

.reviews-showcase-head {
  position: relative;
  z-index: 1;
}

.reviews-showcase-head h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.reviews-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.reviews-kicker-stars {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.star-filled {
  color: #f4b400;
}

.star-half {
  position: relative;
  display: inline-block;
  color: rgba(244, 180, 0, 0.34);
}

.star-half::after {
  content: "★";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  overflow: hidden;
  color: #f4b400;
}

.reviews-kicker-text {
  margin: 0;
  color: #5f6368;
  font-size: clamp(1.4rem, 3vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.reviews-link-wrap {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
  margin-bottom: 2.6rem;
}

.reviews-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid rgba(7, 17, 31, 0.9);
  color: var(--text);
  font-weight: 800;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.reviews-inline-link:hover {
  color: #cf6b16;
  border-color: #cf6b16;
}

.reviews-glow {
  position: absolute;
  left: 50%;
  top: 12rem;
  z-index: 0;
  width: min(100%, 72rem);
  height: 22rem;
  transform: translateX(-50%);
  border-radius: 40px;
  background: linear-gradient(90deg, #44ff9a -0.55%, #44b0ff 22.86%, #8b44ff 48.36%, #ff6644 73.33%, #ebff70 99.34%);
  opacity: 0.2;
  filter: blur(60px);
}

.reviews-grid {
  position: relative;
  z-index: 1;
}

.review-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  height: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.12);
}

.review-stars {
  display: flex;
  gap: 0.18rem;
  color: #fdb241;
  font-size: 1.15rem;
}

.review-quote-card blockquote {
  margin: 0;
  color: #142233;
  font-size: 1.02rem;
  line-height: 1.8;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #07111f;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 154, 61, 0.28);
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person strong {
  font-size: 1rem;
}

.review-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 154, 61, 0.08), rgba(255, 154, 61, 0)),
    #08111d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-bar {
  width: min(100%, 720px);
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-side {
  display: flex;
  align-items: center;
}

.footer-left {
  justify-content: flex-start;
}

.footer-right {
  justify-content: flex-end;
}

.footer-meta-link,
.footer-meta-text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-meta-link:hover {
  color: rgba(255, 204, 115, 0.96);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 154, 61, 0.34);
  box-shadow: 0 16px 32px rgba(7, 17, 31, 0.12);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.footer-note p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.thankyou-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 320px);
  padding-bottom: 4rem;
}

.thankyou-card {
  width: min(100%, 760px);
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.thankyou-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  color: #07111f;
  line-height: 1.5;
}

.thankyou-text {
  max-width: 42ch;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.video-modal.is-open {
  display: flex;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 14, 0.75);
  backdrop-filter: blur(12px);
}

.video-dialog {
  position: relative;
  /* width: min(960px, calc(100vw - 2rem)); */
  width: 50vw;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.video-dialog video {
  width: 100%;
  max-height: 80vh;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-width: 90px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
  }

  .hero-image-card img {
    min-height: 520px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 1.2rem;
  }

  .video-float,
  .glass-note {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 1rem;
  }

  .glass-note {
    background: rgba(6, 15, 26, 0.84);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
  }

  .reviews-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .hero-logo {
    padding-top: 1.2rem;
    padding-bottom: 0.2rem;
  }

  .hero-logo-link img {
    width: min(180px, 48vw);
  }

  .cta-pill,
  .form-submit,
  .google-reviews-link {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    max-width: 10ch;
  }

  .hero-title-line {
    gap: 0.14em;
  }

  .hero-title-gap {
    width: 0.18em;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .metric-card strong {
    font-size: 1.1rem;
  }

  .metric-card span {
    font-size: 0.78rem;
  }

  .hero-image-card img,
  .hero-video {
    min-height: 420px;
  }

  .feature-panel,
  .apply-panel,
  .reviews-card {
    padding: 1.4rem;
    border-radius: 28px;
  }

  .section-heading h2,
  .reviews-card h2,
  .apply-header h3 {
    max-width: none;
  }

  .section-heading h2,
  .reviews-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    line-height: 1.08;
  }

  .apply-header h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .feature-item h3,
  .story-copy strong {
    font-size: 1rem;
  }

  .story-card {
    min-width: min(86vw, 300px);
  }

  .stories-shell {
    padding-top: 0.15rem;
  }

  .stories-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .stories-fade {
    width: 34px;
  }

  .reviews-kicker {
    gap: 0.4rem;
  }

  .reviews-kicker-stars {
    gap: 0.45rem;
    font-size: 1.75rem;
  }

  .reviews-kicker-text {
    font-size: 1.2rem;
  }

  .reviews-showcase-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .review-quote-card {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .review-quote-card blockquote {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .footer-note p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .thankyou-card {
    padding: 2rem 1.25rem;
    border-radius: 28px;
  }

  .thankyou-text {
    font-size: 0.95rem;
  }

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

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .feature-item p,
  .story-copy small,
  .form-label,
  .form-control,
  .form-select {
    font-size: 0.92rem;
  }

  .glass-note {
    padding: 0.95rem 1rem;
    font-size: 0.84rem;
    line-height: 1.55;
    border-radius: 20px;
  }
}

@media (max-width: 600px){
  .video-dialog {
    width: 95%;
  }
  .hero-title-letter {
    font-size: 22px;
  }
}