/* CSS RESET AND BASE TYPOGRAPHY ------------------------ */
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,
main, 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;
  font-weight: 400;
  background: #fff;
  color: #16405B;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}

::-webkit-input-placeholder { color: #A6B1BB; }
::-moz-placeholder { color: #A6B1BB; }
:-ms-input-placeholder { color: #A6B1BB; }
::placeholder { color: #A6B1BB; }

/* LAYOUT CONTAINER ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* TYPOGRAPHY ------------------------------------------------ */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #16405B;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #16405B;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #16405B;
}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #16405B;
}
strong {
  font-weight: 700;
}

@media (min-width: 600px) {
  h1, .hero h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.35rem; }
}
@media (min-width: 900px) {
  h1, .hero h1 { font-size: 3.5rem; }
  h2 { font-size: 2.65rem; }
  h3 { font-size: 1.5rem; }
}

/* HEADER & NAVIGATION -------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(22,64,91,0.05);
  position: sticky;
  top: 0;
  z-index: 120;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.18s;
  color: #16405B;
  position: relative;
}
nav.main-nav a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #E6A540;
  transition: width 0.2s;
  margin-top: 3px;
}
nav.main-nav a:hover:after, nav.main-nav a:focus:after {
  width: 28px;
}
nav.main-nav a.cta {
  background: #E6A540;
  color: #16405B;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 700;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(230,165,64,0.10);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
nav.main-nav a.cta:hover, nav.main-nav a.cta:focus {
  background: #16405B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(22, 64, 91, 0.18);
}

/* MOBILE NAVIGATION ---------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  background: #E6A540;
  color: #16405B;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  z-index: 160;
  margin-left: 20px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #16405b;
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
  box-shadow: -2px 0 32px rgba(22,64,91,0.10);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #16405B;
  font-size: 2.2rem;
  margin: 24px 32px 12px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E6A540;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin: 0 32px;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #16405B;
  padding: 6px 0;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7E9ED;
  color: #E6A540;
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 990px) {
  nav.main-nav {
    display: none !important;
  }
}

/* HERO SECTION --------------------------------------------- */
.hero {
  background: #F8F9FA;
  padding: 70px 0 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 24px;
}
.hero p {
  font-size: 1.2rem;
  color: #233f52;
}
.hero .cta {
  margin-top: 16px;
}

/* SECTIONS ------------------------------------------------- */
.section,
.features,
.services,
.projects,
.about,
.process,
.contact,
.privacy,
.gdpr,
.cookie-policy,
.terms-service,
.faq,
.thank-you,
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:768px) {
  .section,
  .features,
  .services,
  .projects,
  .about,
  .process,
  .contact,
  .privacy,
  .gdpr,
  .cookie-policy,
  .terms-service,
  .faq,
  .thank-you,
  .cta {
    padding: 32px 5vw;
    margin-bottom: 40px;
  }
}

/* LAYOUT: FEATURE GRID, CARDS, FLEX UTILITY ---------------- */
.feature-grid, .feature-list, .features .content-grid, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22, 64, 91, 0.07);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  opacity: 0.95;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 28px rgba(22, 64, 91, 0.12);
  transform: translateY(-4px) scale(1.025);
}

.card-container,
.card-grid,
.projects .card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(22, 64, 91,0.07);
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  padding: 32px 28px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(22, 64, 91, 0.09);
  transform: translateY(-2px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* TESTIMONIALS --------------------------------------------- */
.testimonials .testimonial-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #E7E9ED;
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(22,64,91,0.07);
  color: #16405B;
  min-width: 220px;
  max-width: 600px;
  font-feature-settings: "ss01" on;
  transition: box-shadow .18s, transform .16s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #16405B;
  font-style: italic;
  line-height: 1.75;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #746E5A;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(22,64,91,0.12);
  transform: scale(1.018);
}
@media (min-width: 600px) {
  .testimonials .content-wrapper {
    gap: 28px;
  }
  .testimonials {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
  .testimonial-card {
    min-width: 320px;
    flex: 1 1 320px;
    margin-right: 0;
    margin-bottom: 0;
  }
}

/* FAQ ACCORDION (BASIC MINIMAL) ---------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #E7E9ED;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(22, 64, 91, 0.06);
  padding: 20px 24px;
  transition: box-shadow 0.16s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 18px rgba(22,64,91,0.12);
}
.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* CTA SECTION ---------------------------------------------- */
.cta, .cta .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(22, 64, 91,0.07);
  margin: 0 auto;
  padding: 45px 26px;
  text-align: center;
}
.cta .cta, .cta a.cta {
  display: inline-block;
  background: #E6A540;
  color: #16405B;
  padding: 12px 38px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(230,165,64,0.13);
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.16s;
}
.cta .cta:hover, .cta .cta:focus, .cta a.cta:hover, .cta a.cta:focus {
  background: #16405B;
  color: #fff;
  box-shadow: 0 8px 24px rgba(22,64,91,0.20);
}
@media (max-width: 600px) {
  .cta, .cta .cta {
    padding: 30px 7vw;
    font-size: 1rem;
  }
}

/* CONTACT ------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 20px 0;
}
.contact-info img {
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.8;
}

/* FOOTER -------------------------------------------------- */
footer {
  background: #F8F9FA;
  color: #16405B;
  padding: 48px 0 24px;
  box-shadow: 0 -2px 16px rgba(22, 64, 91, 0.04);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  font-size: 1rem;
  color: #16405B;
  font-weight: 500;
  opacity: 0.88;
  border-radius: 4px;
  padding: 5px 10px;
  transition: color 0.15s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E6A540;
  background: #E7E9ED;
}
.footer-contact {
  text-align: center;
}
.footer-contact p {
  font-size: 0.97rem;
  opacity: 0.92;
  margin-bottom: 4px;
  color: #16405B;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.7;
}
footer p {
  font-size: 0.94rem;
  opacity: 0.48;
  margin-top: 12px;
}
@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    text-align: left;
  }
}

/* COOKIE CONSENT BANNER ------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6010;
  background: #fff;
  color: #16405B;
  box-shadow: 0 -2px 24px rgba(22,64,91,0.17);
  border-radius: 16px 16px 0 0;
  padding: 28px 10vw 16px 10vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), opacity 0.25s;
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  font-size: 1rem;
  color: #16405B;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border: none;
  border-radius: 20px;
  padding: 8px 28px;
  background: #E7E9ED;
  color: #16405B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button.accept {
  background: #E6A540;
  color: #16405B;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #16405B;
  color: #fff;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus,
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #16405B;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 21px 5vw 12px 5vw;
    gap: 16px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
  }
}

/* COOKIE PREFERENCES MODAL ---------------------------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,64,91,0.50);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 38px 34px 28px;
  min-width: 310px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 6px 42px rgba(22,64,91,0.18);
  position: relative;
  animation: fadeInModal 0.38s;
}
@keyframes fadeInModal {
  from { transform: scale(0.91) translateY(22px);
         opacity: .25; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #16405B;
}
.cookie-modal .modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 1rem;
  color: #16405B;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #E6A540;
  width: 21px;
  height: 21px;
}
.cookie-modal .cookie-legend {
  font-size: 1rem;
  color: #636B74;
  margin: 4px 0 0 1.5em;
  line-height: 1.45;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.cookie-modal button {
  border: none;
  border-radius: 18px;
  padding: 8px 26px;
  background: #E7E9ED;
  color: #16405B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal button.accept {
  background: #E6A540;
  color: #16405B;
}
.cookie-modal button.accept:hover,
.cookie-modal button.accept:focus {
  background: #16405B;
  color: #fff;
}
.cookie-modal button.reject:hover,
.cookie-modal button.reject:focus {
  background: #E6A540;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 17px;
  top: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #16405B;
  cursor: pointer;
  z-index: 9110;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover {
  color: #E6A540;
}

/* FORMS & BUTTONS ------------------------------------------ */
button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #E6A540;
  color: #16405B;
  padding: 9px 24px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(230, 165, 64, 0.08);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #16405B;
  color: #fff;
  box-shadow: 0 4px 18px rgba(22,64,91,0.18);
}
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #E7E9ED;
  padding: 9px 13px;
  color: #16405B;
  background: #F8F9FA;
  transition: border 0.13s;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #E6A540;
  outline: none;
}

/* TABLES (minimalist) -------------------------------------- */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}
th, td {
  border: none;
  padding: 13px 7px;
  text-align: left;
}
th {
  border-bottom: 1.5px solid #E7E9ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #16405B;
}
td {
  color: #16405B;
}

/* MISC SPACING --------------------------------------------- */
.section, section > .container {
  margin-bottom: 60px;
}
.card {
  margin-bottom: 20px;
}
.card-container, .card-grid, .content-grid, .feature-grid {
  gap: 24px;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) ------------------------- */
@media (max-width: 990px) {
  .feature-grid {
    flex-direction: column;
  }
  .feature-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  nav.main-nav { display: none; }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 9px;
    padding-right: 9px;
  }
  .feature-item, .card, .testimonial-card {
    padding: 18px 11px;
  }
  .content-wrapper, .text-section {
    gap: 18px;
  }
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .hero {
    padding: 42px 0 30px;
  }
  header .container {
    padding: 7px 8px;
  }
}

/* UTILITY CLASSES ------------------------------------------ */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.section-title {
  margin-bottom: 20px;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}

/* SCROLLBAR (Minimal, optional) ---------------------------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-thumb { background: #E7E9ED; border-radius: 7px; }

/* A11Y FOCUS ----------------------------------------------- */
a:focus, button:focus, .cta:focus {
  outline: 2px dashed #E6A540;
  outline-offset: 2px;
}

/* ANIMATIONS and MICRO-INTERACTIONS ------------------------ */
a, button, .cta, .feature-item, .card, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, background 0.16s, color 0.15s, transform 0.14s;
}

/* END */
