/* =======================================================
   Voltora Shock – monochrome_sophisticated CSS Framework
   ======================================================= */
/* ========== CSS RESET & BASE ========== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #181818;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #22347d;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #181818;
  text-decoration: none;
}
ul, ol {
  padding-left: 1.2em;
  margin: 12px 0 16px 0;
}
ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #101010;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; letter-spacing: -0.5px; }
h2 { font-size: 2rem; margin-bottom: 18px; letter-spacing: -0.3px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subheadline {
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #666;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

/* ========== HEADER ========== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 140px;
  padding: 10px 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #181818;
  background: none;
  border-radius: 5px;
  padding: 4px 8px;
  letter-spacing: 0.1px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #eaeaea;
  color: #22347d;
}
.main-nav .cta.primary {
  background: #181818;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  padding: 8px 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  margin-left: 12px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #22347d;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(34,52,125,0.12);
}
.mobile-menu-toggle {
  display: none;
  align-items: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: #181818;
  cursor: pointer;
  padding: 8px 12px;
  margin-left: 16px;
  transition: background 0.16s, color 0.16s;
  z-index: 35;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #eaeaea;
  border-radius: 4px;
  color: #22347d;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,22,22,0.95);
  transform: translateX(-100%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transition: transform 0.38s cubic-bezier(0.8,0.1,0.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  position: absolute;
  top: 22px; right: 28px;
  font-size: 2.6rem;
  z-index: 110;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffb200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 100px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  background: none;
  text-align: center;
  width: 90%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22347d;
  color: #ffb200;
}

/* ========== HERO SECTION ========== */
.hero {
  background: #fff;
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero .content-wrapper {
  gap: 12px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #181818;
  margin-bottom: 10px;
}
.hero .cta.primary {
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(34,52,125,0.10);
}

/* ========== CTA BUTTONS & INTERACTIONS ========== */
.cta {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 6px;
  display: inline-block;
  padding: 10px 26px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.21s;
  box-shadow: 0 1px 9px 0 rgba(18,18,18,0.10);
  margin-top: 10px;
}
.cta.primary {
  background: #181818;
  color: #fff;
  border: 1.5px solid #181818;
}
.cta.primary:hover, .cta.primary:focus {
  background: #22347d;
  color: #fff;
  border-color: #22347d;
  box-shadow: 0 4px 20px 0 rgba(34,52,125, 0.16);
}
.cta.secondary {
  background: #fff;
  color: #181818;
  border: 1.5px solid #181818;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #181818;
  color: #fff;
  border-color: #22347d;
  box-shadow: 0 3px 16px 0 rgba(34,52,125,0.09);
}

/* ========== FEATURES GRID ========== */
.features {
  width: 100%;
  background: #f8f8fa;
  border-bottom: 1px solid #ededf1;
}
.features .container {
  gap: 0;
}
.features .content-wrapper {
  gap: 36px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 30px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 26px 0 rgba(18,18,18,0.05);
  border: 1px solid #e0e1e8;
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 220px;
  transition: box-shadow 0.25s, border-color 0.22s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0 rgba(18,18,18,0.11);
  border-color: #22347d;
  z-index: 2;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  filter: grayscale(100%);
}
.feature-item h3 {
  font-size: 1.13rem;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #22347d;
  margin: 0 0 7px 0;
}
.feature-item p {
  font-size: 1rem;
  color: #474747;
}

/* ========== SERVICES LIST FOR KURSE & COACHING ========== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 11px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 15px 0 rgba(18,18,18,0.06);
  padding: 32px 22px 22px 22px;
  flex: 1 1 240px;
  min-width: 260px;
  transition: box-shadow 0.21s;
  margin-bottom: 20px;
  position: relative;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 7px 28px 0 rgba(18,18,18,0.12);
  border-color: #22347d;
  z-index: 2;
}
.service-item h3 {
  font-size: 1.12rem;
  color: #22347d;
  margin-bottom: 6px;
}
.service-price {
  font-size: 1.15rem;
  font-weight: bold;
  color: #181818;
  margin-bottom: 6px;
}

/* ========== SECTIONS & LAYOUT ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(18,18,18,0.06);
  border: 1px solid #e0e1e8;
  background: #fff;
  padding: 22px 18px;
  transition: box-shadow 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 25px rgba(18,18,18,0.15);
  border-color: #22347d;
  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;
  margin-bottom: 30px;
}
.text-section {
  margin-bottom: 26px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #f5f5f7;
  padding: 40px 0;
}
.testimonials .container {
  gap: 0;
}
.testimonials .content-wrapper {
  gap: 32px;
}
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #181818;
  box-shadow: 0 2px 22px 0 rgba(30,30,30,0.09);
  border-radius: 13px;
  padding: 28px 28px 20px 28px;
  border: 1px solid #e0e1e8;
  min-width: 235px;
  max-width: 380px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, border-color 0.22s;
  font-size: 1.06rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(34,52,125,0.16);
  border-color: #22347d;
  z-index: 2;
}
.testimonial-author {
  color: #22347d;
  font-weight: 600;
  font-size: 0.97rem;
}

.review-summary {
  margin-top: 22px;
  color: #181818;
  font-weight: 500;
  background: #eaeafa;
  border-radius: 7px;
  padding: 14px 20px;
  font-size: 1.07rem;
  display: inline-block;
  box-shadow: 0 1px 9px rgba(34,52,125,0.13);
}

.success-highlights {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #e0e1e8;
  border-radius: 10px;
  padding: 18px 22px;
}
.success-highlights h3 {
  font-size: 1.2rem;
  color: #181818;
  margin-bottom: 6px;
}
.success-highlights ul {
  margin-top: 8px;
  margin-bottom: 0;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: #fff;
  padding: 48px 0;
}
.about-section ul li, .features ul li {
  margin-bottom: 10px;
  font-size: 1.03rem;
  color: #454545;
}
.team-snapshot {
  background: #f7f7fa;
  margin-top: 24px;
  padding: 18px 18px 12px 18px;
  border-radius: 10px;
  font-size: 1rem;
  color: #222;
  border: 1px solid #e0e0e8;
}

/* ========== LEGAL PAGES ========== */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2 {
  color: #181818;
}
.legal h1 {
  margin-bottom: 22px;
}
.legal h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal ul {
  margin-bottom: 20px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-section .contact-info {
  margin-bottom: 26px;
  background: #f9faff;
  border: 1px solid #e0e1e8;
  border-radius: 10px;
  padding: 20px 18px 6px 18px;
  color: #191a1e;
  font-size: 1.04rem;
}
.fake-form {
  margin-top: 10px;
  background: #f5f5f7;
  border-radius: 7px;
  border: 1px solid #e0e1e8;
  padding: 16px 18px 10px 18px;
  font-size: 1rem;
}

/* ========== FOOTER ========== */
footer {
  background: #181818;
  color: #ededed;
  padding: 56px 0 30px 0;
  margin-top: 80px;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
.footer-logo-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 210px;
  max-width: 330px;
}
.footer-logo-contact img {
  height: 40px;
  width: 40px;
  margin-bottom: 9px;
  filter: grayscale(100%);
}
.footer-logo-contact .contact-info {
  color: #bfc5d7;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 8px;
}
.footer-logo-contact a {
  color: #ededed;
  text-decoration: underline;
  font-weight: 400;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 165px;
  margin-top: 7px;
}
.footer-links a {
  color: #ededed;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #ffb200;
  text-decoration: none;
}
.social-media-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 7px;
}
.social-media-links a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  opacity: 0.90;
}
.social-media-links a:hover,
.social-media-links a:focus {
  opacity: 1;
}
.social-media-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(1) brightness(1.4);
  transition: filter 0.22s;
}
.social-media-links a:hover img,
.social-media-links a:focus img {
  filter: grayscale(0) brightness(1.1) contrast(1.35);
}

/* ========== CONFIRMATION SECTION ========== */
.confirmation-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.confirmation-section h1 {
  color: #22347d;
  margin-bottom: 8px;
  font-size: 2.2rem;
}
.confirmation-section .cta.primary {
  margin-top: 15px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #181818;
  color: #fff;
  font-size: 1rem;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 24px 0 rgba(18,18,18,0.20);
  padding: 20px 16px;
  opacity: 1;
  transition: transform 0.36s cubic-bezier(0.8,0.1,0.3,1), opacity 0.25s;
}
.cookie-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 60%;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  border-radius: 6px;
  padding: 8px 18px;
  border: none;
  margin-left: 0;
  margin-top: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .15s;
  outline: none;
}
.cookie-btn.accept {
  background: #22347d;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffb200;
  color: #181818;
}
.cookie-btn.reject {
  background: #fff;
  color: #181818;
  border: 1.2px solid #22347d;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #181818;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #ffb200;
  text-decoration: none;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,22,22,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2050;
  opacity: 1;
  transition: opacity 0.24s cubic-bezier(0.5,0,0.4,1);
  pointer-events: auto;
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(18,18,18,0.21);
  min-width: 330px; max-width: 410px;
  padding: 38px 30px 29px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  color: #22347d;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 17px 0;
}
.cookie-category-label {
  font-size: 1rem;
  color: #22347d;
  padding-right: 12px;
}
.cookie-toggle {
  min-width: 54px;
  height: 30px;
  background: #dbe5fa;
  border-radius: 20px;
  position: relative;
  border: 1.3px solid #c1cbe0;
  display: flex;
  align-items: center;
  transition: background 0.21s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;height: 0;
}
.cookie-toggle-label {
  position: absolute;
  width: 30px; height: 30px;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-toggle-indicator {
  width: 22px; height: 22px;
  background: #22347d;
  border-radius: 100%;
  position: absolute;
  left: 4px; top: 4px;
  transition: left .25s cubic-bezier(.37,.01,.81,.99);
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-indicator {
  left: 28px;
  background: #ffb200;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 19px;
  background: none;
  border: none;
  color: #22347d;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #ffb200;
}

/* ========== RESPONSIVE: MOBILE-FIRST ================== */
@media (max-width: 1150px) {
  .footer-content {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo-contact, .footer-links, .social-media-links {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 980px) {
  .feature-grid,
  .services-list,
  .testimonial-slider,
  .testimonial-list,
  .card-container,
  .content-grid {
    gap: 18px;
  }
  .footer-content {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section, .features, .about-section, .contact-section, .legal {
    padding: 32px 8px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 38px 0 20px 0;
  }
  .features .content-wrapper, .testimonials .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .services-list, .testimonial-slider, .testimonial-list, .card-container, .content-grid {
    gap: 12px;
  }
  .feature-item, .service-item, .testimonial-card {
    min-width: 98vw;
    max-width: 100vw;
    padding: 23px 10px 17px 10px;
  }
  .footer-content {
    gap: 13px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo-contact img {
    height: 32px;
    width: 32px;
  }
}
@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .confirm-section h1 { font-size: 1.6rem; }
  .legal h1 { font-size: 1.35rem; }
  .cookie-modal-content {
    min-width: 90vw; max-width: 97vw; padding: 22px 8px 21px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 8px 5px;
    font-size: 0.98rem;
  }
  .footer-logo-contact {
    font-size: 0.98rem;
  }
}
/* STACK FEATURE GRID & TESTIMONIALS ON MOBILE */
@media (max-width: 950px) {
  .feature-grid, .services-list, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 550px) {
  .feature-item, .service-item, .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    padding: 17px 4vw 11px 4vw;
  }
}
/* Flex-direction adjustments for text-image-section on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ========== UTILITIES ========== */
.visually-hidden {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* ========== MICRO-INTERACTIONS ========== */
button, .cta, .cookie-btn {
  transition: box-shadow 0.18s, background 0.18s, color 0.14s, outline 0.1s;
}
button:active, .cta:active, .cookie-btn:active {
  outline: 2.5px solid #ffb200 !important;
  outline-offset: 2px;
}

/* ========== END ========== */
