:root {
  --container: 1240px;
  --header-h: 72px;

  --dur-quick: 160ms;
  --dur: 220ms;
  --dur-slow: 320ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted2: #64748b;

  --nav: rgba(255, 255, 255, 0.85);
  --nav-border: rgba(15, 118, 110, 0.12);

  --brand: #0d9488; /* modern teal */
  --brand2: #14b8a6;
  --brand-soft: #e6fffb;
  --hero: #0f766e;
  --hero2: #0ea5a6;

  --surface: #ffffff;
  --surface2: #f8fafc;
  --border: rgba(15, 23, 42, 0.08);

  --shadow-sm: 0 2px 12px rgba(15, 118, 110, 0.08), 0 8px 24px rgba(15, 23, 42, 0.04);
  --shadow: 0 8px 32px rgba(15, 118, 110, 0.12), 0 16px 48px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 118, 110, 0.16), 0 24px 72px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 0 1px rgba(15, 118, 110, 0.08), 0 4px 24px rgba(15, 118, 110, 0.16), 0 12px 42px rgba(15, 118, 110, 0.12);
  --ring: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

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

  * {
    transition: none !important;
  }
}

/* Page-load reveal animation (hero panels) */
.reveal {
  opacity: 0;
  transform: translateY(-18px) scale(0.99);
  filter: blur(6px);
  clip-path: inset(0 0 100% 0 round 18px);
  will-change: transform, opacity, filter;
}

.is-loaded .reveal {
  animation: reveal-in 720ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.is-loaded .reveal--1 {
  animation-delay: 60ms;
}

.is-loaded .reveal--2 {
  animation-delay: 180ms;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.99);
    filter: blur(6px);
    clip-path: inset(0 0 100% 0 round 18px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .is-loaded .reveal {
    animation: none;
  }
}

/* Scroll reveal for panels/cards on the way down */
.reveal-scroll {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition:
    opacity 560ms var(--ease-out),
    transform 560ms var(--ease-out),
    filter 560ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Letter-by-letter reveal (opt-in via [data-seq-text] or automatic on .brand-name) */
.seq-text {
  display: inline-block;
  white-space: nowrap;
}

.seq-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.is-loaded .seq-text span {
  animation: seq-letter-in 560ms var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 22ms);
}

@keyframes seq-letter-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seq-text span {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.sprite-sheet {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body {
  margin: 0;
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(1400px 900px at 15% 10%, rgba(13, 148, 136, 0.08), transparent 65%),
    radial-gradient(1100px 800px at 85% 15%, rgba(20, 184, 166, 0.06), transparent 68%),
    radial-gradient(1200px 900px at 50% 90%, rgba(15, 118, 110, 0.05), transparent 70%),
    linear-gradient(180deg, #fafbfc 0%, #f6fffe 50%, #fafbfc 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3Cpattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 60 0 L 0 0 0 60" fill="none" stroke="%230d9488" stroke-width="0.5" stroke-opacity="0.15"/%3E%3Ccircle cx="0" cy="0" r="1.5" fill="%230d9488" fill-opacity="0.2"/%3E%3Ccircle cx="60" cy="0" r="1.5" fill="%230d9488" fill-opacity="0.2"/%3E%3Ccircle cx="0" cy="60" r="1.5" fill="%230d9488" fill-opacity="0.2"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100%25" height="100%25" fill="url(%23grid)"/%3E%3C/svg%3E');
  background-size: 60px 60px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.4;
  background-image: url('data:image/svg+xml,%3Csvg width="1200" height="800" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3ClinearGradient id="g1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%230d9488;stop-opacity:0.08"/%3E%3Cstop offset="100%25" style="stop-color:%2314b8a6;stop-opacity:0.03"/%3E%3C/linearGradient%3E%3ClinearGradient id="g2" x1="100%25" y1="0%25" x2="0%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%2314b8a6;stop-opacity:0.06"/%3E%3Cstop offset="100%25" style="stop-color:%230d9488;stop-opacity:0.02"/%3E%3C/linearGradient%3E%3C/defs%3E%3Cellipse cx="200" cy="150" rx="320" ry="280" fill="url(%23g1)" opacity="0.6"/%3E%3Cellipse cx="1000" cy="200" rx="380" ry="320" fill="url(%23g2)" opacity="0.5"/%3E%3Cellipse cx="600" cy="650" rx="420" ry="360" fill="url(%23g1)" opacity="0.45"/%3E%3Cpath d="M 100 300 Q 300 250 400 350 T 700 400" stroke="%230d9488" stroke-width="1.5" fill="none" opacity="0.15"/%3E%3Cpath d="M 800 150 Q 900 100 1000 200 T 1100 300" stroke="%2314b8a6" stroke-width="1.5" fill="none" opacity="0.12"/%3E%3C/svg%3E');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: multiply;
}

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

a:hover {
  text-decoration: underline;
}

button,
input,
textarea,
.panel,
.card,
.timeline-item,
.stat {
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    filter var(--dur) var(--ease-out);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 0.95em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--nav);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 24px rgba(15, 118, 110, 0.08),
    0 12px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background-image: url('/images/logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 4px 16px rgba(15, 118, 110, 0.24),
    0 8px 28px rgba(15, 118, 110, 0.14);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.brand-mark:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 6px 20px rgba(15, 118, 110, 0.28),
    0 12px 36px rgba(15, 118, 110, 0.18);
}

.brand-name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.10);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 2px 8px rgba(15, 118, 110, 0.06),
    0 4px 16px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
  position: relative;
}

/* links container (used for mobile dropdown + desktop inline) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav-toggle-lines {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
  margin: 0 auto;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines {
  background: transparent;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.9), rgba(14, 165, 166, 0.7));
}

.nav-toggle-lines::before {
  top: 0;
  box-shadow: 0 5px 0 rgba(15, 118, 110, 0.85);
}

.nav-toggle-lines::after {
  bottom: 0;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  transition:
    transform 240ms var(--ease-out),
    top 240ms var(--ease-out),
    bottom 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    opacity 240ms var(--ease-out);
}

.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition:
    background-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out);
}

.nav-link:hover {
  color: var(--brand);
  background: rgba(15, 118, 110, 0.08);
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.9), rgba(14, 165, 166, 0.6));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
  opacity: 0.9;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
}

.nav-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
}

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--surface2);
  color: var(--muted2);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.02em;
  overflow: hidden;
}

/* Default avatar sprite (signed-out / unknown state) */
.nav-avatar::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-color: currentColor;
  opacity: 0.7;
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22M12 12c2.761 0 5-2.239 5-5S14.761 2 12 2 7 4.239 7 7s2.239 5 5 5zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5z%22/%3E%3C/svg%3E');
  mask-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22%3E%3Cpath d=%22M12 12c2.761 0 5-2.239 5-5S14.761 2 12 2 7 4.239 7 7s2.239 5 5 5zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5z%22/%3E%3C/svg%3E');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* When signed in, hide sprite and restore the original gradient look */
.nav-avatar[data-avatar-state="signed-in"] {
  border-color: rgba(15, 118, 110, 0.16);
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.0)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(20, 184, 166, 0.12));
  color: rgba(15, 23, 42, 0.88);
}

.nav-avatar[data-avatar-state="signed-in"]::before,
.nav-avatar[data-has-photo="true"]::before {
  display: none;
}

.nav-avatar::after {
  content: attr(data-initials);
}

/* Hide initials by default (signed-out / unknown). */
.nav-avatar:not([data-avatar-state="signed-in"])::after {
  content: "";
}

/* No initials when we have a photo */
.nav-avatar[data-has-photo="true"]::after {
  content: "";
}

/* Signed-in but no Google photo -> green outline */
.nav-avatar[data-avatar-state="signed-in"][data-has-photo="false"] {
  border-color: var(--brand2);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

@media (max-width: 760px) {
  .nav {
    gap: 6px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(92vw, 340px);
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(15, 118, 110, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 20;

    opacity: 0;
    transform: translateY(-10px) scale(0.985);
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 240ms var(--ease-out),
      transform 240ms var(--ease-out),
      visibility 0ms linear 240ms;
  }

  .nav[data-open="true"] .nav-links {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition:
      opacity 240ms var(--ease-out),
      transform 240ms var(--ease-out),
      visibility 0ms;
  }

  .nav[data-open="true"] .nav-toggle {
    box-shadow: var(--ring);
  }

  .nav[data-open="true"] .nav-toggle-lines::before {
    top: 5px;
    transform: rotate(45deg);
    box-shadow: none;
  }

  .nav[data-open="true"] .nav-toggle-lines::after {
    bottom: 5px;
    transform: rotate(-45deg);
  }

  .nav-links .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  @media (max-width: 760px) {
    .nav-links {
      transition: none;
    }

    .nav-toggle-lines::before,
    .nav-toggle-lines::after {
      transition: none;
    }
  }
}

.nav-cart-ico {
  width: 18px;
  height: 18px;
}

.nav-cart .cart-count {
  position: absolute;
  top: 4px;
  right: 6px;
  margin-left: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  font-size: 11px;
}

.nav-cta {
  color: #0f172a;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.10), rgba(14, 165, 166, 0.08));
}

.nav-cta:hover {
  background: rgba(15, 118, 110, 0.10);
}

main {
  padding-top: 18px;
}

.section,
.hero {
  scroll-margin-top: 96px;
}


.hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 0 44px 0;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12)),
    linear-gradient(90deg, var(--hero), var(--hero2));
}

/* Homepage hero layout (like reference screenshot): photo background + centered logo + headline */
.hero--home {
  padding: 0;
  min-height: calc(100vh - var(--header-h));
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.72), rgba(14, 165, 166, 0.72)),
    url('images/hero.png?v=20260107-7');
  background-size: cover;
  background-position: center;
}

.hero--home .hero-bg,
.hero--home .hero-bg-overlay,
.hero--home .hero-inner {
  display: none;
}

.hero-home {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 18px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home-card {
  width: min(980px, 100%);
  text-align: center;
  padding: 34px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(10px);
}

@media (min-width: 700px) {
  .hero-home {
    padding: 110px 18px 90px;
  }

  .hero-home-card {
    padding: 44px 34px;
  }
}

.hero-home-logo {
  position: relative;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(-8px) scale(0.96);
  filter: blur(8px);
  opacity: 0;
}

.hero-home-logo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 10px 40px rgba(0, 0, 0, 0.14);
}

.hero-home-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.is-loaded .hero-home-logo {
  animation: hero-logo-in 760ms var(--ease-out) forwards;
  animation-delay: 120ms;
}

.is-loaded .hero-home-logo::after {
  animation: hero-logo-ring 820ms var(--ease-out) forwards;
  animation-delay: 220ms;
}

@keyframes hero-logo-in {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.92);
    filter: blur(10px);
  }
  65% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-logo-ring {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  55% {
    opacity: 0.55;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.25;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home-logo {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-home-logo::after {
    display: none;
  }

  .is-loaded .hero-home-logo {
    animation: none;
  }
}

.hero--home h1 {
  margin: 0;
}

.hero-home-sub {
  margin: 14px auto 0;
  max-width: 74ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 980px) {
  .hero-home-sub {
    font-size: 17px;
  }
}

.hero--home .hero-actions {
  justify-content: center;
}

/* Expertise section (portrait left, text right) */
.expertise {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
}

@media (min-width: 980px) {
  .expertise {
    grid-template-columns: 360px 1fr;
    gap: 34px;
  }
}

.expertise-photo {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.65);
}

.expertise-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.expertise-body h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.expertise-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hero--compact {
  min-height: auto;
  padding: 44px 0 34px 0;
}

@media (min-width: 980px) {
  .hero-inner--single {
    grid-template-columns: 1fr;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/images/sprite-pattern.svg');
  background-size: 520px 520px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.75;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.70), rgba(14, 165, 166, 0.72)),
    radial-gradient(900px 500px at 18% 10%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(0, 0, 0, 0.10), transparent 60%);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 700px) {
  .hero-bg {
    background-size: 420px 420px;
  }
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 26px;
  }
}

/* Homepage hero: image lives inside the main panel next to the headline */
@media (min-width: 980px) {
  .hero--home .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-head {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 980px) {
  .hero-head {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
  }
}

.hero-head-media {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-head-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
}

@media (min-width: 600px) {
  .hero-copy {
    padding: 36px;
  }
}

@media (min-width: 980px) {
  .hero-copy {
    padding: 42px;
    border-radius: 28px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  margin: 0;
}

h1 {
  margin: 18px 0 0 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 900;
}

@media (min-width: 600px) {
  h1 {
    font-size: 46px;
  }
}

@media (min-width: 980px) {
  h1 {
    font-size: 54px;
    line-height: 1.08;
  }
}

.accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 20px 0 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

@media (min-width: 980px) {
  .lead {
    font-size: 19px;
  }
}

.sublead {
  margin: 16px 0 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 980px) {
  .sublead {
    font-size: 17px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.01em;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    filter var(--dur) var(--ease-out);
}

@media (min-width: 980px) {
  .btn {
    padding: 16px 28px;
    font-size: 16px;
  }
}

.btn:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 6px 24px rgba(15, 118, 110, 0.16),
    0 12px 40px rgba(15, 23, 42, 0.12);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.95);
}

/* Buttons are authored for the dark hero by default.
   Inside light panels, flip non-primary buttons to a readable light-surface style. */
.panel .btn:not(.btn-primary),
.section-panel .btn:not(.btn-primary) {
  border-color: var(--border);
  background: var(--surface2);
  color: var(--text);
}

.panel .btn:not(.btn-primary):hover,
.section-panel .btn:not(.btn-primary):hover {
  background: var(--surface);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 600px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  padding: 14px;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.13);
}

.stat-k {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.stat-v {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.hero-media {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  padding: 12px;
}

.hero-media--single {
  padding: 0;
  min-height: 0;
  aspect-ratio: 3 / 2;
  height: auto;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media.panel {
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  background: transparent;
}

/* Remove light-surface panel sheen for image-only hero media */
.hero-media.panel::before,
.hero-media.panel::after {
  display: none;
}

.panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(15, 118, 110, 0.10);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand2) 100%);
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease-out);
}

.panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.panel:hover {
  box-shadow: var(--shadow-glow);
  border-color: rgba(15, 118, 110, 0.18);
}

.panel:hover::before {
  opacity: 1;
}

.panel:focus-within {
  box-shadow: var(--shadow), var(--ring);
}

.panel--note {
  background: #f3fffe;
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.panel-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  letter-spacing: -0.015em;
  font-weight: 800;
  line-height: 1.3;
}

@media (min-width: 980px) {
  .panel-title {
    font-size: 20px;
  }
}

.ico-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(20, 184, 166, 0.08));
  border: 1px solid rgba(15, 118, 110, 0.16);
  color: var(--brand);
  flex: 0 0 auto;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 8px rgba(15, 118, 110, 0.08);
  transition: all var(--dur) var(--ease-out);
}

@media (min-width: 980px) {
  .ico-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
}

.panel:hover .ico-wrap {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(20, 184, 166, 0.12));
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 16px rgba(15, 118, 110, 0.16);
  transform: scale(1.05);
}

.ico {
  width: 24px;
  height: 24px;
  display: block;
}

@media (min-width: 980px) {
  .ico {
    width: 28px;
    height: 28px;
  }
}

.ico {
  width: 19px;
  height: 19px;
  display: block;
}

.media-card--p {
  inset: 18px 18px auto auto;
  width: 40%;
  height: 40%;
}

.media-card {
  margin: 0;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
  position: absolute;
}

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

.media-card--a {
  inset: 18px auto auto 18px;
  width: 62%;
  height: 52%;
}

.media-card--b {
  inset: auto 18px 18px auto;
  width: 58%;
  height: 48%;
}

.media-card--c {
  inset: 118px 26px auto auto;
  width: 46%;
  height: 40%;
}

@media (min-width: 980px) {
  .media-card--p {
    width: 34%;
    height: 34%;
  }
}

@media (min-width: 980px) {
  .hero-media {
    min-height: 520px;
  }

  .hero-media--single {
    min-height: 0;
  }
}

.media-hint {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}

.section {
  padding: 48px 0;
}

@media (min-width: 980px) {
  .section {
    padding: 72px 0;
  }
}

.section-panel {
  border-radius: 32px;
  border: 1px solid rgba(15, 118, 110, 0.10);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 600px) {
  .section-panel {
    padding: 42px 32px;
  }
}

@media (min-width: 980px) {
  .section-panel {
    padding: 56px 48px;
    border-radius: 36px;
  }
}

.section-panel--on-band {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.section--alt {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 54px 0;
  background: linear-gradient(90deg, var(--hero), var(--hero2));
  position: relative;
  overflow: hidden;
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/images/sprite-pattern.svg');
  background-size: 560px 560px;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.section--alt > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  position: relative;
  z-index: 1;
}

.section--alt .section-head h2 {
  color: #ffffff;
}

.section--alt .section-head p {
  color: rgba(255, 255, 255, 0.85);
}

/* If a white panel is used on the teal band, keep text readable (dark) inside the panel. */
.section--alt .section-panel .section-head h2 {
  color: var(--text);
}

.section--alt .section-panel .section-head p {
  color: var(--muted);
}

/* In alt-band sections, panels are white: keep "lead" readable (hero uses white lead by default). */
.section--alt .section-panel .lead {
  color: var(--text);
}

.section-head {
  max-width: 920px;
}

.section-panel > .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-panel > .section-head p {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.025em;
  font-weight: 900;
  line-height: 1.15;
}

@media (min-width: 980px) {
  .section-head h2 {
    font-size: 38px;
  }
}

.section-head p {
  margin: 16px 0 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 720px;
}

@media (min-width: 980px) {
  .section-head p {
    font-size: 18px;
  }
}

.hero .section-head h2,
.hero .section-head p {
  color: inherit;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.note {
  margin-top: 14px;
  padding: 14px;
}

.note h3 {
  font-size: 15px;
}

.note p {
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 860px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 18px;
}

.card.panel {
  padding: 24px;
}

@media (min-width: 980px) {
  .card.panel {
    padding: 28px;
  }
}

.card.panel p {
  margin-top: 14px;
}

/* Stacked layout variant (e.g., shop packages) */
.cards--stack {
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .cards.cards--stack {
    grid-template-columns: 1fr;
  }
}

.product-card {
  cursor: pointer;
}

.product-card:focus-visible {
  outline: none;
  box-shadow: var(--ring), var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.22);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
}

.table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 900;
  background: rgba(248, 250, 252, 0.9);
}

.compare-table tbody th {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  width: 46%;
}

.compare-table td {
  width: 18%;
  text-align: center;
  font-weight: 900;
}

.compare-yes {
  color: var(--brand);
}

.compare-no {
  color: var(--muted2);
  font-weight: 800;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.14);
  border: 1px solid rgba(13, 148, 136, 0.22);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
}

.cart-panel {
  padding: 18px;
}

.cart-head {
  display: grid;
  gap: 6px;
}

.cart-rows {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 860px) {
  .cart-row {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.cart-row-title a {
  font-weight: 900;
  text-decoration: none;
}

.cart-row-title a:hover {
  text-decoration: underline;
}

.cart-row-controls {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: center;
  justify-items: start;
}

@media (min-width: 860px) {
  .cart-row-controls {
    grid-template-columns: 110px 1fr auto;
    justify-items: end;
  }
}

.cart-qty input {
  width: 100%;
}

.cart-row-total {
  font-weight: 900;
}

.cart-remove {
  padding-left: 12px;
  padding-right: 12px;
}

.cart-summary {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cart-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-empty {
  padding: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact form loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  z-index: 50;
}

body.is-loading .loading-overlay {
  display: flex;
}

.loading-box {
  width: min(520px, 100%);
  text-align: center;
}

.loading-spinner {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 4px solid rgba(15, 118, 110, 0.18);
  border-top-color: rgba(15, 118, 110, 0.85);
  margin: 0 auto 12px;
  animation: spin 900ms linear infinite;
}

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

.card h3 {
  font-size: 18px;
}

.card p {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.price {
  margin: 14px 0 0 0;
  font-weight: 900;
  color: var(--text);
}

/* Package cards (shop) */
.card .small {
  margin-top: 10px;
}

.card .bullets {
  margin-top: 12px;
  margin-left: 18px;
}

.card .bullets li {
  margin: 6px 0;
}

@media (min-width: 980px) {
  .card p {
    font-size: 16px;
  }
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

@media (min-width: 860px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 24px;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px;
  min-height: 180px;
}

@media (min-width: 980px) {
  .timeline-item {
    padding: 26px;
    min-height: 200px;
  }
}

.timeline-item.panel {
  border-radius: 18px;
}

.timeline-item.panel:hover {
  box-shadow: var(--shadow-glow);
  border-color: rgba(15, 118, 110, 0.16);
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    transform: translateY(-1px);
    box-shadow: 
      0 2px 8px rgba(15, 118, 110, 0.12),
      0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05) brightness(1.02);
  }

  .stat:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .panel:hover {
    transform: translateY(-3px);
  }

  .timeline-item.panel:hover {
    transform: translateY(-4px);
  }

  /* section-panel: kein Hover-Effekt für große Container-Panels */
}

.t-num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: -0.02em;
  background: rgba(15, 118, 110, 0.10);
  border: 1px solid rgba(15, 118, 110, 0.22);
  color: var(--brand);
  font-size: 12px;
}

.t-body h3 {
  margin: 2px 0 0 0;
}

.t-body .panel-title {
  font-size: 16px;
}

.t-body p {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 860px) {
  .faq {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.faq-item.panel {
  padding: 22px;
  border-radius: 18px;
}

.faq-item {
  display: block;
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .panel-title {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-item .panel-title:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 14px;
}

.faq-item .panel-title span:last-child {
  flex: 1;
}

.faq-item .panel-title::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(15, 23, 42, 0.55);
  border-bottom: 2px solid rgba(15, 23, 42, 0.55);
  transform: rotate(45deg);
  margin-left: 6px;
}

.faq-item[open] .panel-title::after {
  transform: rotate(-135deg);
}

.faq-a {
  padding-top: 10px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.qual-card {
  border-color: rgba(13, 148, 136, 0.26);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 980px) {
  .faq-item p {
    font-size: 15px;
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

@media (min-width: 860px) {
  .about {
    grid-template-columns: 260px 1fr;
    gap: 26px;
  }

  .about.about--no-media {
    grid-template-columns: 1fr;
  }
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-avatar {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  background: #ffffff;
}

@media (max-width: 520px) {
  .about-avatar {
    width: 180px;
    height: 180px;
    border-width: 6px;
  }
}

.about-copy h2 {
  margin-top: 0;
}

.about-text {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.bullets {
  margin: 12px 0 0 18px;
  color: var(--muted);
}

.bullets--checks {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.bullets--checks li {
  position: relative;
  padding-left: 22px;
}

.bullets--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.quote {
  padding: 16px;
}

.quote p {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.quote span {
  display: block;
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 860px) {
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-card {
  padding: 16px;
}

.contact-card.panel,
.contact-form.panel {
  padding: 18px;
}

.contact-card h3 {
  margin: 0;
}

.contact-card p {
  margin: 10px 0 0 0;
  color: var(--muted);
}

.contact-form {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0 10px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
  margin-bottom: 6px;
}

.panel-head-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.panel-title-text {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.panel-head-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}

label {
  display: grid;
  gap: 6px;
}

label span {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  color: #0f172a;
  padding: 11px 12px;
  font-size: 14px;
}

select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  color: #0f172a;
  padding: 11px 12px;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: var(--ring);
}

.form-group {
  border: 1px dashed rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  padding: 12px;
  margin: 0;
}

.form-group legend {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 900;
  color: #0f172a;
}

.option-list,
.checklist {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

@media (min-width: 860px) {
  .checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.option input {
  width: auto;
  margin: 0;
  accent-color: var(--brand);
}

.option span {
  font-size: 14px;
  color: #0f172a;
  font-weight: 700;
}

.small {
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  margin-top: 18px;
  color: var(--muted2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
