:root {
  color-scheme: light;
  --bg: #f2f6ff;
  --surface: #ffffff;
  --ink: #0b1220;
  --muted: #4e5a6e;
  --primary: #0070f6;
  --primary-dark: #0058c2;
  --secondary: #00285c;
  --accent: #0080ff;
  --border: rgba(0, 40, 92, 0.14);
  --shadow: 0 28px 70px rgba(0, 40, 92, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.7rem, 3vw + 1.6rem, 4rem);
}

.dropping-texts {
  display: inline-block;
  min-width: 12ch;
  text-align: left;
  height: 1em;
  vertical-align: -0.15em;
  position: relative;
  color: var(--primary);
  white-space: nowrap;
}

.dropping-texts span {
  font-size: inherit;
  opacity: 0;
  position: absolute;
  font-weight: 700;
  text-shadow: 0 10px 24px rgba(0, 40, 92, 0.18);
  left: 0;
  top: 0;
  white-space: nowrap;
  animation-timing-function: linear;
  animation-fill-mode: both;
}

.dropping-texts span:nth-child(1) {
  animation: heroFade 8s infinite;
}
.dropping-texts span:nth-child(2) {
  animation: heroFade 8s infinite;
  animation-delay: 2s;
}
.dropping-texts span:nth-child(3) {
  animation: heroFade 8s infinite;
  animation-delay: 4s;
}
.dropping-texts span:nth-child(4) {
  animation: heroFade 8s infinite;
  animation-delay: 6s;
}

@keyframes heroFade {
  0%,
  8% {
    opacity: 0;
  }
  16%,
  36% {
    opacity: 1;
  }
  44%,
  100% {
    opacity: 0;
  }
}

h2 {
  font-size: clamp(2rem, 2vw + 1.2rem, 3rem);
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--muted);
}

button {
  font-family: inherit;
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 2.5rem 1.5rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 112, 246, 0.22), transparent 52%),
    radial-gradient(circle at 88% 24%, rgba(0, 128, 255, 0.18), transparent 50%),
    radial-gradient(circle at 20% 82%, rgba(0, 40, 92, 0.12), transparent 48%),
    linear-gradient(135deg, #f6f9ff 0%, #eef3ff 45%, #e7eefb 100%);
  background-size: 160% 160%;
  animation: heroGlow 14s ease-in-out infinite;
  z-index: -2;
}

@keyframes heroGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 10% 10% auto auto;
  width: 260px;
  height: 260px;
  background: rgba(0, 40, 92, 0.16);
  border-radius: 30% 70% 60% 40% / 40% 40% 60% 60%;
  filter: blur(10px);
}

.nav {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 40, 92, 0.25));
}

.hero__content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  margin: 1.2rem 0 2rem;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero__proof img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.trust {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(11, 18, 32, 0.7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__hint {
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 40, 92, 0.18);
}

.card__title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.card__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.card__stats {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.2rem;
}

.stat {
  display: block;
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 600;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 4.5rem 1.5rem;
}

.logo-band {
  padding: 1.5rem 0 0.5rem;
  overflow: hidden;
}

.logo-band__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
  animation: logoSlide 22s linear infinite;
}

.logo-band__row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2rem;
}

.logo-band img {
  height: 46px;
  width: auto;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.8;
}

@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.credibility {
  padding: 2.5rem 1.5rem 1.5rem;
}

.credibility__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.credibility__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.credibility__grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credibility-card {
  background: #fff;
  color: var(--secondary);
  padding: 2rem 1.6rem;
  border-radius: 20px;
  display: grid;
  gap: 0.6rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 40, 92, 0.05);
  transition: 0.3s ease;
}

.credibility-card__value {
  font-size: clamp(2.2rem, 2.6vw + 1rem, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-variant-numeric: tabular-nums;
}

.credibility-card__label {
  font-size: 0.95rem;
  color: var(--muted);
}

.credibility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 112, 246, 0.15);
  border-color: var(--primary);
}

.section--muted {
  background: rgba(255, 255, 255, 0.72);
}

.section--light {
  background: rgba(255, 255, 255, 0.55);
}

.section--soft {
  background: rgba(0, 112, 246, 0.06);
}

.contact-band {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(0, 112, 246, 0.18);
  box-shadow: 0 18px 40px rgba(0, 40, 92, 0.08);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.contact-band__intro h2 {
  margin-bottom: 0.8rem;
}

.contact-band .lead-form {
  box-shadow: none;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__header p {
  margin-top: 1rem;
}

.section__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.section--process {
  background: radial-gradient(circle at top left, rgba(0, 112, 246, 0.18), transparent 55%),
    linear-gradient(135deg, #0b1220 0%, #0f1b2f 55%, #0c1527 100%);
  color: #e8eefc;
}

.section--process h2 {
  color: #f2f6ff;
}

.section--process p {
  color: rgba(232, 238, 252, 0.75);
}

.process__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(242, 246, 255, 0.7);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.carousel--process {
  position: relative;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1.4rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 0.8rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel--process .carousel__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  height: 2px;
  background: rgba(96, 132, 202, 0.35);
  z-index: 0;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__card {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid rgba(130, 164, 230, 0.22);
  box-shadow: 0 18px 36px rgba(5, 12, 25, 0.28);
  display: grid;
  gap: 0.7rem;
  min-height: 180px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
}

.carousel__card h3 {
  font-size: 1.25rem;
  color: #f4f7ff;
}

.carousel__card p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(232, 238, 252, 0.72);
}

.process-card__badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 112, 246, 0.4), rgba(0, 40, 92, 0.45));
  color: #f5f8ff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.carousel__nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(138, 170, 238, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #f2f6ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel__nav:hover {
  transform: translateY(-1px);
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(242, 246, 255, 0.3);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: rgba(242, 246, 255, 0.9);
}

.services__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.services__header p {
  margin-top: 0.8rem;
}

.services-accordion {
  margin-top: 2.5rem;
  border-top: 2px solid rgba(0, 40, 92, 0.6);
}

.accordion-item {
  border-bottom: 2px solid rgba(0, 40, 92, 0.6);
}

.accordion-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Fraunces", serif;
  letter-spacing: -0.015em;
  padding: 1.5rem 0;
  transition: background-color 0.2s ease;
}

.accordion-header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 1.7vw + 1rem, 2.25rem);
  font-weight: 700;
  color: var(--secondary);
  flex: 1;
}

.accordion-header:hover {
  background-color: rgba(0, 112, 246, 0.05);
}

.icon-rotate {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary);
  margin-left: 1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.accordion-item.active .icon-rotate {
  transform: rotate(45deg);
  color: var(--primary);
}

.accordion-content {
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

.accordion-content p {
  padding: 0 0 1.35rem;
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-stack {
  display: flex;
  height: 300px;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 16px;
  box-shadow: -0.6rem 0 2rem rgba(0, 0, 0, 0.2);
  transition: 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

.service-stack__bar {
  position: absolute;
  bottom: 18px;
  height: 6px;
  width: 100%;
  pointer-events: none;
}

.service-stack__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 18px;
}

.service-stack__content {
  position: absolute;
  padding: 20px;
  top: 64px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.service-stack__content .pill-group {
  max-width: 100%;
}

.service-stack .pill-group {
  gap: 0.5rem;
}

.service-stack .pill {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-stack .pill--ink {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
}

.service-stack__emptybar {
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}

.service-stack__filledbar {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent) 100%);
  transition: 0.5s ease-out;
}

.service-stack:hover {
  transform: translateY(-16px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}

.service-stack:hover .service-stack__filledbar {
  width: 100%;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.pill--warm {
  background: rgba(0, 112, 246, 0.12);
  color: var(--secondary);
  border-color: rgba(0, 112, 246, 0.2);
}

.pill--ink {
  background: var(--secondary);
  color: #fff;
}

.service-link {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  padding: 0;
}

.service-link::after {
  content: "→";
  font-size: 1.1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature-card,
.step-card {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.feature-card--solid {
  background: #ecf3ff;
  border: none;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 112, 246, 0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.icon-box--solid {
  background: var(--primary);
  color: #fff;
}

.icon-box--center {
  margin: 0 auto 1rem;
}

.step {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.practice-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards--pain {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-note a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

.glow-card {
  width: 100%;
  min-height: 260px;
  background: var(--secondary);
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.glow-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 140%;
  background-image: linear-gradient(180deg, var(--primary), var(--accent));
  animation: glowSpin 4s linear infinite;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  background: var(--secondary);
}

.glow-card__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem;
  width: 100%;
  display: grid;
  gap: 1rem;
  align-items: start;
}

.glow-card__content h3,
.glow-card__content p {
  color: #fff;
}

.glow-card__content .icon-box {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@keyframes glowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stack-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 220px;
  border-radius: 16px;
  color: #fff;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(0, 40, 92, 0.18);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.stack-card h3,
.stack-card h4 {
  color: #fff;
}

.stack-card p {
  color: rgba(255, 255, 255, 0.85);
}

.stack-card .icon-box,
.stack-card .icon-box--solid {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin: 0 auto 1rem;
}

.stack-card--primary {
  background: var(--primary);
}

.stack-card--secondary {
  background: var(--secondary);
}

.stack-card--accent {
  background: var(--accent);
}

.stack-card--ink {
  background: var(--primary-dark);
}

@media (hover: hover) and (pointer: fine) {
  .cards .stack-card:hover {
    transform: scale(1.05);
  }

  .cards:hover > .stack-card:not(:hover) {
    filter: blur(6px);
    transform: scale(0.98);
  }
}
.swipe-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.swipe-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 40, 92, 0.2);
}

.swipe-dot.is-active {
  background: var(--primary);
}

.practice-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(0, 40, 92, 0.12);
  box-shadow: 0 16px 32px rgba(0, 40, 92, 0.1);
  display: grid;
  gap: 1rem;
}

.practice-card h3 {
  font-size: 1.3rem;
}

.work-section {
  background: rgba(255, 255, 255, 0.55);
}

.work-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.work-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.work-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(0, 40, 92, 0.12);
  box-shadow: 0 16px 32px rgba(0, 40, 92, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.work-card__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 40, 92, 0.1);
  background: linear-gradient(135deg, rgba(0, 40, 92, 0.08), rgba(0, 112, 246, 0.08));
  height: clamp(180px, 20vw, 240px);
  aspect-ratio: 16 / 9;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card h3 {
  font-size: 1.2rem;
}

.work-card p {
  margin: 0;
  font-size: 0.95rem;
}

.practice-card p {
  margin: 0;
  font-size: 0.98rem;
}

.practice-card__media {
  background: linear-gradient(135deg, rgba(0, 40, 92, 0.08), rgba(0, 112, 246, 0.08));
  border-radius: 16px;
  padding: 0.6rem;
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(0, 40, 92, 0.1);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.practice-card__media img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.channel-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}

.channel-card p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

.metrics {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  margin-bottom: 3rem;
}

.metric {
  font-size: 2.2rem;
  color: var(--secondary);
  font-weight: 700;
  display: block;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-variant-numeric: tabular-nums;
}

.metric__label {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial {
  background: #0b1220;
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.testimonial::before {
  content: "Incoming Transmission...";
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  color: var(--primary);
  opacity: 0.8;
}

.testimonial__quote {
  font-size: 1.3rem;
  margin: 1.5rem 0 2rem;
  min-height: 80px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: #e8eefc;
}

.testimonial__author {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial__meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--primary);
  animation: blink 1s infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.offer-card {
  background: linear-gradient(140deg, rgba(0, 128, 255, 0.2), rgba(0, 40, 92, 0.1));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.offer-card h2 {
  margin-bottom: 0.6rem;
}

.offer-list,
.checklist {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.offer-list li,
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
}

.icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  position: relative;
}

.icon--check::after {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}


.offer-card__content {
  display: grid;
  gap: 1.4rem;
}

.offer-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.lead-form {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid rgba(0, 40, 92, 0.16);
  display: grid;
  gap: 1.2rem;
  box-shadow: 0 16px 36px rgba(0, 40, 92, 0.12);
}

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

.form-grid label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 40, 92, 0.2);
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}

.form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 3px solid rgba(0, 112, 246, 0.28);
  border-color: rgba(0, 112, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 112, 246, 0.12);
}

.span-2 {
  grid-column: span 2;
}

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

.faq__item {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
}

.faq__item[aria-expanded="true"] {
  border-color: rgba(0, 112, 246, 0.5);
}

.faq__icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq__item[aria-expanded="true"] .faq__icon {
  transform: rotate(-135deg);
}

.faq__panel {
  display: none;
  padding: 0 1.4rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  margin-top: -0.8rem;
}

.faq__panel p {
  font-size: 0.95rem;
}

.section--cta {
  background: var(--secondary);
  color: #fff;
}

.section--cta p {
  color: rgba(255, 255, 255, 0.8);
}

.cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer {
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid var(--border);
  background: #f7faff;
}

.footer__content {
  display: grid;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer__links {
  display: inline-flex;
  gap: 1.2rem;
  justify-content: center;
}

.footer__links a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer__links a:hover {
  text-decoration: underline;
}

.thank-you {
  min-height: 80vh;
  display: grid;
  place-items: center;
}

.thank-you-card {
  background: var(--surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  display: grid;
  gap: 1.2rem;
}

.thank-you-card h1 {
  margin-bottom: 0.2rem;
}

.btn {
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 44px;
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 112, 246, 0.4);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 112, 246, 0.3);
}

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

.btn--secondary {
  background: #fff;
  color: var(--secondary);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(0, 40, 92, 0.3);
  color: var(--secondary);
}

.btn--call {
  background: linear-gradient(135deg, #051633 0%, #003a8c 50%, #0070f6 100%);
  color: #fff;
  gap: 0.6rem;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 40, 92, 0.28);
}

.btn--call svg {
  width: 18px;
  height: 18px;
}

.btn--call:hover {
  background: linear-gradient(135deg, #041225 0%, #002f6e 50%, #0063db 100%);
  transform: translateY(-1px);
}

.btn--outline:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(0, 40, 92, 0.08);
  color: var(--secondary);
}

.button {
  --black-700: var(--secondary);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform-origin: center;
  padding: 1rem 2rem;
  background-color: transparent;
  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));
  transition: transform var(--transtion);
  min-height: 44px;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--black-700);
  border-radius: var(--border_radius);
  box-shadow:
    inset 0 0.5px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px 0 rgba(0, 0, 0, 0.35),
    0px 4px 10px -4px rgba(0, 0, 0, calc(1 - var(--active, 0))),
    0 0 0 calc(var(--active, 0) * 0.375rem) rgba(0, 112, 246, 0.4);
  transition: all var(--transtion);
  z-index: 0;
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 112, 246, 0.65);
  background-image:
    radial-gradient(at 51% 89%, rgba(0, 128, 255, 0.5) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 88, 194, 0.55) 0px, transparent 50%),
    radial-gradient(at 22% 91%, rgba(0, 128, 255, 0.4) 0px, transparent 50%);
  background-position: top;
  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}

.button:is(:hover, :focus-visible) {
  --active: 1;
}

.button:active {
  transform: scale(1);
}

.button .dots_border {
  --size_border: calc(100% + 2px);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;
  border-radius: var(--border_radius);
  z-index: -10;
}

.button .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);
  width: 100%;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  mask: linear-gradient(transparent 0%, white 120%);
  animation: rotate 2s linear infinite;
}

.button .sparkle {
  position: relative;
  z-index: 10;
  width: 1.75rem;
  color: #fff;
}

.button .sparkle .path {
  fill: currentColor;
  stroke: currentColor;
  transform-origin: center;
}

.button:is(:hover, :focus) .sparkle .path {
  animation: path 1.5s linear 0.5s infinite;
}

.button .sparkle .path:nth-child(1) {
  --scale_path_1: 1.2;
}
.button .sparkle .path:nth-child(2) {
  --scale_path_2: 1.2;
}
.button .sparkle .path:nth-child(3) {
  --scale_path_3: 1.2;
}

.button .text_button {
  position: relative;
  z-index: 10;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 120%
  );
  background-clip: text;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.button--small {
  padding: 0.75rem 1.5rem;
}

.btn--small {
  padding: 0.65rem 1.3rem;
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem 1rem;
  display: none;
  gap: 0.75rem;
  background: rgba(242, 246, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 40, 92, 0.12);
  z-index: 20;
}

.mobile-actions .btn {
  flex: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav__actions {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }


  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
  }

  .hero__actions .button,
  .hero__actions .btn--call {
    width: 100%;
    justify-content: center;
  }

  .hero__actions .button {
    padding: 0.75rem 0.9rem;
  }

  .hero__actions .button .sparkle {
    width: 1.25rem;
  }

  .hero__actions .button .text_button {
    font-size: 0.9rem;
  }

  .hero__actions .btn--call {
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
  }

  .dropping-texts {
    display: block;
    min-width: 0;
    height: 1.1em;
  }

  .card {
    padding: 1.6rem;
  }

  .offer-card {
    padding: 2rem;
  }

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

  .span-2 {
    grid-column: span 1;
  }

  .hero__proof img {
    width: 140px;
  }

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

  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
    scroll-padding: 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    position: relative;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-stack {
    scroll-snap-align: start;
    flex: 0 0 88%;
    min-height: 280px;
  }

  .service-stack__bar {
    display: none;
  }

  .grid--4,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .cards--pain {
    grid-template-columns: 1fr;
  }

  .logo-band img {
    height: 36px;
  }

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

  .practice-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
    scroll-padding: 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    position: relative;
  }

  .practice-grid::-webkit-scrollbar {
    display: none;
  }

  .practice-card {
    scroll-snap-align: start;
    padding: 1.2rem;
    flex: 0 0 88%;
  }

  .swipe-dots {
    display: flex;
  }

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

  .contact-band {
    grid-template-columns: 1fr;
    padding: 1.6rem;
  }

  .practice-card h3 {
    font-size: 1.2rem;
  }

  .practice-card p {
    font-size: 0.95rem;
  }

  .practice-card__media {
    padding: 0.5rem;
  }

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

  .carousel__nav {
    display: none;
  }

  .carousel--process .carousel__track::before {
    left: 0.2rem;
    right: 0.2rem;
  }

  body {
    padding-bottom: 90px;
  }

  .mobile-actions {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-band__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .dropping-texts span {
    animation: none;
    font-size: inherit;
    opacity: 1;
    position: static;
    margin-left: 0;
  }
}
