/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F6F7F8;
  color: #222;
  min-height: 100vh;
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3DA17E;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #17375E;
  outline: none;
}
ul, ol {
  padding-left: 2rem;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1.5px solid #e6e6e6;
  font-size: 1rem;
}
th {
  background: #e3f9f3;
  color: #17375E;
  font-weight: 700;
}
tr:nth-child(even) td {
  background: #f8fdfc;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #17375E;
  font-weight: 900;
  text-transform: none;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.12rem;
  font-weight: 700;
}
.subheadline {
  font-size: 1.3125rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #3DA17E;
  font-weight: 600;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-size: 1.15rem;
  font-style: italic;
  border-left: 5px solid #3DA17E;
  padding-left: 18px;
  margin-bottom: 10px;
}

/* --- SPACING PATTERNS & LAYOUTS --- */
.section, section {
  padding: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px 0 rgba(61,161,126,0.10), 0 1.5px 6px 0 rgba(23,55,94,0.07);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover,
.card:focus-within {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 12px 40px 0 rgba(61,161,126,0.18), 0 3px 18px 0 rgba(23,55,94,0.14);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F7F8;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(23,55,94,0.07);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
}


/* --- BRAND VIBRANT ENERGETIC COLORS --- */
:root {
  --color-primary: #17375E;
  --color-secondary: #3DA17E;
  --color-accent: #F6F7F8;
  --color-electric-yellow: #FFE600;
  --color-hot-pink: #FE347E;
  --color-cyan: #09D3E0;
  --color-white: #fff;
}

/* --- BUTTONS & CTA --- */
.cta-btn {
  background: linear-gradient(90deg, #3DA17E 12%, #09D3E0 100%);
  color: #17375E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.10rem;
  padding: 14px 32px;
  border: none;
  border-radius: 32px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: 0 6px 22px 0 rgba(61,161,126,0.16);
  transition: background 0.24s, box-shadow 0.20s, transform 0.18s;
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FE347E 16%, #3DA17E 100%);
  color: #fff;
  box-shadow: 0 12px 34px 0 rgba(254,52,126,0.10), 0 3px 18px 0 rgba(23,55,94,0.20);
  transform: translateY(-2px) scale(1.07);
  outline: none;
}

button:focus-visible {
  outline: 2px solid #17375E;
  outline-offset: 3px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(23,55,94,0.12);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #F6F7F8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.18s, background 0.14s;
  padding: 6px 0;
  border-radius: 4px;
}
header nav a:hover, header nav a:focus {
  color: #FFE600;
  background: rgba(9,211,224,0.09);
}
header .cta-btn {
  margin-left: 18px;
  background: linear-gradient(90deg, #FFE600 10%, #FE347E 100%);
  color: #17375E;
  border-radius: 28px;
  box-shadow: 0 3px 14px 0 rgba(254,52,126,0.13);
}
header .cta-btn:hover, header .cta-btn:focus {
  background: linear-gradient(90deg, #FE347E 16%, #3DA17E 100%);
  color: #fff;
  box-shadow: 0 12px 34px 0 rgba(254,52,126,0.17);
}

/* --- Mobile Nav --- */
.mobile-menu-toggle {
  background: none;
  color: #FFE600;
  font-size: 2.1rem;
  border: none;
  padding: 10px 16px;
  display: none;
  cursor: pointer;
  z-index: 201;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FE347E;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: linear-gradient(90deg, #17375E 80%, #09D3E0 100%);
  box-shadow: -5px 0 40px 0 rgba(23,55,94,0.22);
  z-index: 3200;
  transform: translateX(100vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform 0.37s cubic-bezier(.87,-0.41,.19,1.44);
  padding: 0 0 0 32vw;
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #FFE600;
  background: none;
  border: none;
  margin: 24px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 3300;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #FE347E;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 48px 36px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.26rem;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.14s, color 0.17s;
  min-width: 180px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(61,161,126,0.22);
  color: #FFE600;
  outline: none;
}

/* --- HERO SECTIONS --- */
.hero, .trial-hero, .thank-you-section {
  background: linear-gradient(90deg,#17375E 70%, #3DA17E 100%);
  color: #fff;
  padding: 60px 0 48px 0;
}
.hero h1, .trial-hero h1, .thank-you-section h1 {
  color: #FFE600;
  text-shadow: 0 3px 18px #17375E56;
  margin-bottom: 15px;
}
.hero .subheadline, .trial-hero p, .thank-you-section p {
  color: #fffbe7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
  font-size: 1.22rem;
}
.hero .cta-btn {
  background: linear-gradient(90deg, #FFE600 10%, #09D3E0 100%);
  color: #17375E;
  font-size: 1.18rem;
}

/* --- FEATURES & CARDS --- */
.features .feature-grid, .facility-benefits .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 8px;
}
.features .feature, .facility-benefits .feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(61,161,126,0.12);
  padding: 22px 18px 16px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.17s;
}
.features .feature:hover, .facility-benefits .feature:hover {
  transform: translateY(-6px) scale(1.045);
  box-shadow: 0 9px 36px 0 rgba(61,161,126,0.23);
}
.features .feature img, .facility-benefits .feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.features .feature h3, .facility-benefits .feature h3 {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #17375E;
  margin-bottom: 7px;
  background: linear-gradient(90deg, #FFE600 30%, #3DA17E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features .feature p, .facility-benefits .feature p {
  color: #444;
  font-size: 1.04rem;
}

/* --- ABOUT & TESTIMONIAL --- */
.testimonial-card {
  background: #fff;
  color: #17375E;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(61,161,126,0.10);
  gap: 20px;
  font-size: 1.07rem;
  align-items: flex-start;
}
.testimonial-card blockquote {
  border-left: 5px solid #3DA17E;
  padding-left: 14px;
  color: #17375E;
  font-style: italic;
  background: none;
}
.testimonial-card footer {
  font-size: 1rem;
  color: #3DA17E;
  font-weight: 700;
}

/* --- NEWS, SCHEDULE, & PREVIEW --- */
.schedule-preview, .news-preview, .time-table, .newsletter-signup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 rgba(23,55,94,0.10);
}

.schedule-preview a.cta-btn, .news-preview a.cta-btn, .newsletter-signup a.cta-btn {
  margin-top: 8px;
}

.news-section ul li, .news-preview ul li {
  margin-bottom: 0.8em;
  font-weight: 500;
  color: #222;
}

/* --- THANK YOU PAGE/SECTION --- */
.thank-you-section a.cta-btn {
  margin-top: 16px;
}

/* --- FORMS & OL/UL FOR STEP LISTS --- */
ol, ul {
  margin-bottom: 18px;
}
ol li, ul li {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* --- FOOTER --- */
footer {
  background: #17375E;
  color: #fff;
  padding: 34px 0 18px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #243959;
}
.footer-logo img {
  width: 56px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 185px;
}
.footer-nav a {
  color: #FFE600;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 0.99rem;
  transition: color 0.17s;
}
.footer-nav a:hover,.footer-nav a:focus{
  color: #FE347E;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
}
.footer-contact a {
  color: #09D3E0;
  word-break: break-all;
}
.footer-contact a:hover{
  color: #FFE600;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .features .feature-grid, .facility-benefits .feature-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .container {
    padding: 0 7px;
  }
  .footer-nav {
    min-width: 140px;
    font-size: .95rem;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 5px;
  }
  header nav {
    gap: 12px;
  }
  .features .feature-grid, .facility-benefits .feature-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .section, section {
    padding: 26px 5vw;
    margin-bottom: 34px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .hero, .trial-hero, .thank-you-section {
    padding: 34px 0 20px 0;
  }
  .features .feature-grid, .facility-benefits .feature-grid {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .card-container {
    gap: 13px;
  }
  .content-grid {
    gap: 10px;
  }
}

@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.47rem; }
  h3 { font-size: 1.16rem; }
  header nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 14px;
    top: 14px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .footer-logo img {
    width: 40px;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.10rem; }
  h3 { font-size: 1rem; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(23,55,94,0.99);
  color: #fff;
  padding: 28px 16px 24px 16px;
  box-shadow: 0 -6px 32px 0 rgba(23,55,94,0.12);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  z-index: 6100;
  font-size: 1.04rem;
  animation: cookieSlideIn 0.57s cubic-bezier(.59,.01,.49,.99);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity:0; }
  80% { opacity:1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #FFE600;
  font-size:1.03rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.cookie-banner .cb-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-banner button {
  background: linear-gradient(90deg, #3DA17E 0%, #FE347E 100%);
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 20px;
  padding: 10px 22px;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  cursor: pointer;
  box-shadow: 0 3px 18px 0 rgba(254,52,126,0.11);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: linear-gradient(90deg, #FFE600 0%, #09D3E0 100%);
  color: #17375E;
  box-shadow: 0 7px 27px 0 rgba(254,52,126,0.18);
}

/* Modal for Cookie Settings */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 47%;
  transform: translate(-50%,-50%) scale(1.07);
  background: #fff;
  color: #17375E;
  z-index: 8400;
  border-radius: 20px;
  box-shadow: 0 12px 60px 0 rgba(23,55,94,0.17);
  min-width: 310px;
  min-height: 170px;
  max-width: 95vw;
  max-height: 95vh;
  padding: 37px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  animation: cookieModalIn 0.37s cubic-bezier(.71,1.33,.62,1.04);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%,60%) scale(.95); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1.07); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #17375E;
  margin-bottom: 6px;
}
.cookie-modal label {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 700;
  color: #3DA17E;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 19px;
  background: #e5e5e5;
  border-radius: 10px;
  position: relative;
  margin-right: 4px;
  cursor: pointer;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 34px;
  height: 19px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cookie-modal .cookie-toggle.active {
  background: linear-gradient(90deg, #3DA17E 30%, #FE347E 100%);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.5px;
  left: 2px;
  transition: left 0.22s, box-shadow 0.14s;
  box-shadow: 0 1px 4px 0 rgba(23,55,94,0.11);
}
.cookie-modal .cookie-toggle.active::before {
  left: 15px;
  box-shadow: 0 1px 7px 0 rgba(61,161,126,0.19);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  background: linear-gradient(90deg, #3DA17E 0%, #09D3E0 100%);
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 9px 18px;
  transition: background 0.15s, color 0.14s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: linear-gradient(90deg, #FFE600 0%, #FE347E 100%);
  color: #17375E;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 20px; top: 16px;
  font-size: 1.33rem;
  background: none;
  color: #3DA17E;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #FE347E;
}
/* Overlay for modals */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,55,94,0.6);
  z-index: 8399;
}

/* --- SHADOWS, BORDERS, MICRO-INTERACTIONS --- */
.card, .feature, .features .feature {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .feature:hover {
  box-shadow: 0 10px 36px 0 rgba(61,161,126,0.17);
  transform: translateY(-5px) scale(1.03);
  z-index:2;
}

/* --- UTILITIES --- */
.text-center {
  text-align: center !important;
}
.align-center, .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }

/* --- ACCESSIBILITY: HIGH CONTRAST FOR TESTIMONIALS --- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card footer {
  color: #17375E !important;
  background: #fff !important;
}

/* --- ENSURE ADEQUATE SPACING BETWEEN CARDS AND SECTIONS --- */
.card,
.feature, .feature-item, .testionial-card,
.section, section, .content-wrapper, .card-container, .content-grid {
  margin-bottom: 20px;
}

/* --- REMOVE GRID PROPERTIES (CRITICAL) --- */
/* No grid, columns, or clamp() used anywhere. */
