:root {
  --teal: #11b8c4;
  --teal-dark: #0a7b88;
  --sand: #f9fbfb;
  --peach: #fef5ee;
  --ink: #14323a;
  --white: #ffffff;
  --max-width: 1100px;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.12);
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav {
    transition: none !important;
  }
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #11b8c4;
  outline-offset: 2px;
}

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

.page {
  background: #ffffff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #0b343b;
  color: #ffffff;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(9, 53, 60, 0.06);
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

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

.brand-logo {
  display: block;
  max-height: 56px;
}

.brand-logo img {
  display: block;
  max-height: 56px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: rgba(20, 50, 58, 0.7);
}

.nav {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.nav a {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  color: rgba(20, 50, 58, 0.8);
}

.nav a:hover {
  background: rgba(17, 184, 196, 0.1);
  color: var(--ink);
}

.nav .nav-cta {
  background: var(--teal);
  color: #0b1b1e;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.nav .nav-cta:hover {
  background: #10a0aa;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: #12343d;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: #ffffff;
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: #ffffff;
}

.hero {
  background: linear-gradient(180deg, #f3fcfd 0, #ffffff 55%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 4.25rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 36rem;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-quote {
  font-size: 1.02rem;
  max-width: 30rem;
  color: rgba(20, 50, 58, 0.85);
  margin-bottom: 1.5rem;
}

.hero-quote span {
  color: var(--teal);
  font-weight: 600;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(20, 50, 58, 0.8);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 420px;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-card figcaption {
  padding: 0.75rem 1rem 0.9rem;
  font-size: 0.85rem;
  color: rgba(20, 50, 58, 0.85);
}

.about-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-primary {
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--teal);
  color: #0b1b1e;
  font-size: 0.95rem;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #10a0aa;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: 1px solid rgba(9, 53, 60, 0.12);
  background: rgba(233, 251, 251, 0.8);
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  background: #d9f6f7;
  border-color: rgba(9, 53, 60, 0.24);
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(9, 53, 60, 0.06);
  backdrop-filter: blur(12px);
}

.hero-card-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 50, 58, 0.7);
  margin-bottom: 0.4rem;
}

.hero-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.hero-card-list {
  font-size: 0.9rem;
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-card-list li::before {
  content: "•";
  color: var(--teal);
  margin-right: 0.4rem;
}

.section {
  padding: 3.75rem 1.5rem;
}

.section-light {
  background: #ffffff;
  color: #2b2724;
}

.section-peach {
  background: var(--peach);
  color: #2b2724;
}

.section-dark {
  background: #0f3f47;
  color: #f9f7f4;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 0.98rem;
  max-width: 36rem;
  color: rgba(0, 0, 0, 0.72);
}

.section-subtitle-dark {
  color: rgba(249, 247, 244, 0.8);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.card-dark {
  background: #0b1b1e;
  color: #f9f7f4;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-with-image .card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.video-wrap {
  position: relative;
}

.video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 36, 0.35);
  pointer-events: none;
}

.radiology-video {
  width: 100%;
  display: block;
}

.card-with-image .card-body {
  padding: 1.5rem 1.75rem 1.6rem;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card-body {
  font-size: 0.96rem;
  color: rgba(26, 23, 21, 0.9);
}

.card-dark .card-body {
  color: rgba(249, 247, 244, 0.9);
}

.card-body p + p {
  margin-top: 0.75rem;
}

.card-steps {
  position: relative;
  overflow: hidden;
}

.card-steps::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.18;
  background: radial-gradient(circle at top left, #11b8c4, transparent 55%);
  pointer-events: none;
}

.card-steps .card-body {
  position: relative;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(15, 63, 71, 0.4);
}

.step-content h4 {
  font-size: 0.95rem;
  margin: 0 0 0.1rem;
}

.step-content p {
  font-size: 0.9rem;
  margin: 0;
}

.card-footnote {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: rgba(249, 247, 244, 0.8);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.3rem;
  font-size: 0.8rem;
}

.badge {
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.badge-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(3, 35, 40, 0.8);
  color: #f9f7f4;
}

.small-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0.4rem;
}

.bullet-list {
  padding-left: 1.1rem;
  margin: 0;
}

.bullet-list-spaced li + li {
  margin-top: 0.4rem;
}

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

.form-row-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  border-radius: 14px;
  min-height: 120px;
  resize: vertical;
}

.help-text {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.2rem;
}

.help-text-strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.checkbox-row input[type="checkbox"] {
  width: auto;
  border-radius: 6px;
}

.form-actions {
  margin-top: 1.6rem;
}

#form-status {
  margin-top: 0.4rem;
}

.footer {
  background: #0b343b;
  color: rgba(255, 255, 255, 0.8);
  padding: 1.75rem 1.5rem 2.5rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
}

@media (max-width: 880px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 2.4rem;
  }

  .hero-media {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 22, 34, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav a {
    padding: 0.35rem 0.8rem;
    font-size: 1.05rem;
    color: #f4fbfd;
  }

  .nav .nav-cta {
    background: #ffffff;
    color: #12343d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0.5rem;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 2.8rem 1.25rem;
  }

  .hero {
    position: relative;
    overflow: hidden;
    background: none;
    color: #ffffff;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        to right,
        rgba(7, 24, 36, 0.44) 0%,
        rgba(7, 24, 36, 0.22) 42%,
        rgba(7, 24, 36, 0.10) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(7, 24, 36, 0.08) 0%,
        rgba(7, 24, 36, 0.14) 18%,
        rgba(7, 24, 36, 0.34) 45%,
        rgba(7, 24, 36, 0.74) 100%
      ),
      url("../images/dogs.jpeg");
    background-size: cover;
    background-position: 52% 100%;
    background-repeat: no-repeat;
  }

  .hero-inner {
    max-width: none;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    min-height: 360px;
    z-index: 2;
  }

  .hero-media {
    display: none;
  }

  .hero-content {
    position: relative;
    min-height: 360px;
    max-width: none;
    padding: 0;
    z-index: 3;
  }

  .hero-kicker,
  .hero-title,
  .hero-quote,
  .hero-actions {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(84%, 290px);
    text-align: left;
  }

  .hero-kicker {
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f4fbfd;
    font-weight: 700;
    margin: 0;
    text-align: center;
  }

  .hero-title {
    top: 190px;
    max-width: 290px;
    font-size: 1.98rem;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
    text-align: center;
  }

  .hero-title br {
    display: none;
  }

  .hero-quote {
    display: none;
  }

  .hero-quote span {
    color: #1fd6e2;
    font-weight: 600;
  }

  .hero-meta {
    display: none;
  }

  .hero-actions {
    top: 255px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 0;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 220px;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.2;
    font-weight: 500;
  }

  .hero-actions .btn-primary {
    background: linear-gradient(90deg, #00c2de 0%, #16d7d1 100%);
    color: #0b1b1e;
    box-shadow: 0 10px 24px rgba(0, 194, 222, 0.28);
    border: none;
  }

  .hero-actions .btn-ghost {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    color: #4c5963;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
  }

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