/* ==== VOLTA BRIGHT MODERN_BOLD CSS ====
   All layouts use only Flexbox. No CSS Grid/Columns anywhere.  */

/* ===============================
   CSS RESET AND NORMALIZE
=============================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B263B;
  background-color: #F5F5F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B263B;
  text-decoration: none;
  transition: color 0.2s;
}
akey:focus-visible {
  outline: 2px solid #778DA9;
}
ul, ol {
  padding-left: 24px;
}


/* ===============================
   TYPOGRAPHY SCALE & STYLE
=============================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li, blockquote, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #1B263B;
}
.subtitle {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 24px;
  color: #778DA9;
  letter-spacing: 0.01em;
}
.price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1B263B;
  background: #F5F5F5;
  padding: 4px 16px;
  border-radius: 18px;
  margin-top: 12px;
  box-shadow: 0 2px 8px 0 rgba(27,38,59,0.05);
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1B263B;
  background: none;
  border-left: 6px solid #778DA9;
  padding-left: 18px;
  margin-bottom: 12px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  color: #778DA9;
  font-weight: 700;
  margin-left: 2px;
}

/* ===============================
   GLOBAL SPACING & CONTAINERS
=============================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(27,38,59,0.06);
}
.section:last-child {
  margin-bottom: 0;
}

/* ===============================
   HEADER & LOGO
=============================== */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(27,38,59,0.07);
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.logo img {
  height: 44px;
}

/* ===============================
   NAVIGATION (Desktop)
=============================== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1B263B;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F5F5;
  color: #778DA9;
}
.main-nav .cta-btn {
  margin-left: 10px;
  background: #1B263B;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 900;
  border-radius: 18px;
  padding: 8px 28px;
  box-shadow: 0 4px 18px rgba(27,38,59,0.09);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #778DA9;
  color: #fff;
  box-shadow: 0 2px 18px #778DA9;
}

/* ===============================
   MOBILE NAVIGATION
=============================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #1B263B;
  font-size: 2.4rem;
  padding: 4px 12px;
  cursor: pointer;
  display: none;
  z-index: 211;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #778DA9;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 48px rgba(27,38,59,0.22);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.37,.22,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(.7,.37,.22,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1B263B;
  font-size: 2.4rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 2005;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 88px;
  width: 100%;
  padding: 0 30px;
}
.mobile-nav a {
  color: #1B263B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  padding: 14px 4px;
  border-radius: 12px;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #F5F5F5;
  color: #778DA9;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1020px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===============================
   HERO SECTIONS
=============================== */
.hero {
  background: #FFC300;
  background: linear-gradient(90deg, #F5F5F5 0%, #FFC3001A 80%);
  border-radius: 0 0 42px 42px;
  padding-top: 48px;
  padding-bottom: 64px;
  margin-bottom: 56px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.8rem;
  color: #1B263B;
}
.hero .subtitle {
  color: #778DA9;
  font-weight: 700;
}
.hero .cta-btn {
  margin-top: 22px;
}

/* ===============================
   CTA SECTIONS
=============================== */
.cta {
  background: #1B263B;
  color: #fff;
  border-radius: 28px;
  padding: 40px 0;
  margin: 60px 0 0 0;
  box-shadow: 0 5px 24px rgba(27,38,59,0.12);
}
.cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta .cta-btn {
  background: #FFC300;
  color: #1B263B;
  font-weight: 900;
  border: none;
  margin-top: 8px;
  border-radius: 18px;
  padding: 12px 38px;
  font-size: 1.1rem;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #1B263B;
  color: #FFC300;
  outline: 2px solid #FFC300;
}

/* ===============================
   FEATURES GRID & FEATURE ITEMS
=============================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px 0 rgba(27,38,59,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px 24px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.22s;
  border: 2px solid #F5F5F5;
}
.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: none;
}
.feature-item:hover {
  box-shadow: 0 12px 38px #FFC30055;
  transform: translateY(-6px) scale(1.025);
  border-color: #FFC300;
}

/* ===============================
   SERVICES LIST (WORKSHOPS/COACHING)
=============================== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.service-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(27,38,59,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 22px;
  min-width: 240px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 2px solid #F5F5F5;
}
.service-item:hover {
  box-shadow: 0 12px 38px #FFC30044;
  transform: translateY(-6px) scale(1.03);
  border-color: #FFC300;
}

/* ===============================
   TESTIMONIALS
=============================== */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F5F5;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(27,38,59,0.08);
  padding: 20px 26px;
  flex: 1 1 260px;
  min-width: 245px;
  max-width: 410px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.21s;
  border: 2px solid #e7e7e7;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #FFC30044;
  transform: translateY(-4px) scale(1.015);
  border-color: #FFC300;
}
.testimonial-card blockquote {
  color: #1B263B;
  font-size: 1.06rem;
  font-weight: 600;
  background: none;
  border: none;
  padding-left: 0;
  margin-bottom: 8px;
}

/* ===============================
   TEXT SECTIONS & LISTS
=============================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 4px;
  font-size: 1rem;
  position: relative;
  padding-left: 18px;
}
.text-section li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: #FFC300;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 0.6em;
}
.info-alert {
  background: #FFE684;
  color: #1B263B;
  border-radius: 12px;
  padding: 13px 15px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 2px 12px 0 #FFC30044;
  border: 2px solid #FFC30011;
}

/* ===============================
   COLUMNS & FLEX GRID SECTIONS
=============================== */
.card-container, .team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 22px rgba(27,38,59,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 25px 20px;
}
.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;
}

/* ===============================
   BUTTONS & CTA BUTTONS
=============================== */
.cta-btn {
  background: #1B263B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 18px;
  font-size: 1.13rem;
  padding: 11px 32px;
  box-shadow: 0 4px 18px 0 rgba(27,38,59,0.09);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.21s, colour 0.21s, transform 0.21s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
  margin-top: 6px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFC300;
  color: #1B263B !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 18px #FFC30077;
}

button, input[type="submit"], input[type="button"] {
  font-family: inherit;
  font-size: 1rem;
}

/* ===============================
   FOOTER
=============================== */
footer {
  background: #1B263B;
  color: #fff;
  padding: 48px 0 24px 0;
  border-radius: 40px 40px 0 0;
  margin-top: 48px;
  box-shadow: 0 -2px 24px 0 rgba(27,38,59,0.09);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #FFC300;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  color: #fff;
  font-weight: 500;
  font-size: 0.98rem;
  margin-top: 10px;
}
.footer-contact a {
  color: #FFC300;
  text-decoration: underline;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-brand img {
  width: 56px;
  height: auto;
}

/* ===============================
   COOKIE CONSENT BANNER + MODAL
=============================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1B263B;
  color: #fff;
  padding: 30px 16px 18px 16px;
  box-shadow: 0 -6px 24px 0 rgba(27,38,59,0.16);
  z-index: 12001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.36s cubic-bezier(.86,0,.07,1);
  transform: translateY(0);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 2px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  background: #FFC300;
  color: #1B263B;
  border: none;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 9px 22px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
  margin-top: 0;
}
.cookie-banner button.cookie-settings-btn {
  background: #fff;
  color: #1B263B;
  border: 1.2px solid #FFC300;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #778DA9;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 12003;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,38,59,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 48px 0 rgba(27,38,59,0.22);
  padding: 38px 28px 30px 28px;
  width: 94vw;
  max-width: 440px;
  color: #1B263B;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(50px);
  animation: fadeinup 0.34s cubic-bezier(.7,.37,.22,1);
  position: relative;
}
@keyframes fadeinup {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #778DA9;
  cursor: pointer;
  z-index: 12006;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #1B263B;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-weight: 700;
  flex: 1;
}
.cookie-modal .toggle-switch {
  width: 38px; height: 20px;
  background: #E7EAF1;
  border-radius: 12px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .toggle-switch.checked {
  background: #FFC300;
}
.cookie-modal .toggle-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 2px 6px rgba(27,38,59,0.13);
}
.cookie-modal .toggle-switch.checked .toggle-slider {
  transform: translateX(18px);
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal .cookie-btns button {
  padding: 9px 24px;
  border-radius: 13px;
  border: none;
  background: #1B263B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.cookie-modal .cookie-btns button:hover, .cookie-modal .cookie-btns button:focus {
  background: #778DA9;
}

/* ===============================
   CONFIRMATION PAGE
=============================== */
.confirmation {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 9px 36px #FFC30022;
  padding: 60px 24px 48px 24px;
  margin-top: 46px;
  margin-bottom: 36px;
  text-align: center;
}
.confirmation h1 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #1B263B;
}
.confirmation .cta-btn {
  display: inline-block;
  margin-top: 26px;
}

/* ===============================
   RESPONSIVE STYLES
=============================== */
@media (max-width: 1100px) {
  .container { max-width: 930px; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }
  .section {
    margin-bottom: 36px;
    padding: 30px 8px;
    border-radius: 18px;
  }
  .hero {
    padding-top: 32px; padding-bottom: 32px; margin-bottom: 28px;
    border-radius: 0 0 30px 30px;
  }
  .hero h1 { font-size: 1.58rem; }
  .content-wrapper { gap: 16px; }
  .features-grid, .services-list, .testimonials-grid, .card-container, .team-section {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-item, .service-item, .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start !important;
  }
  .cta {
    padding: 28px 0;
    border-radius: 12px;
    margin: 36px 0 0 0;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .confirmation {
    padding: 28px 8px 20px 8px;
    border-radius: 16px;
    margin-top: 20px; margin-bottom: 10px;
  }
  .cookie-modal {
    padding: 18px 6vw 10px 6vw;
    border-radius: 13px;
  }
  .mobile-menu-close {
    top: 18px; right: 16px;
  }
}
@media (max-width: 525px) {
  .footer-brand img {
    width: 44px;
  }
  .hero h1 { font-size: 1.03rem; }
  .cookie-modal { min-width: unset; }
  .cookie-modal h3 { font-size: 1.08rem; }
}

/* ===============================
   MICRO-INTERACTIONS AND EFFECTS
=============================== */
.cta-btn, .cookie-banner button, .service-item, .feature-item, .testimonial-card, .card {
  transition: box-shadow 0.19s, background 0.19s, color 0.17s, border 0.17s, transform 0.17s;
}
.cta-btn:active, .cookie-banner button:active {
  transform: scale(0.97);
  background: #FFC300;
  color: #1B263B;
}

/* ===============================
   PRINT SUPPORT
=============================== */
@media print {
  .main-nav, .mobile-menu, .mobile-menu-toggle, .footer-nav, .cta-btn, .cookie-banner, .cookie-modal, .cookie-modal-backdrop {
    display: none !important;
  }
  header, footer, .section, .hero, .cta, .confirmation {
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #fff !important;
  }
}
