/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #1F3D42;
  color: #DEE6DE;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
a {
  color: #F4B942;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff3d0;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F4B942;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  color: #DEE6DE;
  font-size: 1.17rem;
  font-weight: 400;
  margin-bottom: 22px;
  opacity: 0.93;
}
p {
  margin-bottom: 14px;
  color: #DEE6DE;
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  color: #F4B942;
  font-weight: 600;
}
em, i {
  color: #9fffe3;
}
blockquote {
  font-style: italic;
  border-left: 3px solid #F4B942;
  margin: 20px 0 20px 0;
  padding-left: 18px;
  color: #F4B942;
  background: rgba(31,61,66,0.28);
}

/* GENERAL LAYOUT CLASSES */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #223f46;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(36,50,60,0.21);
  padding: 32px 26px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid transparent;
}
.card:hover, .card:focus {
  border-color: #F4B942;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 32px 0 rgba(244,185,66,0.16);
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #263f43;
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 240px;
  box-shadow: 0 1.5px 9px 0 rgba(31,61,66,0.13);
  margin-bottom: 20px;
}

/* HEADER */
header {
  width: 100%;
  background: #1F3D42;
  min-height: 68px;
  box-shadow: 0 2px 24px 0 rgba(31,61,66,0.07);
  position: sticky;
  top: 0;
  z-index: 120;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  min-height: 68px;
  justify-content: space-between;
  position: relative;
}
header a img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #DEE6DE;
  font-weight: 500;
  padding: 6px 0 6px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #F4B942;
  border-bottom: 2px solid #F4B942;
}
.button.primary {
  background: #F4B942;
  color: #223f46;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  padding: 13px 28px;
  font-size: 1.07rem;
  cursor: pointer;
  margin-left: 12px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px 0 rgba(244,185,66,0.13);
  transition: background 0.15s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  position: relative;
  overflow: hidden;
}
.button.primary:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,243,208,0.12);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}
.button.primary:hover:after, .button.primary:focus:after {
  width: 140%;
  height: 320%;
}
.button.primary:hover, .button.primary:focus {
  background: #ffdc81;
  color: #1F3D42;
  box-shadow: 0 8px 24px 0 rgba(244,185,66,0.2);
  transform: translateY(-1px) scale(1.03);
}
.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.16s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #F4B942;
  margin-left: 16px;
  cursor: pointer;
  z-index: 151;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff3d0;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,63,70,0.98);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(.33,1.44,.86,1) 0s;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: 0 4px 44px 0 rgba(31,61,66,0.36);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F4B942;
  font-size: 2.3rem;
  cursor: pointer;
  margin: 24px 22px 0 0;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff3d0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin-top: 36px;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #DEE6DE;
  font-size: 1.22rem;
  padding: 7px 15px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  width: fit-content;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4B942;
  color: #223f46;
}

@media (max-width: 1000px) {
  header nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {display: none !important;}
}

/* HERO SECTION */
.hero {
  background: linear-gradient(110deg,#1F3D42 70%,#3a627b 100%);
  box-shadow: 0 4px 36px 0 rgba(31,61,66,0.09);
  padding-top: 54px;
  padding-bottom: 52px;
  margin-bottom: 56px;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #F4B942;
  font-size: 2.7rem;
  margin-bottom: 18px;
}
.hero .button.primary {
  margin-top: 24px;
}

/* FEATURES GRID (for index) */
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid li {
  background: #223f46;
  border-radius: 15px;
  box-shadow: 0 2.6px 18px rgba(244,185,66,0.08);
  padding: 26px 21px 18px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  min-width: 210px;
  flex: 1 1 220px;
  gap: 10px;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid li img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
  filter: drop-shadow(0 2px 8px #f4b94133);
}
.feature-grid li h3 {
  color: #F4B942;
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.feature-grid li p {
  color: #DEE6DE;
  font-size: 0.98rem;
  margin-bottom: 0;
  text-align: center;
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 6.5px 36px rgba(244,185,66,0.18);
  transform: translateY(-3px) scale(1.022);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature-grid li {
    width: 100%;
    min-width: unset;
  }
}

/* ABOUT / TEXT SECTION */
.text-section ul {
  margin-bottom: 14px;
}
.text-section h3 {
  color: #F4B942;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.usp-highlights {
  margin-top: 14px;
  background: #21343a;
  padding: 12px 15px 12px 19px;
  border-left: 5px solid #F4B942;
  border-radius: 6px;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F8FAFD;
  color: #2D3C3C;
  border-radius: 18px;
  box-shadow: 0 3px 21px 0 #1f3d4213;
  min-width: 270px;
  max-width: 400px;
  font-size: 1rem;
  margin-bottom: 20px;
  border-left: 6px solid #F4B942;
  position: relative;
}
.testimonial-card p {
  color: #2d3c3c;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #1F3D42;
  font-size: 0.97rem;
  opacity: 0.81;
  font-style: italic;
}
.testimonial-card:before {
  content: '\201C';
  color: #F4B942;
  font-size: 2.3rem;
  position: absolute;
  left: 12px;
  top: 8px;
  opacity: 0.13;
}
.testimonial-card:after {
  content: '';
  display: block;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 #F4B94233;
  border-left-color: #1F3D42;
}
.testimonials h2 {
  color: #F4B942;
  margin-bottom: 18px;
}

/* CTA SECTION */
.cta {
  background: #2c535e;
  border-radius: 18px;
  padding: 38px 22px;
  margin-bottom: 54px;
  box-shadow: 0 6px 24px 0 #f4b94224;
  text-align: center;
  position: relative;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: #F4B942;
  font-size: 1.4rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.cta p {
  color: #DEE6DE;
  max-width: 600px;
  font-size: 1.08rem;
  margin-bottom: 18px;
}

/* FOOTER */
footer {
  background: #1F3D42;
  padding: 34px 0 0 0;
  box-shadow: 0 -1px 18px 0 rgba(31,61,66,.04);
  position: relative;
  z-index: 100;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 2px;
}
.footer-menu a {
  font-size: 0.99rem;
  color: #F4B942;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.93;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff3d0;
}
.brand-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.brand-footer img {
  height: 39px;
  width: auto;
}
.brand-footer p {
  color: #DEE6DE;
  font-size: 0.93rem;
  opacity: 0.77;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #223f46;
  color: #DEE6DE;
  padding: 18px 16px 18px 18px;
  box-shadow: 0 -2px 19px 0 rgba(31,61,66,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  z-index: 2500;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.41,.99,.82,1.02);
  transform: translateY(0);
}
.cookie-consent.hide {
  transform: translateY(160%);
  pointer-events: none;
}
.cookie-consent-message {
  flex: 1 1 300px;
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  border: none;
  font-size: 1.02rem;
  cursor: pointer;
  margin-right: 3px;
  margin-bottom: 2px;
  transition: background 0.15s,color 0.15s, box-shadow 0.13s;
  box-shadow: 0 1.2px 6px #1f3d4231;
}
.cookie-btn.accept {
  background: #F4B942;
  color: #223f46;
  font-weight: 600;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffdc81;
}
.cookie-btn.reject {
  background: #252d2b;
  color: #F4B942;
  font-weight: 600;
  border: 1px solid #F4B942;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #364948;
  color: #ffdc81;
}
.cookie-btn.settings {
  background: #DEE6DE;
  color: #223f46;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f4f4db;
  color: #223f46;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,37,42,0.64);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.29s;
}
.cookie-modal-overlay.active {
  opacity: 1; visibility: visible;
}
.cookie-modal {
  background: #223f46;
  color: #DEE6DE;
  border-radius: 17px;
  max-width: 410px;
  min-width: 292px;
  padding: 28px 28px 16px 26px;
  box-shadow: 0 12px 40px 0 rgba(31,61,66,0.32);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: cookie-fadein 0.44s cubic-bezier(.33,1.4,.62,1.06);
}
@keyframes cookie-fadein {
  from { transform: scale(0.94) translateY(80px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #F4B942;
  margin-bottom: 8px;
}
.cookie-modal-category {
  margin-bottom: 14px;
}
.cookie-modal-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #DEE6DE;
}
.cookie-toggle {
  width: 34px; height: 20px;
  display: inline-block;
  border-radius: 18px;
  background: #DEE6DE;
  position: relative;
  margin-right: 8px;
  transition: background 0.18s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-switch {
  width: 17px; height: 17px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  background: #F4B942;
  transition: left 0.2s, background 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-switch {
  left: 15px;
  background: #2eb5a8;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #F4B942;
  font-size: 1.32rem;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 3;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #fff3d0;
}

/* RESPONSIVE & MOBILE */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 760px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 12px;
  }
  .section,
  .hero, .cta {
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 0 !important;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 30px;
    margin-bottom: 34px;
  }
  .features, .about, .services, .testimonials, .cta, .contact {
    margin-bottom: 34px;
    padding: 16px 7px !important;
  }
  .content-grid,
  .card-container,
  .features .content-wrapper,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .card {
    padding: 20px 10px;
  }
  .cta {
    border-radius: 0;
  }
}

@media (max-width: 500px) {
  .testimonial-card,
  .feature-item,
  .card {
    padding: 12px 5vw !important;
    border-radius: 12px !important;
    min-width: unset;
    max-width: 98vw;
    font-size: 0.97rem;
  }
  .footer-menu {
    flex-direction: column;
    gap: 5px;
  }
}

/* FORM ELEMENTS */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 7px 12px;
  background: #DEE6DE;
  color: #223f46;
  border-radius: 4px;
  border: 1px solid #bbb;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.16s;
}
input:focus, select:focus, textarea:focus {
  border-color: #F4B942;
}

/* ANIMATIONS & MICROINTERACTIONS */
.button, .button.primary, .footer-menu a, .feature-grid li, .testimonial-card, .feature-item, .card {
  transition: box-shadow 0.18s, background 0.14s, transform 0.14s, color 0.14s;
}
.button:active, .feature-grid li:active, .testimonial-card:active, .feature-item:active, .card:active {
  transform: scale(0.99);
}

/* Z-INDEX MANAGEMENT */
header {
  z-index: 120;
}
.mobile-menu {
  z-index: 300;
}
.cookie-consent {
  z-index: 2500;
}
.cookie-modal-overlay {
  z-index: 2600;
}

/* Remove position: absolute for content elements (only used for testim. decorative quotes, modal closes etc.) */

/* VISUAL FUTURISTIC ACCENTS */
/* Neon accent underline for focused elements */
.card:focus-within, .feature-grid li:focus-within, .footer-menu a:focus {
  outline:2px solid #F4B942;
  outline-offset: 2px;
}
.button.primary:focus {
  outline:2px solid #1F3D42;
}

/* Neon glow on accent */
.button.primary:hover, .button.primary:focus,
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 5px 32px 0 #f4b94261, 0 1.5px 7px #223f4641;
}

/* Decorative lines for hero backgrounds */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  right: 0; top: 0;
  width: 150px; height: 100%;
  background: linear-gradient(135deg, #F4B94230 10%, #43ffe3 80%, #1f3d42 100%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.hero .container, .hero .content-wrapper {
  position: relative;
  z-index: 2;
}

/* Accessibility: Always high contrast in testimonials */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #282c2c !important;
}

/* Hide visually but keep accessible: Utility class */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* == End of Style == */
