/* =====================
   CSS RESET & BASE STYLES
   ===================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F7FA;
  color: #1B3357;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #29A3A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #185193;
  text-decoration: underline;
}
ul, ol {
  padding-left: 2em;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B3357;
  margin-bottom: 12px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}

p, span, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #1B3357;
}
strong {
  font-weight: 700;
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(27,51,87,0.06);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(27,51,87,0.20);
  transform: translateY(-2px) scale(1.02);
}
.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;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(27,51,87,0.08);
  font-style: italic;
  flex-direction: column;
  border-left: 5px solid #29A3A8;
  transition: box-shadow 0.2s;
  max-width: 650px;
}
.testimonial-card span {
  color: #1B3357;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  align-self: flex-end;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(27,51,87,0.25);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  width: 100%;
  background: linear-gradient(90deg,#1B3357 45%,#29A3A8 100%);
  box-shadow: 0 1px 12px rgba(27, 51, 87, 0.08);
  padding: 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px 0;
}
.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #29a3a855;
  color: #F7F7FA;
}
.main-nav .cta-primary {
  background: #29A3A8;
  color: #fff;
  box-shadow: 0 2px 8px rgba(27,51,87,0.10);
  padding: 9px 22px;
  border-radius: 24px;
  margin-left: 8px;
  transition: background 0.25s, color 0.2s;
  font-weight: 700;
}
.main-nav .cta-primary:hover {
  background: #1B3357;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  color: #fff;
  margin-left: 18px;
  padding: 7px 7px;
  transition: background 0.2s;
  border-radius: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #29A3A8;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #1B3357;
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.75,0,0.25,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 30px 20px 0;
  background: none;
  color: #fff;
  font-size: 2.8rem;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #29A3A8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 2px;
  border-radius: 8px;
  transition: background 0.16s, color 0.13s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #29A3A8;
  color: #fff;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav .cta-primary {
    padding: 9px 16px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================
   HERO & SECTIONS
   ===================== */
.hero {
  background: linear-gradient(120deg, #1B3357 60%, #29A3A8 100%);
  color: #fff;
  min-height: 380px;
  padding: 70px 0 60px 0;
  display: flex;
  align-items: center;
}
.hero h1,
.hero p {
  color: #fff;
}

.features {
  background: #fff;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.feature-card {
  background: #F7F7FA;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(27,51,87,0.09);
  padding: 28px 22px;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 6px 26px rgba(27,51,87,0.17);
  transform: translateY(-3px) scale(1.03);
}
.feature-card img {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(41,163,168,0.10);
  padding: 9px;
  margin-bottom: 5px;
}

.services-overview, .brand-promise {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(27,51,87,0.06);
  padding: 40px 22px;
  margin-bottom: 40px;
}
.services-overview ul, .brand-promise ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.services-overview .cta-secondary, .brand-promise .cta-primary {
  margin-top: 14px;
}

.values {
  background: linear-gradient(110deg, #f7f7fa 65%, #e6f0fb 100%);
  border-radius: 18px;
}
.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.value-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(27,51,87,0.13);
  padding: 25px 20px;
  max-width: 330px;
  min-width: 220px;
}

.services {
  background: #fff;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.service-card {
  background: #F7F7FA;
  border-radius: 15px;
  box-shadow: 0 1px 8px rgba(27,51,87,0.08);
  padding: 28px 22px;
  max-width: 340px;
  min-width: 220px;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.service-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
}
.service-card:hover {
  box-shadow: 0 4px 22px rgba(27,51,87,0.15);
  transform: translateY(-3px) scale(1.02);
}

.process {
  background: linear-gradient(100deg, #f7f7fa 65%, #29a3a81a 100%);
  border-radius: 18px;
}
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.step {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(27,51,87,0.10);
  padding: 23px 16px;
  max-width: 250px;
  min-width: 180px;
  text-align: center;
  margin-bottom: 20px;
}
.step img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

.case-studies {
  background: #fff;
}
.project-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.project-teaser {
  background: #F7F7FA;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(27,51,87,0.08);
  padding: 24px 20px;
  max-width: 360px;
  min-width: 220px;
  margin-bottom: 20px;
}

.pricing {
  background: linear-gradient(110deg,#fff 65%, #29a3a81a 100%);
  border-radius: 19px;
}
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.pricing-table {
  background: #F7F7FA;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(27,51,87,0.10);
  padding: 32px 22px 28px 22px;
  max-width: 320px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.pricing-table:hover {
  box-shadow: 0 7px 26px rgba(27,51,87,0.17);
  transform: translateY(-3px) scale(1.03);
}
.pricing-table h2 {
  font-size: 1.4rem;
  color: #1B3357;
}
.pricing-table ul {
  margin-bottom: 16px;
  margin-top: 2px;
}
.pricing-table .price {
  font-size: 2rem;
  color: #29A3A8;
  font-weight: bold;
}

.contact {
  background: #fff;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.confirmation-info {
  margin-top: 10px;
  padding: 12px 14px;
  background: #29a3a81a;
  border-radius: 10px;
  color: #1B3357;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(27,51,87,0.08);
  padding: 18px 18px;
}
.faq-item h2 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(27,51,87,0.07);
  margin-bottom: 40px;
}

.cta {
  background: linear-gradient(90deg,#29A3A8 8%,#1B3357 80%);
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 2px 18px rgba(27,51,87,0.08);
  padding: 44px 28px;
  margin: 40px 0 28px 0;
  display: flex;
  align-items: center;
}
.cta h2, .cta p {
  color: #fff;
}
.text-section {
  max-width: 700px;
}

.thank-you {
  background: linear-gradient(100deg, #29A3A8 5%, #F7F7FA 95%);
  border-radius: 19px;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.thank-you h1 {
  color: #1B3357;
}

/* =====================
   BUTTONS & LINKS
   ===================== */
.cta-primary, .cta-secondary, .cookie-btn {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: 24px;
  border: none;
  background: #29A3A8;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(41,163,168,0.13);
  cursor: pointer;
  transition: background 0.22s, color 0.13s, box-shadow 0.22s, transform 0.18s;
  margin-top: 6px;
}
.cta-primary:hover,
.cta-primary:focus,
.cookie-btn:hover,
.cookie-btn:focus {
  background: #1B3357;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 5px 18px rgba(27,51,87,0.17);
}
.cta-secondary {
  background: #1B3357;
  color: #fff;
  box-shadow: 0 2px 10px rgba(27,51,87,0.10);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #29A3A8;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #1B3357;
  padding: 40px 0 32px 0;
  color: #fff;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  transition: color 0.14s, opacity 0.14s;
  font-size: 1rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #29A3A8;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
  color: #fff;
  align-items: flex-start;
}
.footer-contact img {
  margin-right: 7px;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  display: inline;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #fff;
  color: #1B3357;
  box-shadow: 0 -3px 20px rgba(27,51,87,0.17);
  padding: 22px 16px 20px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(.36,1.3,.55,1), opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-right: 5px;
  padding: 0.6em 1.5em;
  font-size: 1rem;
}
.cookie-banner .cookie-settings-btn {
  background: #1B3357;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #29A3A8;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,51,87,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  color: #1B3357;
  border-radius: 18px;
  max-width: 360px;
  width: 92vw;
  box-shadow: 0 4px 32px rgba(27,51,87,0.22);
  padding: 32px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: cookieModalIn 0.34s cubic-bezier(.67,1,.29,1.25);
}
@keyframes cookieModalIn {
  0% { 
    transform: scale(0.85);
    opacity: 0;
   }
  100% {  
    transform: scale(1);
    opacity: 1;
  }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #29A3A8;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-size: 1rem;
}
.toggle-switch {
  --switch-bg: #d9e2ee;
  --switch-active-bg: #29A3A8;
  width: 44px;
  height: 22px;
  border-radius: 20px;
  background: var(--switch-bg);
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-switch.checked {
  background: var(--switch-active-bg);
}
.toggle-switch::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 2px;
  box-shadow: 0 1px 5px rgba(41,163,168,0.13);
  transition: left 0.18s;
}
.toggle-switch.checked::before {
  left: 22px;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
  margin-right: 0;
}
.cookie-modal .cookie-close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: #1B3357;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-close-btn:hover{
  color: #29A3A8;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .feature-grid, .service-grid, .project-teaser-list, .value-cards, .pricing-tables, .step-timeline {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
  .feature-grid, .service-grid, .project-teaser-list, .value-cards, .pricing-tables, .step-timeline {
    gap: 16px;
  }
  .feature-card, .value-card, .service-card, .pricing-table, .project-teaser, .step {
    min-width: 170px;
    max-width: 98vw;
    flex: 1 0 48%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .header-container {
    flex-direction: row;
    gap: 0;
    padding: 12px 0;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section, .services-overview, .brand-promise, .legal, .cta {
    padding: 28px 10px;
  }
  .footer-container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-grid, .service-grid, .project-teaser-list, .value-cards, .pricing-tables, .step-timeline {
    flex-direction: column;
    gap: 14px;
  }
  .feature-card, .value-card, .service-card, .pricing-table, .project-teaser, .step {
    max-width: 100%;
    margin-bottom: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.13rem; }
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  .hero {
    padding: 40px 0 28px 0;
    min-height: 200px;
  }
  .footer-container, .content-wrapper {
    padding: 0;
  }
  .cta {
    padding: 28px 8px 28px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.97rem;
    padding: 14px 5px 14px 5px;
  }
  .cookie-banner .cookie-btn {
    margin-right: 0;
    padding: 0.6em 1em;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 19px 8px 14px 13px;
    border-radius: 13px;
  }
}

/* =====================
   UTILITY CLASSES
   ===================== */
.muted { color:#8298b5; }
.shadow {
  box-shadow: 0 2px 12px rgba(27,51,87,0.12);
}

/* =====================
   ACCESSIBILITY
   ===================== */
:focus-visible {
  outline: 2px solid #29A3A8;
  outline-offset: 2px;
}

/* ====== OVERRIDE autofill color for buttons/inputs (for modern look) ====== */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #F7F7FA inset;
  -webkit-text-fill-color: #1B3357;
}

/* =====================
   FORM ELEMENTS (future proof)
   ===================== */
input, textarea, select {
  background: #F7F7FA;
  border: 1px solid #dde6ef;
  padding: 12px 14px;
  border-radius: 9px;
  color: #1B3357;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #29A3A8;
  background: #fff;
}

/* ===== Microinteractions & transitions ===== */
.card, .service-card, .feature-card, .value-card, .step, .pricing-table, .project-teaser {
  transition: box-shadow 0.22s, transform 0.14s;
}
.cta-primary, .cta-secondary, .cookie-btn {
  transition: background 0.2s, color 0.13s, transform 0.14s, box-shadow 0.13s;
}

/* =====================
  PRINT
   ===================== */
@media print {
  header, footer, .cookie-banner { display: none !important; }
}

/* =====================
  Z-INDEX
   ===================== */
header, .mobile-menu, .cookie-modal-overlay, .cookie-banner {
  z-index: 900;
}

/* END OF FILE */
