/* 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;
}
/* Normalize display */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F4F4F8;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22243A;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #48B2E3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #22243A;
}
ul, ol {
  padding-left: 24px;
}
ul {
  list-style: disc;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22243A;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34, 36, 58, 0.05);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34, 36, 58, 0.045);
  position: sticky;
  top: 0;
  z-index: 80;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 20px;
  position: relative;
}
.main-nav > a img {
  height: 38px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #22243A;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F4F4F8;
  color: #48B2E3;
}
.cta-btn {
  background: #48B2E3;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(72,178,227,0.09);
  margin-left: 12px;
  transition: background 0.15s, box-shadow 0.2s, transform 0.12s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22243A;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(72,178,227,0.11);
  transform: translateY(-2px) scale(1.03);
}

/* ---------- MOBILE NAVIGATION ----------- */
.mobile-menu-toggle {
  display: none;
  background: #48B2E3;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 9px 18px;
  border-radius: 9px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 101;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22243A;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.63,.03,.31,.95);
  box-shadow: -6px 0 14px -4px rgba(34,36,58,0.09);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #22243A;
  font-size: 2.3rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #48B2E3;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 30px 30px 30px;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #22243A;
  padding: 12px 6px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F4F8;
  color: #48B2E3;
}

/* ---------- HERO & MAJOR SECTION STYLES ---------- */
.hero {
  background: linear-gradient(150deg, #F4F4F8 50%, #eaf7fc 100%);
  width: 100%;
  padding: 40px 0 30px 0;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 740px;
  gap: 22px;
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #22243A;
}
.hero .subheadline {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #313558;
}

/* ---------- FEATURES / SERVICE GRID ---------- */
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(72,178,227,0.08);
  flex: 1 1 215px;
  min-width: 220px;
  max-width: 280px;
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.16s;
}
.feature-grid li:hover {
  box-shadow: 0 5px 22px 0 rgba(72,178,227,0.16);
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 4px;
  border-radius: 7px;
  background: #eaf7fc;
  padding: 7px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* ----- TESTIMONIALS ----- */
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px 22px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 12px 0 rgba(34,36,58,0.06);
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 210px;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.14s;
  font-size: 1.025rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 26px 0 rgba(72,178,227,0.12);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-stars {
  color: #FFD700;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}
.testimonial-author {
  font-size: 0.98rem;
  color: #48B2E3;
  font-weight: 600;
}

/* ----- ABOUT, TEAM, BRAND PHILOSOPHY ----- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul {
  margin-bottom: 8px;
  color: #556;
  font-size: 1rem;
}
.text-section ul li::marker {
  color: #48B2E3;
  font-size: 1.15em;
}
.text-section strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.industry-tag {
  display: inline-block;
  background: #eaf7fc;
  color: #48B2E3;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 12px;
  margin-top: 8px;
}

/* ----- CASE STUDY TEASERS ----- */
.case-study-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study-teasers .text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 12px 0 rgba(72,178,227,0.06);
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 320px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 0;
  gap: 9px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.case-study-teasers .text-section:hover {
  box-shadow: 0 4px 14px 0 rgba(72,178,227,0.14);
  transform: translateY(-2px) scale(1.02);
}

/* ----- FAQ SECTION ----- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(72,178,227,0.055);
  padding: 22px 22px 20px 22px;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-prompt {
  margin-top: 24px;
  background: #eaf7fc;
  color: #22243A;
  border-radius: 11px;
  padding: 14px 16px;
  font-size: 1.06rem;
  font-weight: 500;
}
.contact-prompt a {
  color: #22243A;
  background: #48B2E3;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  margin-left: 10px;
}
.contact-prompt a:hover {
  color: #fff;
  background: #22243A;
}

/* ----- SERVICES LIST ----- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 18px 0;
}
.services-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(72,178,227,0.08);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.16s;
  margin-bottom: 0;
}
.services-list li:hover {
  box-shadow: 0 5px 20px 0 rgba(72,178,227,0.13);
  transform: translateY(-2px) scale(1.02);
}
.services-list strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #48B2E3;
  margin-top: 8px;
}

/* PAYMENT OPTIONS & WORKFLOW */
.payment-options ul, .workflow-overview ol {
  margin-left: 0;
  padding-left: 24px;
  color: #3d3d4e;
}
.payment-options li, .workflow-overview li {
  margin-bottom: 7px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 17px 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(72,178,227,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
}
.pricing-table thead {
  background: #eaf7fc;
}
.pricing-table th {
  color: #22243A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #e1e8eb;
  transition: background 0.16s;
}
.pricing-table tbody tr:hover {
  background: #F4F4F8;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(150deg, #eaf7fc 40%, #F4F4F8 100%);
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(72,178,227,0.07);
  margin-bottom: 60px;
  padding: 44px 20px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 14px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta p {
  font-size: 1.13rem;
  margin-bottom: 10px;
  color: #313558;
}
.cta .cta-btn {
  font-size: 1.08rem;
  margin-top: 2px;
}

/* CONFIRMATION SECTION */
.confirmation .content-wrapper {
  align-items: flex-start;
}
.confirmation .cta-btn {
  margin-top: 24px;
}

/* LEGAL, PRIVACY, and COOKIE SECTIONS */
.legal .content-wrapper, .about .content-wrapper, .brand .content-wrapper, .team .content-wrapper {
  align-items: flex-start;
}

/* FOOTER */
footer {
  width: 100%;
  background: #fafbfc;
  padding: 32px 0 18px 0;
  border-top: 1px solid #e4ecf2;
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #22243A;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 7px;
  transition: background 0.18s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #eaf7fc;
  color: #48B2E3;
}
.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.footer-brand img {
  height: 34px;
  width: 34px;
  margin-right: 4px;
}
.footer-brand span {
  color: #848899;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* COOKIES CONSENT BANNER */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(255,255,255,1);
  border-top: 1px solid #e8e8ef;
  box-shadow: 0 -2px 18px 0 rgba(72,178,227,0.16);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  animation: cookieSlideIn 0.45s cubic-bezier(0.64,0.01,0.36,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner p {
  font-size: 1rem;
  color: #313558;
  line-height: 1.5;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  padding: 7px 19px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.13s;
  font-weight: 600;
}
.cookie-accept {
  background: #48B2E3;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #22243A;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #22243A;
  border: 1px solid #e4ecf2;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #eaf7fc;
  color: #48B2E3;
}
.cookie-settings {
  background: #eaf7fc;
  color: #48B2E3;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #fff;
  color: #22243A;
}

/* COOKIE MODAL OVERLAY */
#cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,36,58,0.20);
  z-index: 2222;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 48px 0 rgba(34,36,58,0.14);
  max-width: 410px;
  width: 100%;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalIn 0.28s cubic-bezier(.96,.41,.26,.97);
}
@keyframes cookieModalIn {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
#cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #848899;
  cursor: pointer;
  transition: color 0.18s;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  color: #48B2E3;
}
#cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
}
.cookie-category-row label {
  flex: 1;
  color: #22243A;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #eaf7fc;
  border-radius: 16px;
  position: relative;
  outline: none;
  margin-right: 0;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #48B2E3;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 3px; left: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(34,36,58,0.09);
  transition: transform 0.17s;
}
.cookie-switch:checked:before {
  transform: translateX(18px);
}
.cookie-category-row .essential {
  font-weight: 600;
  color: #48B2E3;
}

#cookie-modal .cookie-modal-btns {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
#cookie-modal .cookie-modal-btns button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  padding: 8px 21px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
  font-weight: 600;
}
#cookie-modal .cookie-accept {
  background: #48B2E3;
  color: #fff;
}
#cookie-modal .cookie-accept:hover, #cookie-modal .cookie-accept:focus {
  background: #22243A;
  color: #fff;
}
#cookie-modal .cookie-reject {
  background: #fff;
  color: #22243A;
  border: 1px solid #e4ecf2;
}
#cookie-modal .cookie-reject:hover, #cookie-modal .cookie-reject:focus {
  background: #eaf7fc;
  color: #48B2E3;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .main-nav, .container {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .section, .cta {
    padding: 26px 8px;
    border-radius: 9px;
  }
  .content-wrapper, .case-study-teasers, .feature-grid, .services-list, .testimonial-row {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .services-list li, .case-study-teasers .text-section, .testimonial-card {
    min-width: unset;
    max-width: 100%;
    padding: 18px 11px 17px 14px;
    border-radius: 9px;
  }
  .testimonial-row {
    gap: 16px !important;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100vw;
    padding: 13px 8px 10px 14px;
  }
  .testimonials h2, .about h2, .features h2, .services h2, .cta h2, .case-studies h2, .confirmation h2 {
    font-size: 1.35rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.24rem;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
  .hero .content-wrapper, .content-wrapper {
    gap: 14px;
  }
  .cta {
    padding: 18px 5px;
  }
  #cookie-modal {
    padding: 18px 7px 12px 7px;
    border-radius: 7px;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.99rem;
    padding: 8px 7px;
  }
}

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

/* Success / Error States for Forms (if needed in future) */
input:focus, textarea:focus, select:focus {
  outline: 2px solid #48B2E3;
  background: #eaf7fc;
}

/* Micro-interactions */
.button, .cta-btn, .cookie-accept, .cookie-reject, .cookie-settings, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, color 0.13s, box-shadow 0.14s, transform 0.13s;
}
/* Natural shadow softening for card style */
.card, .testimonial-card, .feature-grid li, .services-list li, .case-study-teasers .text-section, .faq-item {
  box-shadow: 0 1px 10px 0 rgba(72,178,227,0.07);
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .services-list li:hover, .case-study-teasers .text-section:hover, .faq-item:hover {
  box-shadow: 0 4px 16px 0 rgba(72,178,227,0.13);
}
