/* Grundschrift */
:root {
  --summer-sand: #fff4e6;
  --summer-sun: #ffc744;
  --summer-sun-rgb: 255, 199, 68;
  --summer-sun-glow: #ffe7a6;
  --summer-shell: #fffdf8;
  --summer-dawn: #fff3e4;
  --summer-coral: #ff7f61;
  --summer-turquoise: #1dc3d5;
  --summer-lagoon: #1195b6;
  --summer-ink: #10344c;
}

body {
  font-family: 'Outfit', 'Trebuchet MS', sans-serif;
  color: var(--summer-ink);
  background:
    radial-gradient(1200px 620px at 8% -15%, rgba(var(--summer-sun-rgb), 0.26), rgba(var(--summer-sun-rgb), 0) 62%),
    radial-gradient(900px 560px at 92% 18%, rgba(29, 195, 213, 0.16), rgba(29, 195, 213, 0) 70%),
    linear-gradient(180deg, var(--summer-shell) 0%, #f6fdff 56%, #fff7ef 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hauptnavigation: moderne, klar erkennbare Hauptlinks */
.primary-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #1f2937;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.86));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.primary-nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.38rem;
  height: 2px;
  border-radius: 9999px;
  background-color: #2563eb;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav-link:hover,
.primary-nav-link:focus-visible {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
}

.primary-nav-link:hover::after,
.primary-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.primary-nav-link:focus-visible,
.mobile-nav-link:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

.mobile-nav-link {
  display: block;
  padding: 0.8rem 0.85rem;
  border-radius: 0.75rem;
  font-weight: 700;
  color: #1f2937;
  border: 1px solid transparent;
  background-color: transparent;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(219, 234, 254, 0.6));
  transform: translateX(2px);
}

@media (min-width: 768px) and (max-width: 1100px) {
  .primary-nav-link {
    padding: 0.5rem 0.72rem;
    font-size: 0.88rem;
  }
}

/* Aktiver Tab */
.tab-active {
  border-color: #2563EB; /* blue-600 */
  color: #2563EB;
  font-weight: 600;
}

/* FAQ Panels: sanftes Ein-/Ausfahren und seitlicher Abstand */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem; /* px-6 */
}

/* Geöffnetes Panel */
.faq-panel.open {
  max-height: 1000px;
  padding: 1.5rem 1.5rem; /* p-6 */
}

/* Lesbarkeit im Panel */
.faq-panel p {
  line-height: 1.7;
}

/* === Privacy Policy formatting inside modal (DE + EN) === */
#privacy-modal .lang.lang-en a,
#privacy-modal .lang.lang-de a {
  color: #2563eb;                 /* blue-600 */
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
#privacy-modal .lang.lang-en a:hover,
#privacy-modal .lang.lang-de a:hover {
  color: #1d4ed8;                 /* blue-700 */
  text-decoration-thickness: 2px;
}

#privacy-modal .lang.lang-en h2,
#privacy-modal .lang.lang-de h2 {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
  font-weight: 800;               /* extra-bold */
  font-size: 1.5rem;              /* ~text-2xl */
  line-height: 1.25;
  color: #111827;                 /* gray-900 */
  border-top: 1px solid #e5e7eb;  /* gray-200 */
  padding-top: .75rem;
}

#privacy-modal .lang.lang-en h3,
#privacy-modal .lang.lang-de h3 {
  margin-top: 1rem;
  margin-bottom: .25rem;
  font-weight: 700;               /* bold */
  font-size: 1.125rem;            /* ~text-lg */
  line-height: 1.35;
  color: #111827;
}

#privacy-modal .lang.lang-en h4,
#privacy-modal .lang.lang-de h4 {
  margin-top: .75rem;
  margin-bottom: .25rem;
  font-weight: 600;               /* semibold */
  font-size: 1rem;                /* ~text-base */
  color: #111827;
}

#privacy-modal .lang.lang-en p,
#privacy-modal .lang.lang-de p {
  margin: .5rem 0;
  line-height: 1.65;
  color: #374151;                 /* gray-700 */
  overflow-wrap: break-word;
}

#privacy-modal #privacy-content,
#privacy-modal .lang.lang-en,
#privacy-modal .lang.lang-de {
  min-width: 0;
}

#privacy-modal .lang.lang-en ul,
#privacy-modal .lang.lang-de ul,
#privacy-modal .lang.lang-en ol,
#privacy-modal .lang.lang-de ol {
  margin: .5rem 0 .75rem;
  padding-left: 1.25rem;
}
#privacy-modal .lang.lang-en li,
#privacy-modal .lang.lang-de li {
  margin: .25rem 0;
}

#privacy-modal .lang.lang-en blockquote,
#privacy-modal .lang.lang-de blockquote {
  margin: .75rem 0;
  padding-left: .75rem;
  border-left: 3px solid #e5e7eb; /* gray-200 */
  color: #374151;
}

#privacy-modal .lang.lang-en strong,
#privacy-modal .lang.lang-de strong {
  font-weight: 700;
  color: #111827;
}

#privacy-modal .lang.lang-en code,
#privacy-modal .lang.lang-de code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: #f3f4f6;            /* gray-100 */
  padding: .1rem .3rem;
  border-radius: .25rem;
}


/* === Legal Notice (DE + EN) – Typografie === */
#legal-modal .lang.lang-en a,
#legal-modal .lang.lang-de a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#legal-modal .lang.lang-en a:hover,
#legal-modal .lang.lang-de a:hover {
  color: #1d4ed8;
  text-decoration-thickness: 2px;
}

#legal-modal .lang.lang-en h2,
#legal-modal .lang.lang-de h2 {
  margin-top: .5rem;
  margin-bottom: .75rem;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #111827;
}

#legal-modal .lang.lang-en h3,
#legal-modal .lang.lang-de h3 {
  margin-top: 1rem;
  margin-bottom: .25rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
}

#legal-modal .lang.lang-en p,
#legal-modal .lang.lang-de p {
  margin: .25rem 0 .5rem;
  line-height: 1.65;
  color: #374151;
}

/* Definition list für saubere Ausrichtung */
#legal-modal dl { margin: .25rem 0 1rem; }
#legal-modal dt { font-weight: 600; color: #111827; }
#legal-modal dd { margin: 0 0 .5rem; color: #374151; }

/* Dezenter Trenner und Fußnotentext */
#legal-modal hr { border: 0; border-top: 1px solid #e5e7eb; margin: 1rem 0; }
#legal-modal small { color: #6b7280; }

/* === Modal-Größe: auf Inhalt statt Vollhöhe === */
#legal-modal .modal-panel {          /* gib diesem Element die Klasse modal-panel (siehe Schritt 2) */
  width: min(92vw, 720px);
  max-height: 85vh;
  min-height: auto !important;
}
#legal-modal .modal-body {           /* Container um den Text */
  overflow-y: auto;
}


/* Windy Fullscreen Sizing */
#windy-wrapper:fullscreen,
#windy-wrapper:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-width: 0;
  border-radius: 0;
}
#windy-wrapper:fullscreen #windy-iframe,
#windy-wrapper:-webkit-full-screen #windy-iframe {
  width: 100vw;
  height: 100vh;
}



.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(156, 163, 175, 0.35);
  color: #9ca3af;
  background: rgba(17, 24, 39, 0.45);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-icon-link:hover {
  color: #f3f4f6;
  border-color: rgba(243, 244, 246, 0.55);
  background: rgba(31, 41, 55, 0.9);
  transform: translateY(-1px);
}

.social-icon-link:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .video-embed-poster,
  .video-embed-play {
    transition: none;
  }
}

/* Cookie consent lock screen: apply a softer, modern focus effect while consent dialog is active */
body > *:not(script) {
  transition: filter 260ms ease, transform 260ms ease, opacity 260ms ease;
}

body.cookie-consent-required {
  position: relative;
}

body.cookie-consent-required::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 105;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.48) 0%, rgba(15, 23, 42, 0.62) 100%);
}

body.cookie-consent-required > *:not(#cookie-modal):not(script) {
  filter: saturate(0.75) brightness(0.82) blur(1.4px);
  transform: scale(0.996);
}

/* Summer refresh: warm beach colors, softer cards, and atmospheric motion */
header {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.95), rgba(238, 252, 255, 0.88));
  border-bottom: 1px solid rgba(17, 149, 182, 0.14);
  box-shadow: 0 8px 22px rgba(15, 64, 92, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 100%;
  color: inherit;
  container-type: inline-size;
}

.site-brand-badge {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.92));
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-brand-badge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.site-brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-brand-title {
  display: block;
  color: #1684b5;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.site-brand-subtitle {
  display: block;
  margin-top: 0.12rem;
  color: #0ea5c3;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-brand:hover .site-brand-badge,
.site-brand:focus-visible .site-brand-badge {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.primary-nav {
  flex: 0 1 auto;
}

.header-controls {
  flex: 0 0 auto;
}

@media (min-width: 1024px) {
  .site-nav {
    gap: 1.35rem;
  }

  .primary-nav {
    margin-left: auto;
  }

  .header-controls {
    margin-left: clamp(1.6rem, 2.8vw, 3.2rem);
    padding-right: 0.2rem;
  }
}

@media (min-width: 1600px) {
  .site-nav.container {
    max-width: min(1760px, calc(100vw - 3.5rem));
    gap: 1.8rem;
    padding-top: 1.02rem;
    padding-bottom: 1.02rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .site-brand {
    gap: 0.95rem;
  }

  .site-brand-badge {
    width: 3.45rem;
    height: 3.45rem;
    border-radius: 1.15rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  }

  .site-brand-title {
    font-size: 1.16rem;
  }

  .site-brand-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .primary-nav {
    gap: 0.85rem;
  }

  .primary-nav-link {
    padding: 0.72rem 1.18rem;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
  }

  .header-controls {
    margin-left: clamp(2rem, 3vw, 4rem);
    padding-right: 0;
  }

  .lang-switch {
    padding: 0.26rem;
  }

  .lang-btn {
    min-width: 3.2rem;
    padding: 0.48rem 1rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 1920px) {
  .site-nav.container {
    max-width: min(1840px, calc(100vw - 4rem));
    gap: 2rem;
    padding-top: 1.08rem;
    padding-bottom: 1.08rem;
  }

  .site-brand-title {
    font-size: 1.22rem;
  }

  .site-brand-subtitle {
    font-size: 0.84rem;
  }

  .primary-nav-link {
    padding: 0.76rem 1.24rem;
    font-size: 1.02rem;
  }
}

@container (max-width: 17rem) {
  .site-brand {
    gap: 0;
  }

  .site-brand-badge {
    display: none;
  }
}

@container (max-width: 12.75rem) {
  .site-brand-subtitle {
    display: none;
  }

  .site-brand-title {
    font-size: 0.92rem;
  }
}

@container (max-width: 10.5rem) {
  .site-brand-title {
    font-size: 0.84rem;
    letter-spacing: 0.005em;
  }
}

#mobile-menu {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.primary-nav-link {
  font-family: 'Outfit', 'Trebuchet MS', sans-serif;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #234658;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  border-color: rgba(148, 163, 184, 0.24);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

.primary-nav-link::after {
  background-color: rgba(35, 70, 88, 0.24);
}

.primary-nav-link:hover,
.primary-nav-link:focus-visible {
  color: #183748;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 250, 0.96));
  border-color: rgba(17, 149, 182, 0.26);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: #0f6686;
  border-color: rgba(29, 195, 213, 0.35);
  background: linear-gradient(180deg, rgba(255, 247, 228, 0.92), rgba(226, 250, 255, 0.84));
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
  border: 1px solid rgba(17, 149, 182, 0.18);
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.92), rgba(231, 249, 253, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(15, 64, 92, 0.1);
}

.lang-btn {
  min-width: 3rem;
  padding: 0.42rem 0.9rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #0f5f79;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: background-color 180ms ease, background-image 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lang-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--summer-turquoise), var(--summer-lagoon));
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(17, 149, 182, 0.26);
}

.lang-btn[aria-pressed="false"] {
  background: transparent;
  color: #0f5f79;
}

.lang-btn[aria-pressed="false"]:hover,
.lang-btn[aria-pressed="false"]:focus-visible {
  background: transparent;
  color: #0c4d62;
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(17, 149, 182, 0.45);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .site-nav {
    gap: 0.75rem;
  }

  .site-brand-badge {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
  }

  .site-brand-title {
    font-size: 0.94rem;
  }

  .site-brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .lang-switch {
    gap: 0.15rem;
    padding: 0.18rem;
  }

  .lang-btn {
    min-width: 2.7rem;
    padding: 0.4rem 0.72rem;
    font-size: 0.72rem;
  }
}

#hero {
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  top: -8.5rem;
  right: -5.5rem;
  width: 25rem;
  height: 25rem;
  border-radius: 9999px;
  background: radial-gradient(circle at 35% 35%, var(--summer-sun-glow) 0%, var(--summer-sun) 42%, rgba(var(--summer-sun-rgb), 0.12) 72%);
  z-index: 11;
  pointer-events: none;
  opacity: 0.7;
}

#hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -5.7rem;
  height: 12.5rem;
  background:
    radial-gradient(60% 110% at 20% 100%, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 72%),
    radial-gradient(58% 110% at 70% 100%, rgba(193, 246, 255, 0.48), rgba(193, 246, 255, 0) 72%);
  z-index: 11;
  pointer-events: none;
}

#hero > .absolute.inset-0.z-10 {
  background: linear-gradient(180deg, rgba(8, 56, 84, 0.44) 0%, rgba(9, 105, 131, 0.3) 46%, rgba(var(--summer-sun-rgb), 0.18) 100%) !important;
}

#hero > .absolute.inset-x-0.top-0.h-28.z-10 {
  background: linear-gradient(180deg, rgba(7, 60, 88, 0.42) 0%, rgba(7, 60, 88, 0) 100%);
}

#hero-img {
  filter: saturate(1.24) contrast(1.06) brightness(1.02);
  transform: scale(1.02);
}

#hero h1,
section h2,
.mobile-nav-link {
  font-family: 'Paytone One', 'Trebuchet MS', sans-serif;
  letter-spacing: 0.012em;
}

.hero-accent {
  color: var(--summer-sun) !important;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 2.15rem;
  padding-right: 2.15rem;
  background: linear-gradient(135deg, var(--summer-coral), #ffb261 46%, var(--summer-sun));
  color: #0f2f45 !important;
  box-shadow: 0 16px 26px rgba(255, 127, 97, 0.32);
  border: 1px solid rgba(255, 247, 227, 0.94);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 34px rgba(255, 127, 97, 0.34);
}

section {
  position: relative;
}

section:not(#hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 180px at 4% 4%, rgba(var(--summer-sun-rgb), 0.14), rgba(var(--summer-sun-rgb), 0) 78%),
    radial-gradient(460px 220px at 96% 95%, rgba(29, 195, 213, 0.14), rgba(29, 195, 213, 0) 82%);
}

section:not(#hero) > .container {
  position: relative;
  z-index: 1;
}

#welcome,
#wind,
#contact {
  background: linear-gradient(180deg, var(--summer-shell) 0%, #f2fcff 100%) !important;
}

#video,
#prices,
#faq {
  background: linear-gradient(180deg, #ffffff 0%, #f7fdff 100%) !important;
}

.text-blue-600,
.text-blue-700,
.text-sky-500,
.tab-active {
  color: var(--summer-lagoon) !important;
}

.text-blue-100 {
  color: #dcf8ff !important;
}

.text-gray-900 {
  color: #10344c !important;
}

.text-gray-700 {
  color: #23556c !important;
}

.text-gray-600 {
  color: #3d7186 !important;
}

.bg-blue-600,
.bg-blue-700 {
  background: linear-gradient(135deg, var(--summer-turquoise), var(--summer-lagoon)) !important;
}

.bg-blue-50 {
  background: linear-gradient(175deg, rgba(255, 235, 194, 0.66), rgba(226, 250, 255, 0.9)) !important;
}

.border-blue-100,
.border-blue-200 {
  border-color: rgba(17, 149, 182, 0.24) !important;
}

#prices .bg-green-50,
#prices .bg-green-100 {
  background: linear-gradient(170deg, rgba(255, 242, 210, 0.9), rgba(233, 251, 255, 0.96)) !important;
  border: 1px solid rgba(255, 127, 97, 0.2);
}

#prices .shadow-lg,
#prices .shadow-xl,
#prices .shadow-2xl,
#faq .border.border-gray-200,
#contact form,
#video .video-embed-shell,
#windy-wrapper {
  box-shadow: 0 16px 34px rgba(16, 79, 108, 0.14) !important;
  border-color: rgba(17, 149, 182, 0.2);
}

#prices .shadow-lg,
#prices .shadow-xl,
#prices .shadow-2xl {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

#prices .shadow-lg:hover,
#prices .shadow-xl:hover,
#prices .shadow-2xl:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 79, 108, 0.2) !important;
}

.price-course-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(17, 149, 182, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 252, 255, 0.98)),
    linear-gradient(175deg, rgba(255, 235, 194, 0.66), rgba(226, 250, 255, 0.9));
  padding: 1.6rem;
  box-shadow: 0 16px 34px rgba(16, 79, 108, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(220px 100px at 8% 0%, rgba(var(--summer-sun-rgb), 0.18), rgba(var(--summer-sun-rgb), 0) 80%),
    linear-gradient(180deg, rgba(17, 149, 182, 0.08), rgba(17, 149, 182, 0));
}

.price-course-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 149, 182, 0.3);
  box-shadow: 0 20px 40px rgba(16, 79, 108, 0.2);
}

.price-course-head,
.price-course-footer {
  position: relative;
  z-index: 1;
}

.price-course-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.38rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--summer-lagoon);
}

.price-course-title {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  color: #10344c;
}

.price-course-duration {
  margin-top: 0.8rem;
  max-width: 18rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #3d7186;
}

.price-course-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(17, 149, 182, 0.16);
  padding-top: 1rem;
}

.price-course-price {
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 0.95;
  font-weight: 900;
  color: #10344c;
}

.price-course-note {
  max-width: 11rem;
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #3d7186;
}

.price-course-card-featured {
  border-color: rgba(17, 149, 182, 0.1);
  background:
    linear-gradient(135deg, rgba(29, 195, 213, 0.96), rgba(17, 149, 182, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  color: #ffffff;
}

.price-course-card-featured::before {
  background:
    radial-gradient(260px 120px at 8% 2%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 78%),
    radial-gradient(240px 140px at 100% 100%, rgba(255, 244, 230, 0.22), rgba(255, 244, 230, 0) 74%);
}

.price-course-card-featured .price-course-eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.price-course-card-featured .price-course-title,
.price-course-card-featured .price-course-duration,
.price-course-card-featured .price-course-price,
.price-course-card-featured .price-course-note {
  color: #ffffff;
}

.price-course-card-featured .price-course-footer {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.price-course-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(17, 149, 182, 0.16);
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(16, 79, 108, 0.08);
}

.price-course-addon-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  flex: 1 1 auto;
  flex-wrap: wrap;
  column-gap: 0.7rem;
  row-gap: 0.2rem;
}

.price-course-addon-title {
  font-size: 1.06rem;
  line-height: 1.2;
  font-weight: 800;
  color: #10344c;
}

.price-course-addon-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #3d7186;
}

.price-course-addon-pricebox {
  display: flex;
  min-width: 88px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(17, 149, 182, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 255, 0.94));
  padding: 0.65rem 1rem;
  box-shadow: 0 6px 16px rgba(16, 79, 108, 0.08);
}

.price-course-addon-price {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
  color: #10344c;
}

.price-rental-group {
  border-radius: 1.6rem;
  border: 1px solid rgba(17, 149, 182, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 255, 0.98));
  padding: 1.3rem;
  box-shadow: 0 16px 34px rgba(16, 79, 108, 0.14);
}

.price-rental-group-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.price-rental-label {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(17, 149, 182, 0.08);
  padding: 0.38rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--summer-lagoon);
}

.price-rental-title {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  color: #10344c;
}

.price-rental-summary {
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3d7186;
}

.price-rental-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.price-rental-tile {
  display: flex;
  min-height: 9.25rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.25rem;
  border: 1px solid rgba(17, 149, 182, 0.15);
  background: linear-gradient(170deg, rgba(255, 242, 210, 0.88), rgba(233, 251, 255, 0.98));
  padding: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.price-rental-duration {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: #23556c;
}

.price-rental-price {
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 0.95;
  font-weight: 900;
  color: #10344c;
}

.price-rental-note {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #3d7186;
}

.price-rental-group-featured {
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.98), rgba(238, 251, 255, 0.98)),
    linear-gradient(135deg, rgba(255, 199, 68, 0.14), rgba(29, 195, 213, 0.12));
}

.price-rental-tile-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 232, 0.98)),
    linear-gradient(135deg, rgba(255, 199, 68, 0.12), rgba(29, 195, 213, 0.08));
  border-color: rgba(255, 127, 97, 0.18);
}

@media (min-width: 768px) {
  .price-rental-group-head {
    align-items: end;
    justify-content: space-between;
    flex-direction: row;
  }
}

#faq .faq-toggle {
  background: linear-gradient(180deg, var(--summer-shell), var(--summer-dawn));
}

#faq .faq-toggle:hover {
  background: linear-gradient(180deg, #fff8f1, #ffeccf);
}

#faq .faq-panel {
  background: rgba(255, 255, 255, 0.95);
}

#video img,
#welcome img {
  filter: saturate(1.12) contrast(1.03);
}

#contact input,
#contact textarea {
  border-color: rgba(17, 149, 182, 0.32) !important;
  background: rgba(255, 255, 255, 0.95);
}

#contact input:focus,
#contact textarea:focus {
  border-color: rgba(29, 195, 213, 0.86) !important;
  box-shadow: 0 0 0 3px rgba(var(--summer-sun-rgb), 0.24);
}

footer.bg-gray-950 {
  background: linear-gradient(160deg, #072a41 0%, #0f4763 55%, #0b6f8d 100%) !important;
  color: #d8edf4 !important;
}

footer .text-gray-500,
footer .text-gray-400 {
  color: #d2ebf3 !important;
}

footer .text-gray-600 {
  color: rgba(210, 235, 243, 0.58) !important;
}

footer a:hover {
  color: #fff2c8 !important;
}

.social-icon-link {
  border-color: rgba(184, 243, 252, 0.42);
  color: #d9f4fb;
  background: rgba(7, 55, 78, 0.36);
}

.social-icon-link:hover {
  color: #07324b;
  border-color: rgba(255, 239, 196, 0.88);
  background: linear-gradient(135deg, #ffd99a, #cbf6ff);
}

@keyframes summer-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes summer-pulse {
  0%,
  100% {
    box-shadow: 0 16px 26px rgba(255, 127, 97, 0.32);
  }
  50% {
    box-shadow: 0 20px 34px rgba(255, 127, 97, 0.44);
  }
}

#hero .mb-6.inline-flex {
  animation: summer-float 6s ease-in-out infinite;
}

.hero-cta {
  animation: summer-pulse 5.2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .price-course-card {
    padding: 1.35rem;
  }

  .price-course-title,
  .price-rental-title {
    font-size: 1.55rem;
  }

  .price-course-footer {
    align-items: start;
    flex-direction: column;
  }

  .price-course-note {
    max-width: none;
    text-align: left;
  }

  .price-course-addon {
    align-items: stretch;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
  }

  .price-course-addon-pricebox {
    align-self: flex-start;
    min-width: 0;
  }

  .price-course-addon-copy {
    align-items: start;
    flex-direction: column;
  }

  #hero::before {
    width: 16rem;
    height: 16rem;
    top: -5.5rem;
    right: -3.2rem;
  }

  #hero::after {
    height: 9rem;
    bottom: -4.2rem;
  }

  #hero h1,
  section h2 {
    letter-spacing: 0.007em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta,
  #hero .mb-6.inline-flex {
    animation: none !important;
  }

  .price-course-card {
    transition: none;
  }

  #prices .shadow-lg,
  #prices .shadow-xl,
  #prices .shadow-2xl {
    transition: none;
  }
}
