/* CSS RESET & BASE 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F6F6F6;
  color: #28364b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2F4257;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5DB7E1;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
button, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  cursor: pointer;
}

/* BRAND PALETTE (SOFT PASTEL VARIATIONS) */
:root {
  --primary: #052E51;
  --secondary: #5DB7E1;
  --accent: #F6F6F6;
  --pastel-blue: #d2ebfa;
  --pastel-mint: #d3f6ef;
  --pastel-pink: #fae8f0;
  --pastel-lavender: #e8eafc;
  --pastel-yellow: #fef7e5;
  --text: #28364B;
  --heading: #052E51;
  --white: #fff;
  --card-shadow: 0 4px 24px 0 rgba(93,183,225,0.09);
  --card-border: #e6eaf1;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
body, input, textarea, select, button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text);
}

/* CONTAINER & WRAPPER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #e8eafc 0%, #d2ebfa 100%);
  box-shadow: 0 2px 8px rgba(93,183,225, 0.07);
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
  text-decoration: none;
}
.main-nav > a img {
  height: 42px;
  margin-right: 18px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 13px 34px;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(93,183,225,0.10);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  letter-spacing: 0.02em;
  margin-left: 24px;
  display: inline-block;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px 0 rgba(93,183,225,0.18);
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: var(--pastel-lavender);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 12px 30px;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(93,183,225,0.07);
  letter-spacing: 0.01em;
  margin-top: 12px;
  transition: background 0.17s, color 0.17s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 20px;
  z-index: 150;
  background: var(--pastel-blue);
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(93,183,225,0.10);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #e8eafc 0%, #d3f6ef 100%);
  box-shadow: 0 8px 16px rgba(41,93,131,0.17);
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(0.68,-0.55,0.27,1.55);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 30px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  margin-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 210;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 22px;
  width: 80%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--primary);
  padding: 11px 0;
  border-radius: 9px;
  transition: background 0.2s, color 0.18s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* MAIN LAYOUT SECTIONS & FLEXBOX LAYOUTS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(93,183,225,0.14);
  margin-bottom: 26px;
  min-width: 250px;
  border-left: 5px solid var(--secondary);
  color: #222e3b;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.08rem;
}
.testimonial-card div:last-child {
  color: #f8a05c;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-blue);
  padding: 17px 22px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
}

/************ HERO & CTA SECTIONS ************/
.hero {
  background: linear-gradient(120deg, #d3f6ef 30%, #fae8f0 100%);
  padding: 56px 20px 76px 20px;
  text-align: left;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 4px 36px 0 rgba(93,183,225,0.10);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cta {
  background: linear-gradient(90deg, #e8eafc 0%, #fef7e5 100%);
  padding: 42px 20px 44px 20px;
  border-radius: 36px;
  box-shadow: 0 2px 14px 0 rgba(212, 231, 255, 0.16);
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  color: var(--primary);
}

/************ FEATURES ************/
.features {
  background: var(--pastel-blue);
  border-radius: 26px;
  box-shadow: 0 2px 10px 0 rgba(181,219,238,0.09);
  margin-bottom: 56px;
}
.features ul {
  margin-left: 0;
  padding-left: 18px;
  margin-bottom: 0;
}
.features ul li {
  font-size: 1.07rem;
  margin-bottom: 18px;
  color: var(--primary);
  list-style: disc;
}

/************ SERVICES ************/
.services ul, .about ul {
  margin-left: 0;
  padding-left: 20px;
  margin-bottom: 0;
}
.services ul li {
  font-size: 1.07rem;
  margin-bottom: 18px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.service-grid > div {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  padding: 28px 18px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/************ PRICING TABLE ************/
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing thead {
  background: var(--pastel-lavender);
}
.pricing th, .pricing td {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  text-align: left;
  padding: 19px 20px;
  font-size: 1.08rem;
  border-bottom: 1px solid #e4eaf3;
}
.pricing tbody tr:last-child td {
  border-bottom: none;
}
.pricing th {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pricing td {
  color: var(--text);
}
.pricing-notes ul {
  margin-left: 1.2em;
  color: #57718a;
  font-size: 0.97rem;
}

/************ ACCORDIONS/FAQ ************/
.faq-accordion, .faq-snippet {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.faq-accordion > div, .faq-snippet ul li {
  background: var(--pastel-blue);
  padding: 18px 22px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(93,183,225,0.08);
  margin-bottom: 12px;
}
.faq-accordion h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: var(--primary);
}

/************ LEGAL & THANK YOU ************/
.legal {
  background: var(--pastel-lavender);
  border-radius: 30px;
  box-shadow: 0 2px 10px 0 rgba(93,183,225,0.09);
  padding-top: 48px;
  padding-bottom: 48px;
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 22px;
}
.thanks {
  background: var(--pastel-mint);
  border-radius: 36px;
  box-shadow: 0 2px 12px 0 rgba(93,183,225,0.10);
  padding: 46px 20px;
  margin-bottom: 40px;
  text-align: center;
}
.thanks h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 26px;
}

/************ FOOTER  ************/
footer {
  padding: 42px 0 20px 0;
  background: linear-gradient(90deg, #e8eafc 0%, #d3f6ef 100%);
  margin-top: 60px;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  box-shadow: 0 -2px 12px #e8eafc inset;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.footer-nav a:hover {
  background: var(--secondary);
  color: var(--white);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8ca9c6;
  font-size: 1rem;
  margin-top: 10px;
}
.footer-brand img {
  height: 32px;
  width: auto;
}

/************ CONTACT / ABOUT ************/
.text-section {
  margin-bottom: 26px;
  font-size: 1.06rem;
}
.contact {
  background: var(--pastel-blue);
  border-radius: 26px;
  box-shadow: 0 2px 10px 0 rgba(181,219,238,0.10);
  margin-bottom: 56px;
}

/************ COOKIE CONSENT BANNER ************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(89deg, #e8eafc 60%, #fef7e5 100%);
  box-shadow: 0 -2px 14px rgba(93,183,225,0.13);
  border-top: 4px solid var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px 18px 24px;
  z-index: 3000;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 1;
  gap: 16px;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1.02rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-banner button {
  margin: 0 8px 0 0;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 11px 25px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(93,183,225,0.10);
  transition: background 0.17s, color 0.17s;
}
.cookie-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--primary);
  color: var(--white);
}
.cookie-reject {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--secondary);
  color: var(--white);
}
.cookie-settings {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.94);
  z-index: 3100;
  background: var(--white);
  padding: 34px 28px;
  border-radius: 30px;
  min-width: 300px;
  max-width: 92vw;
  min-height: 180px;
  box-shadow: 0 6px 36px 0 rgba(93,183,225,0.14);
  transition: opacity 0.22s, transform 0.24s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.9);
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  appearance: none;
  background: var(--pastel-blue);
  border-radius: 31px;
  outline: none;
  border: 1.6px solid #e2e7fe;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-toggle:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.21s;
  position: absolute;
  left: 2.2px;
  top: 1.8px;
}
.cookie-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  margin-top: 23px;
  display: flex;
  gap: 14px;
}
/* Overlay for the modal background */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,54,80, 0.22);
  z-index: 3099;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

/************ ANIMATIONS AND INTERACTIONS ************/
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .footer-nav a, .main-nav ul li a {
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.18s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
.card, .service-grid > div, .testimonial-card, .feature-item {
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .service-grid > div:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(93,183,225,0.14);
  transform: translateY(-4px) scale(1.012);
}

/************ RESPONSIVE DESIGN ○ MOBILE FIRST ************/
@media (max-width: 1024px) {
  .container {
    max-width: 99vw;
    padding: 0 12px;
  }
  .main-nav ul {
    gap: 21px;
  }
}
@media (max-width: 900px) {
  .main-nav, .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .main-nav ul, .footer-nav {
    display: none;
  }
  .main-nav > a.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .cta, .features, .contact, .thanks, .legal {
    border-radius: 20px;
    padding: 26px 6px 36px 6px;
  }
  .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-grid > div {
    min-width: 0;
    width: 100%;
    padding: 18px 13px;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 22px 6px;
  }
  .testimonial-card {
    padding: 20px 12px;
    min-width: 0;
    margin-bottom: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card {
    padding: 20px 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.10rem; }
  .footer-brand {
    flex-direction: column;
    gap: 2px;
  }
  .cookie-banner {
    padding: 9px 2vw 10px 2vw;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 23px 10px;
    min-width: 0;
    font-size: 0.98rem;
  }
  .cookie-modal-actions button {
    font-size: 0.97rem;
    padding: 9px 16px;
  }
  .btn-primary, .btn-secondary {
    padding: 8px 16px;
    font-size: 0.97rem;
  }
}

/************ UTILITY CLASSES ************/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }

/************ PRINT STYLES ************/
@media print {
  header, .main-nav, .mobile-menu-toggle, .mobile-menu, .btn-primary, .btn-secondary, .footer-nav, .footer-brand, .cta, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  .container { max-width: 100vw !important; }
  body { background: #fff !important; color: #111 !important; }
}
