/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #F0F3F8;
  background-color: #181C22;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #FDC740;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff9da;
}
ul, ol {
  padding-left: 24px;
}
main {
  flex: 1 0 auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E6EFF6;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #adc0d5;
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b {
  font-weight: 600;
  color: #FDC740;
}

/* CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.text-section {
  background: #21262b;
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px 0 rgba(28,36,42,0.045);
}

/* --- SPACING & FLEX LAYOUTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23272e;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(42,48,60,0.10);
  padding: 24px 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f3f4f6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(26,34,45,0.10);
  margin-bottom: 20px;
  color: #222c37;
  font-size: 1rem;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #13223c;
}
.testimonial-card footer {
  font-size: 0.98rem;
  color: #425469;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX LAYOUTS FOR CUSTOM CLASSES */
.feature-grid, .service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 24px 0;
}
.feature-grid li, .service-list li, .service-cards li {
  background: #252a30;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(19,22,28,0.08);
  padding: 24px 24px 20px 24px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
  max-width: 360px;
  border: 1px solid #313742;
}
.feature-grid img, .service-list img, .service-cards img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/******* HEADER & NAVIGATION ******/
header {
  background: #222835;
  border-bottom: 1px solid #262d35;
  box-shadow: 0 1px 8px 0 rgba(26,33,41,0.03);
  position: relative;
  z-index: 12;
}
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.logo-link img {
  height: 44px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #dbe7f4;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #384355;
  color: #FDC740;
}
.button.button-primary {
  background: #2D4A6A;
  color: #fff9da;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 11px 26px;
  border-radius: 7px;
  font-size: 1.09rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(45,74,106,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  outline: none;
  border-bottom: 2px solid #FDC740;
}
.button.button-primary:hover, .button.button-primary:focus {
  background: #1c2736;
  color: #FDC740;
  box-shadow: 0 2px 18px 0 rgba(45,74,106,0.15);
}
.button {
  display: inline-block;
  background: #444C54;
  color: #E6EFF6;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.button:hover, .button:focus {
  background: #2D4A6A;
  color: #FDC740;
}

/****** HAMBURGER MOBILE NAV ******/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FDC740;
  font-size: 2.1rem;
  margin-left: 10px;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 104;
  border-radius: 6px;
  transition: background 0.18s,color 0.18s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #1d2730;
  color: #FFEB8C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #232721e6;
  backdrop-filter: blur(3px);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.70,-0.2,.25,1.22);
  z-index: 1202;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 22px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  top: 16px;
  right: 24px;
  cursor: pointer;
  z-index: 1300;
  padding: 2px 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  color: #FDC740;
  background: #232a35;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 48px;
  padding-left: 0;
  gap: 10px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #EEF7FF;
  padding: 17px 32px;
  border-radius: 7px;
  margin-bottom: 6px;
  width: 92%;
  text-align: left;
  transition: background 0.16s, color 0.16s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1e2126;
  color: #FDC740;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
    font-size: 0.96rem;
  }
}
@media (max-width: 900px) {
  .main-nav{
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 730px) {
  header .container {
    padding: 7px 8px;
    gap: 10px;
  }
}
/****** HERO SECTION ******/
.hero-section {
  background: linear-gradient(112deg, #212A33 70%, #364456 100%);
  box-shadow: 0 4px 40px 0 rgba(26,32,41,0.13);
  position: relative;
  padding: 54px 0 48px 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.hero-section h1 {
  color: #FDC740;
  font-size: 2.3rem;
  text-shadow: 0 2px 8px #232E3C29;
}
.hero-section .subheadline {
  color: #b1b7c1;
  margin-bottom: 22px;
}
.hero-section .button-primary {
  margin-top: 12px;
}

/* --- STEP-TIMELINE, STEP-OVERVIEW --- */
.step-timeline,
.step-overview {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}
.step-timeline li,
.step-overview li {
  background: #21262B;
  border-left: 6px solid #FDC740;
  padding: 20px 22px;
  border-radius: 8px;
  flex: 1 1 220px;
  min-width: 180px;
  box-shadow: 0 2px 10px rgba(23,29,32,0.08);
  margin-bottom: 4px;
}
.step-timeline h4,
.step-overview h4 {
  color: #FDC740;
  font-size: 1.09rem;
  margin-bottom: 6px;
}
.step-timeline p,
.step-overview p {
  color: #d1dee6;
  font-size: 0.99rem;
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  margin-bottom: 24px;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #262f37;
  box-shadow: 0 2px 16px 0 rgba(27,33,41,0.09);
  color: #f2f5fa;
}
.pricing-table thead th {
  background: #2D4A6A;
  color: #fff9da;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  text-align: left;
  padding: 18px 16px;
  font-weight: bold;
  letter-spacing: 0.019em;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #354151;
}
.pricing-table td {
  padding: 17px 16px 15px 16px;
  font-size: 1rem;
  border-bottom: 1px solid #2d333c;
  vertical-align: top;
}
.pricing-table ul {
  list-style: disc;
  padding-left: 18px;
}

/****** FAQ ACCORDION ******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion > div {
  background: #222731;
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 2px 11px rgba(20,28,38,0.07);
  color: #f2f4f8;
  transition: box-shadow 0.13s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 24px rgba(27,38,42,0.13);
}
.faq-accordion h2, .faq-accordion h3 {
  font-size: 1.14rem;
  color: #FDC740;
  margin-bottom: 8px;
}
.faq-accordion p {
  color: #d5e2f3;
  font-size: 0.99rem;
}

/***** SUPPORT-CTA *****/
.support-cta {
  background: #1B2230;
  border-radius: 8px;
  padding: 22px 24px;
  text-align: center;
  margin-top: 26px;
  font-size: 1.03rem;
  color: #FFD700;
}
.support-cta a {
  color: #FDC740;
  text-decoration: underline;
  font-weight: bold;
}
.support-cta a:hover {
  color: #ffed9f;
}

/***** FOOTER *****/
footer {
  background: #21252B;
  color: #C0CCDB;
  padding: 52px 0 24px 0;
  border-top: 1px solid #252a33;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 120px;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #adc0d5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  margin-bottom: 3px;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FDC740;
}
.footer-contact p, .footer-contact a {
  font-size: 0.98rem;
  color: #7890ae;
  line-height: 1.6;
}
.footer-contact a:hover {
  color: #FDC740;
}
@media (max-width:700px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
  }
}

/***** TRUST BADGES & COMPETENCIES *****/
.core-competencies {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
}
.trust-badges img {
  background: #23292e;
  border-radius: 50%;
  padding: 8px;
  width: 56px;
  height: 56px;
  border: 1.5px solid #313742;
  transition: box-shadow 0.13s;
  box-shadow: 0 2px 10px rgba(31,41,54,0.09);
}
.trust-badges img:hover {
  box-shadow: 0 4px 22px #FDC74088;
}

/***** THANK YOU SECTION *****/
.thank-you-section {
  padding: 60px 0 54px 0;
  background: #1E232D;
  min-height: 280px;
}
.thank-you-section .button-primary {
  margin-top: 20px;
}

/****** COOKIE CONSENT *******/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1800;
  background: #242c34;
  color: #f0f4fa;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px 18px 24px;
  box-shadow: 0 -2px 16px 0 rgba(34,39,46,0.13);
  font-size: 1rem;
  animation: slideUpBanner 0.35s cubic-bezier(.92,-0.1,.35,1.3);
}
@keyframes slideUpBanner {
  0% {
    transform: translateY(100%); opacity:0;
  }
  100% {
    transform: translateY(0); opacity:1;
  }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #2D4A6A;
  color: #fff9da;
  transition: background 0.17s, color 0.17s;
}
.cookie-consent-banner .accept {
  background: #FDC740;
  color: #26364e;
}
.cookie-consent-banner .accept:hover {
  background: #ffe27f;
  color: #1a2536;
}
.cookie-consent-banner .reject {
  background: #272b33;
  color: #fff9da;
  border: 1px solid #434c54;
}
.cookie-consent-banner .reject:hover {
  background: #2d415c;
  color: #FDC740;
}
.cookie-consent-banner .settings {
  background: #2D4A6A;
  color: #FDC740;
  border: 1px solid #FDC740;
}
.cookie-consent-banner .settings:hover {
  background: #FDC740;
  color: #2D4A6A;
}

/**** COOKIE MODAL POPUP ****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 90vw;
  max-width: 440px;
  background: #232a33;
  border-radius: 12px;
  box-shadow: 0 8px 56px 0 rgba(13, 21, 27, 0.32);
  color: #f0f4fa;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(0.97);
  animation: fadeInModal 0.36s cubic-bezier(.92,-0.1,.35,1.3);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes fadeInModal {
  0% {
    opacity: 0; transform: translate(-50%, -35%) scale(0.93);
  }
  75% {
    opacity: 0.98; transform: translate(-50%, -51%) scale(1.03);
  }
  100% {
    opacity: 1; transform: translate(-50%, -50%) scale(1);
  }
}
.cookie-modal h2 {
  color: #FDC740;
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #27375a;
}
.cookie-modal .category-label {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .category-toggle {
  margin-left: 14px;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 44px; height: 24px;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: #384355;
  border-radius: 22px;
  transition: background .18s;
}
.cookie-modal .toggle-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #FDC740;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #2D4A6A;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
  background: #FDC740;
}
.cookie-modal .toggle-switch input:disabled + .toggle-slider {
  background: #444950;
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal button {
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: #2D4A6A;
  color: #fff9da;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal button.accept {
  background: #FDC740;
  color: #26364e;
}
.cookie-modal button.accept:hover {
  background: #ffe27f;
  color: #1a2536;
}
.cookie-modal button.reject {
  background: #272b33;
  color: #fff9da;
  border: 1px solid #434c54;
}
.cookie-modal button.reject:hover {
  background: #2d415c;
  color: #FDC740;
}
.cookie-modal button.close {
  background: transparent;
  color: #FDC740;
  font-size: 1.4rem;
  align-self: flex-end;
  margin-top: -14px;
  margin-bottom: -8px;
}
.cookie-modal button.close:hover {
  background: #1d232b;
}

/********* RESPONSIVE DESIGN **********/
@media (max-width: 1060px) {
  .feature-grid li, .service-list li, .service-cards li {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .step-timeline, .step-overview {
    flex-direction: column;
    gap: 16px;
  }
  .trust-badges {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .section, .hero-section { padding: 20px 5px; }
  .card-container, .content-grid, .feature-grid, .service-list, .service-cards, .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .content-wrapper.center { align-items: stretch; text-align: left; }
  .testimonial-card { flex-direction: column; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .hero-section { padding: 28px 0 16px 0; }
  .footer-logo img { height: 32px; }
  .footer-nav a, .footer-contact p { font-size: 0.92rem; }
}

/********* MICRO-INTERACTIONS **********/
/* Card hover */
.feature-grid li:hover, .service-list li:hover, .service-cards li:hover, .card:hover {
  box-shadow: 0 4px 22px rgba(45,74,106,0.07);
  border-color: #FDC740;
  cursor: pointer;
  transform: translateY(-1px) scale(1.01);
  transition: box-shadow 0.16s, border-color 0.14s, transform 0.16s;
}
/* Transition on buttons and links */
a, .button, .button-primary, .main-nav a, .mobile-nav a {
  transition: background 0.17s, color 0.17s, box-shadow 0.13s, border 0.15s, outline 0.14s;
}
/*********** FORMS (for contact, GDPR, etc. if present) **********/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #333b45;
  background: #242c32;
  color: #e6f0ff;
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FDC740;
  box-shadow: 0 0 0 2px #fdc74033;
}
label {
  color: #9db3c5;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
  font-size: 1rem;
  display: inline-block;
}

/***** ACCESSIBILITY & FOCUS STATES *****/
a:focus, .button:focus, input:focus, textarea:focus, select:focus {
  outline: 2px dashed #FDC740;
  outline-offset: 2px;
}

/***** SCROLLBAR (INDUSTRIAL MODERN EFFECT) *****/
::-webkit-scrollbar {
  width: 10px;
  background: #232A31;
}
::-webkit-scrollbar-thumb {
  background: #313742;
  border-radius: 8px;
  border: 2px solid #232a31;
}
::-webkit-scrollbar-thumb:hover {
  background: #2D4A6A;
}

/***** HIDE GRID & COLUMN CSS (FORBIDDEN) *****/
/* NO display: grid, columns, or column-* properties anywhere! */
