/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
html, body {
  height: 100%;
  font-size: 16px;
  background: #fff;
  color: #222;
  scroll-behavior: smooth;
  font-family: 'Roboto', Arial, sans-serif;
}
body {
  min-height: 100vh;
  background-color: #fff;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul,[role='list'] {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
}
:focus {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* BASE LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
main {
  min-height: 60vh;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: relative;
  width: 100%;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1C2636;
  font-size: 16px;
  padding: 6px 2px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: #00BF63;
  border-bottom: 2px solid #1C2636;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1C2636;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(28,38,54,0.08);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
  min-width: 180px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #00BF63;
  color: #1C2636;
  box-shadow: 0 4px 14px rgba(28,38,54,0.14);
}

/* BURGER MENU (MOBILE NAVIGATION) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1101;
  background: #1C2636;
  color: #fff;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 32px;
  box-shadow: 0 1px 7px rgba(28,38,54,0.13);
  cursor: pointer;
  border: none;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #00BF63;
  color: #1C2636;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 390px;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(28,38,54,0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.1,.3,1);
  z-index: 1200;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #1C2636;
  color: #fff;
  border: none;
  border-radius: 8px;
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 26px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 1;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #00BF63;
  color: #1C2636;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 80px 0 0 0;
  padding: 30px 36px 30px 36px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1C2636;
  padding: 10px 0;
  width: 100%;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #00BF63;
  border-bottom: 2px solid #1C2636;
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN SECTIONS & HERO */
.section, .hero, .features, .services, .testimonials, .features-values, .features-benefits, .about-brand, .team, .contact-data, .contact-form, .find-us, .trainings, .cta, .policy, .confirmation {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: #fff;
}
@media (max-width: 767px) {
  .section, .hero, .features, .services, .testimonials, .features-values, .features-benefits, .about-brand, .team, .contact-data, .contact-form, .find-us, .trainings, .cta, .policy, .confirmation {
    margin-bottom: 36px;
    padding: 28px 0 28px 0;
  }
}

.hero {
  background: #1C2636;
  color: #fff;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 10px 32px -12px rgba(28,38,54,0.16);
}
.hero h1, .hero h2 {
  color: #fff;
}

/* CARD & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
.card {
  background: #fff;
  box-shadow: 0 1px 7px rgba(28,38,54,0.10);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 32px;
  min-width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(28,38,54,0.13), 0 1.5px 7px #1c26360b;
  transform: translateY(-3px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 28px;
  background: #f6f6f6;
  border-radius: 22px;
  box-shadow: 0 2px 9px rgba(28,38,54,0.10);
  border: 1.5px solid #1111;
  max-width: 560px;
  min-width: 240px;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px rgba(28,38,54,0.15);
  border-color: #00BF6320;
}
.testimonial-card p {
  color: #141414;
  font-size: 16px;
  line-height: 1.5;
}
.testimonial-card .stars {
  color: #111;
  font-size: 20px;
  letter-spacing: 1px;
}
.testimonial-card strong {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1C2636;
}
@media (max-width: 767px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 15px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* FEATURES SECTION (GENERIC) */
.features ul,
.features-values ul,
.features-benefits ul,
.services ul,
.trainings ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.features ul li, .features-values ul li, .features-benefits ul li, .services ul li, .trainings ul li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px rgba(28,38,54,0.10);
  min-width: 260px;
  padding: 26px 22px 22px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: transform 0.16s, box-shadow 0.16s;
  margin-bottom: 20px;
}
.features ul li:hover, .features ul li:focus-within,
.features-values ul li:hover, .features-values ul li:focus-within,
.features-benefits ul li:hover, .features-benefits ul li:focus-within,
.services ul li:hover, .services ul li:focus-within,
.trainings ul li:hover, .trainings ul li:focus-within {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 32px rgba(28,38,54,0.13);
}
.features ul li img,
.features-values ul li img,
.features-benefits ul li img,
.services ul li img,
.trainings ul li img {
  width: 38px;
  height: 38px;
}
.features ul li h3,
.features-values ul li strong,
.features-benefits ul li strong,
.services ul li strong,
.trainings ul li strong {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 20px;
  color: #1C2636;
  font-weight: 600;
}
.features ul li p,
.services ul li p,
.trainings ul li p,
.features-values ul li p,
.features-benefits ul li p {
  color: #444;
  font-size: 15px;
  margin-bottom: 0;
}
.price {
  display: inline-block;
  color: #00BF63;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 4px 0 0 0;
}
@media (max-width: 1024px) {
  .features ul,
  .features-values ul,
  .features-benefits ul,
  .services ul,
  .trainings ul {
    gap: 16px;
  }
}

/* CTA BLOCK */
.cta {
  background: #F7F7F7;
  border-radius: 32px;
  box-shadow: 0 3px 22px -8px rgba(28,38,54,0.10);
}
.cta h2 {
  font-size: 32px;
  color: #1C2636;
}

/* CONTACT & FOOTER */
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #767676;
  font-size: 15px;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: color 0.18s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #00BF63;
}
footer {
  border-top: 1.5px solid #ececec;
  background: #fff;
  padding: 38px 0 18px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 38px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1C2636;
}
.brand-info img {
  width: 40px;
  height: auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #646464;
  font-size: 15px;
}
.contact-info div, .contact-info img {
  display: inline-block;
  vertical-align: middle;
}
.contact-info img {
  width: 18px;
  margin-right: 7px;
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-bottom: 12px;
  }
}

/* POLICY & CONFIRMATION PAGE */
.policy h1,.confirmation h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 32px;
  color: #1C2636;
  margin-bottom: 22px;
}
.policy h2,.confirmation h2 {
  font-size: 22px;
  color: #212121;
}
.policy h3 {font-size:17px; color: #232323; margin: 18px 0 7px 0;}

.policy ul {
  margin-top: 8px;
  margin-bottom: 18px;
  padding-left: 20px;
}
.policy ul li {
  margin-bottom: 7px;
  list-style: disc;
}

/* CONTACT FORM/SECTIONS */
.contact-form ul {
  margin: 12px 0 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form ul li {
  font-size: 15px;
  color: #222;
}
.contact-form a.btn-primary {
  margin-top: 18px;
}
.find-us ul, .contact-data ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 0 0;
}
.find-us ul li,
.contact-data ul li {
  font-size: 15px;
  color: #232323;
  display: flex;
  align-items: center;
  gap: 7px;
}
.find-us img, .contact-data img {
  width: 18px;
  height: 18px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1C2636;
}
h1 {font-size: 36px; line-height: 1.15; margin-bottom: 10px;}
h2 {font-size: 28px; margin-bottom: 10px; line-height:1.2;}
h3 {font-size: 20px; margin-bottom: 9px; line-height:1.25;}
h4, h5, h6 {font-size: 17px; margin-bottom: 7px;}

@media (max-width: 767px) {
  h1 {font-size: 28px;}
  h2 {font-size: 21px;}
  h3 {font-size: 17px;}
}
p, li, span, strong, em {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #2a2a2a;
}
strong,
b {
  font-weight: 600;
  color: #181818;
}
em {
  color: #404040;
}

/* VISUAL HIERARCHY: SPACING */
.section:not(:last-child), .hero:not(:last-child), .features:not(:last-child), .services:not(:last-child), .testimonials:not(:last-child), .features-values:not(:last-child), .features-benefits:not(:last-child), .about-brand:not(:last-child), .team:not(:last-child), .contact-data:not(:last-child), .contact-form:not(:last-child), .find-us:not(:last-child), .trainings:not(:last-child), .cta:not(:last-child), .policy:not(:last-child), .confirmation:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section:not(:last-child), .hero:not(:last-child), .features:not(:last-child), .services:not(:last-child), .testimonials:not(:last-child), .features-values:not(:last-child), .features-benefits:not(:last-child), .about-brand:not(:last-child), .team:not(:last-child), .contact-data:not(:last-child), .contact-form:not(:last-child), .find-us:not(:last-child), .trainings:not(:last-child), .cta:not(:last-child), .policy:not(:last-child), .confirmation:not(:last-child) {
    margin-bottom: 32px;
  }
}

/* TABLES (If used) */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 26px;
}
th, td {
  border: 1px solid #e1e1e1;
  padding: 12px 10px;
}

/* OL for service step-lists */
ol {
  padding-left: 28px;
  margin: 14px 0 18px 0;
  color: #222;
}
ol li {
  margin-bottom: 7px;
}

/* ANIMATIONS */
.btn-primary, .mobile-menu, .mobile-menu-toggle, .testimonial-card, .card, .features ul li, .services ul li, .trainings ul li {
  transition: box-shadow 0.17s, transform 0.14s, background 0.14s;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(28,38,54,0.16);
  border-top: 2px solid #00BF63;
  padding: 24px 18px 24px 18px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerIn 0.44s cubic-bezier(0.6,0.3,0.25,1);
}
@keyframes cookieBannerIn{
  from{transform: translateY(100%); opacity:0;}
  to{transform: translateY(0);opacity:1;}
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  border-radius: 24px;
  padding: 10px 22px;
  font-family: 'Oswald',Arial,sans-serif;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-weight: 500;
  background: #1C2636;
  color: #fff;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  box-shadow: 0 1px 6px rgba(28,38,54,0.09);
}
.cookie-consent-banner button.cookie-accept {
  background: #00BF63;
  color: #fff;
}
.cookie-consent-banner button.cookie-reject {
  background: #ededed;
  color: #1C2636;
}
.cookie-consent-banner button.cookie-settings {
  background: transparent;
  color: #1C2636;
  border: 1.3px solid #1C2636;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #1C2636;
  color: #fff;
}
.cookie-consent-banner button.cookie-accept:hover, .cookie-consent-banner button.cookie-accept:focus {
  background: #008c47;
  color: #fff;
}
.cookie-consent-banner button.cookie-reject:hover, .cookie-consent-banner button.cookie-reject:focus {
  background: #ececec;
  color: #1C2636;
}
.cookie-consent-banner button.cookie-settings:hover, .cookie-consent-banner button.cookie-settings:focus {
  background: #1C2636;
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 14px 4vw;
    font-size: 14px;
  }
  .cookie-consent-banner .cookie-btns {
    gap: 12px;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5500;
  background: rgba(18,22,31,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.33s cubic-bezier(.7,.3,.4,1);
}
@keyframes cookieModalIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  padding: 44px 36px 32px 36px;
  box-shadow: 0 6px 32px rgba(28,38,54,0.19);
  width: 97vw;
  max-width: 420px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 21px;
  color: #1C2636;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 14px 0 20px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 16px;
}
.cookie-category strong {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1C2636;
  font-size: 15px;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type='checkbox'] {
  accent-color: #00BF63;
  width: 22px;
  height: 22px;
  border-radius: 18px;
  border: 2px solid #1C2636;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  color: #222;
  font-size: 22px;
  border: none;
  padding: 3px 8px;
  cursor: pointer;
  border-radius: 7px;
  transition: background .14s,color .14s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #e9e9e9;
  color: #111;
}
@media (max-width: 480px){
  .cookie-modal{padding:22px 7vw 18px 7vw;font-size:14px;}
}

/* UTILITIES */
.sr-only {
  position: absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* MONOCHROME SOPHISTICATED OVERRIDES */
body, .section, .cta, .content-wrapper, .features ul li, .services ul li {
  background: #fff;
  color: #1C2636;
}
.hero, .hero .container, .hero .content-wrapper {
  background: #1C2636;
  color: #fff;
}
.btn-primary:disabled, .btn-primary[aria-disabled='true'] {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.4);
}

/* RESPONSIVE FLEX DIRECTIONS */
.text-image-section, .content-grid, .card-container, .footer-menu, .contact-info {
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
  .contact-info {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* ACCESSIBILITY: FOCUS STYLES */
a:focus, button:focus, .btn-primary:focus, input:focus, .cookie-consent-banner button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #00BF63;
  outline-offset: 1.5px;
  z-index: 2;
}

/* --------- END --------- */
