/* CSS RESET & NORMALIZATION */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F5F8FB;
  color: #213751;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #213751;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4, 0, .2, 1);
}
a:focus {
  outline: 2px solid #60C4E0;
  outline-offset: 2px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', Helvetica, sans-serif;
  font-weight: bold;
  color: #213751;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.14;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.22;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #213751;
}
strong, b {
  font-weight: bold;
}

/* GEOMETRIC STRUCTURED BUTTONS */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.03em;
  border-radius: 8px;
  border: 2.5px solid #213751;
  padding: 12px 32px;
  background: #60C4E0;
  color: #213751;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 16px rgba(33,55,81,0.06);
  cursor: pointer;
  margin: 10px 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #213751;
  color: #F5F8FB;
  border-color: #60C4E0;
  box-shadow: 0 8px 24px rgba(33,55,81,0.10);
}

.cookie-btn.accept {
  background: #60C4E0;
  color: #213751;
  border-color: #213751;
}
.cookie-btn.reject {
  background: transparent;
  color: #213751;
  border-color: #213751;
}
.cookie-btn.settings {
  background: #213751;
  color: #F5F8FB;
  border-color: #60C4E0;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 16px rgba(33,55,81,0.11);
  opacity: 0.9;
}

/* HEADER STRUCTURE */
header {
  background: #F5F8FB;
  box-shadow: 0 2px 12px rgba(33,55,81,0.04);
  border-bottom: 3px solid #60C4E0;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  position: relative;
}
.logo img {
  max-height: 48px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #213751;
  padding: 6px 0 2px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #60C4E0;
  border-bottom: 3px solid #60C4E0;
}

header .cta-btn {
  margin-left: 24px;
  font-size: 1.07rem;
  padding: 10px 22px;
  min-width: 150px;
}

.mobile-menu-toggle {
  display: none;
  background: #213751;
  color: #F5F8FB;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  margin-left: 18px;
  z-index: 999;
  transition: background 0.22s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #60C4E0;
  color: #213751;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(33,55,81,0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.02,.29,.98);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #F5F8FB;
  background: transparent;
  border: none;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #60C4E0;
  color: #213751;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 88px;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  color: #F5F8FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #60C4E0;
}

/* HERO GEOMETRIC */
.hero {
  background: linear-gradient(115deg, #F5F8FB 80%, #60C4E0 140%);
  box-shadow: 0 6px 32px rgba(96,196,224,0.06);
  margin-bottom: 60px;
  padding: 0;
  position: relative;
}
.hero .container {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  line-height: 1.11;
  color: #213751;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.28rem;
  color: #213751;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* SECTION & SPACING RULES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1182px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.text-section {
  background: #F5F8FB;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,55,81,0.06);
  padding: 32px 28px;
  margin-bottom: 20px;
}

/* FLEX LAYOUTS FOR GRIDS */
.card-container,
.card-grid,
.feature-grid,
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(33,55,81,0.10);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 270px;
  padding: 28px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s cubic-bezier(.4,0,.2,1), transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(33,55,81,0.12);
  transform: translateY(-3px) scale(1.01);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border: 2.5px solid #60C4E0;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(33,55,81,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
  font-size: 1.13rem;
  color: #213751;
}
.testimonial-card h3 {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  color: #213751;
  line-height: 1.3;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: #60C4E0;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px rgba(33,55,81,0.15);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(96,196,224,0.10);
  padding: 24px 22px;
  flex-basis: calc(25% - 24px);
  min-width: 210px;
  max-width: 260px;
  border: 2.5px solid #F5F8FB;
  transition: border-color 0.16s, box-shadow 0.20s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #213751;
  margin-bottom: 8px;
  margin-top: 6px;
}
.feature-item p {
  color: #213751;
  font-size: 1rem;
}
.feature-item:hover {
  border-color: #60C4E0;
  box-shadow: 0 6px 18px rgba(96,196,224,0.14);
}

.industry-item {
  background: #fff;
  border: 2px solid #60C4E0;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(33,55,81,0.07);
  padding: 21px 18px;
  min-width: 230px;
  flex: 1 1 270px;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/**** CTA BANNER ****/
.cta-banner {
  background: #213751;
  color: #F5F8FB;
  margin-bottom: 0;
  padding: 48px 0 36px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.cta-banner h2 {
  color: #F5F8FB;
  font-size: 2.1rem;
  margin-bottom: 16px;
}
.cta-banner .cta-btn {
  background: #60C4E0;
  color: #213751;
  border: 2px solid #F5F8FB;
  margin-top: 8px;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #F5F8FB;
  color: #213751;
  border-color: #60C4E0;
}

/**** FOOTER ****/
footer {
  background: #213751;
  color: #F5F8FB;
  padding: 48px 0 30px 0;
  border-top: 3.5px solid #60C4E0;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1180px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.footer-navigation a {
  color: #60C4E0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 2.3px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.14s, color 0.15s;
}
.footer-navigation a:hover {
  border-bottom: 2.3px solid #F5F8FB;
  color: #F5F8FB;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: #F5F8FB;
  align-items: flex-start;
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-details span, .contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F5F8FB;
  font-size: 1rem;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.brand-footer img {
  max-height: 36px;
}

/**** COOKIE CONSENT BANNER ****/
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #213751;
  color: #F5F8FB;
  z-index: 5000;
  box-shadow: 0 -4px 24px rgba(33,55,81,0.14);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.42s cubic-bezier(.7,.02,.29,.98), opacity 0.33s;
  font-size: 1rem;
}
#cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

/**** COOKIE PREFERENCES MODAL ****/
#cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,55,81,0.92);
  z-index: 5050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity 0.25s, transform 0.18s;
}
#cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.12);
}
#cookie-modal .modal-content {
  background: #F5F8FB;
  color: #213751;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(33,55,81,0.20);
  padding: 32px 32px 22px 32px;
  max-width: 390px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-size: 1rem;
}
#cookie-modal .modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
#cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 1rem;
}
#cookie-modal input[type=checkbox]:not(:disabled) {
  accent-color: #60C4E0;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #60C4E0;
  font-size: 1.25rem;
  cursor: pointer;
}
#cookie-modal .close-modal:hover {
  color: #213751;
}

/**** BLOG & ARTICLE COMPONENTS ****/
article {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(96,196,224,0.12);
  margin-bottom: 20px;
  padding: 28px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1.9px solid #F5F8FB;
  transition: border-color 0.14s, box-shadow 0.19s;
}
article:hover {
  border-color: #60C4E0;
  box-shadow: 0 8px 26px rgba(96,196,224,0.14);
}
article h2 {
  margin-bottom: 6px;
}
article a {
  color: #60C4E0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 8px;
  transition: color 0.16s;
}
article a:hover, article a:focus {
  color: #213751;
  text-decoration: underline;
}

/**** CONTACT DETAILS & MAP ****/
.contact-map {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 12px rgba(33,55,81,0.07);
  padding: 16px 24px;
  margin: 16px 0 0 0;
  font-size: 1rem;
  color: #213751;
  display: flex;
  align-items: center;
  gap: 12px;
}

/**** FAQ STYLES ****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list h3 {
  color: #213751;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.faq-list p {
  color: #213751;
  font-size: 1rem;
}

/**** UTILITY CLASSES ****/
.text-center {
  text-align: center;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }

/* --- RESPONSIVE: MOBILE FIRST --- */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
    padding: 0 14px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .brand-footer {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 800px) {
  .feature-grid,
  .industry-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item,
  .industry-item {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    max-width: 96vw;
    padding: 0 9px;
  }
  header .container {
    height: 68px;
    padding: 0 10px;
  }
  .main-nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-navigation {
    gap: 9px;
    flex-direction: column;
  }
  .brand-footer {
    gap: 10px;
    flex-direction: column;
  }
  .testimonial-card {
    padding: 17px 10px;
  }
  .text-section {
    padding: 18px 11px;
  }
  .hero .container {
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .cta-banner {
    padding: 36px 0 22px 0;
  }
}
@media (max-width: 550px) {
  html, body {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cta-banner h2,
  h2 {
    font-size: 1.35rem;
  }
}
/***** MICRO-ANIMATIONS *****/
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, border 0.18s, transform 0.18s cubic-bezier(.4,0,.2,1);
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}
.mobile-menu {
  transition: transform 0.35s cubic-bezier(.7,.02,.29,.98);
}

/***** FORMS (if ever included) *****/
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
input, textarea, select {
  border: 2px solid #60C4E0;
  border-radius: 7px;
  padding: 9px 13px;
  outline: none;
  margin-bottom: 14px;
  background: #fff;
  color: #213751;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #213751;
}

/* Angular/geometric visual accents */
.feature-item, .card, .testimonial-card, .industry-item, .text-section, article, #cookie-modal .modal-content {
  position: relative;
}
.feature-item:before, .card:before, .testimonial-card:before, .industry-item:before, .text-section:before, article:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; left: -18px;
  width: 36px; height: 36px;
  background: #60C4E0;
  opacity: 0.12;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}

/* Only add accent on larger screens */
@media (max-width: 700px) {
  .feature-item:before, .card:before, .testimonial-card:before, .industry-item:before, .text-section:before, article:before {
    display: none;
  }
}

/***** Z-INDEX MANAGEMENT *****/
.mobile-menu,
#cookie-banner,
#cookie-modal {
  z-index: 5000;
}

/**** A11Y: FOCUS OUTLINE ****/
a:focus,
button:focus,
.cta-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.cookie-btn:focus {
  outline: 2.5px solid #60C4E0;
  outline-offset: 2.5px;
}

/***** END OF STYLE.CSS *****/
