/* =============================
   CSS RESET & NORMALIZE
   ============================= */
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;
}
html { box-sizing: border-box; }
*,*::before,*::after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F7F7F7;
  color: #1B263B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; outline: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width:100%; display:block; }
hr { border: none; height:1px; background: #eaeaea; margin: 40px 0; }

/* =====================
  TYPOGRAPHY SCALE
 ===================== */
h1, .h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size:32px;
  margin-bottom:20px;
  line-height:1.18;
  letter-spacing:.5px;
}
@media (min-width: 600px) { h1, .h1 {font-size: 40px;}} 
@media (min-width: 900px) { h1, .h1 {font-size: 48px;}} 
h2, .h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
  line-height:1.22;
  letter-spacing:.3px;
}
@media (min-width: 600px) { h2, .h2 {font-size: 28px;}} 
@media (min-width: 900px) { h2, .h2 {font-size: 32px;}} 
h3, .h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}
h4, .h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}
strong { font-weight:700; }

/* ======================
  CONTAINERS & SPACING 
 ====================== */
.container {
  width: 100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 18px;
  display: flex;
  flex-direction: column;
  gap:0;
}
.content-wrapper {
  width:100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow:0 1px 8px 0 rgba(60,64,67,0.06);
  display: flex;
  flex-direction: column;
  gap:12px;
}
@media (min-width: 900px) {
  .section {padding: 60px 36px;}
}

/* ===========
  HEADER
 =========== */
header {
  width:100%;
  background: #FFFFFF;
  box-shadow: 0 2px 8px 0 rgba(27,38,59,.04);
  position:sticky;
  top:0; left:0; z-index:50;
}
header .container {
  flex-direction: row;
  align-items:center;
  justify-content: space-between;
  min-height:68px;
  gap:18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family:'Oswald',Arial,sans-serif;
  font-size:16px;
  color: #1B263B;
  opacity: 0.85;
  padding:8px 0;
  border-radius:4px;
  transition: background .18s, color .18s;
}
header nav a.cta-btn {
  padding: 8px 22px;
  border-radius: 25px;
  background: #00B4D8;
  color: #fff;
  font-size: 16px;
  font-family:'Oswald',Arial,sans-serif;
  font-weight:600;
  letter-spacing:0.5px;
  box-shadow:0 1px 4px 0 rgba(0,180,216,0.07);
  transition: background .25s, color .25s;
}
header nav a.cta-btn:hover, .cta-btn:hover {
  background: #1B263B;
  color: #fff;
}
header nav a:hover {background:#E0E1DD; color:#1B263B; opacity:1;}
header a img { height: 38px;}
.mobile-menu-toggle {
  background: none; border:none; outline:none;
  font-size: 30px; cursor: pointer;
  color: #1B263B;
  border-radius:50%;
  padding:8px;
  transition: background .18s;
  display: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {background:#E0E1DD;}
@media (max-width: 920px) {
  header nav {display:none !important;}
  .mobile-menu-toggle {display: block;}
}

/* =======================
  MOBILE MENU OVERLAY
 ======================= */
.mobile-menu {
  position:fixed;
  top:0; left:0;width:100vw;height:100vh;
  background:#F7F7F7;
  box-shadow: 0 4px 24px 0 rgba(27,38,59,0.20);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding:0 0 0 0;
  transform:translateX(-100%);
  transition:transform .34s cubic-bezier(.86,0,.07,1);
  opacity:1;
  overflow-y:auto;
}
.mobile-menu.open { transform:translateX(0); }
.mobile-menu-close {
  margin:24px 0 32px 24px; background: none; border: none;
  font-size:32px; cursor:pointer; color:#1B263B; border-radius:8px;
  align-self: flex-start; padding:4px 8px;
  transition: background .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {background:#E0E1DD;}
.mobile-nav {
  width:100%;
  display:flex;
  flex-direction:column;
  gap: 20px;
  padding:0 32px 32px 32px;
}
.mobile-nav a {
  font-family:'Oswald',Arial,sans-serif;
  font-size: 20px;
  color:#1B263B;
  padding:14px 0;
  border-bottom:1px solid #E0E1DD;
  transition: color .19s;
}
.mobile-nav a:last-child {border-bottom:none;}
.mobile-nav a:hover { color:#00B4D8; }
@media (min-width: 921px) {
  .mobile-menu {display:none !important;}
}

/* ========================
  HERO, CTA, FEATURES, ETC
 ======================== */
.hero, .cta {
  background: #E0E1DD;
  border-radius: 22px;
  box-shadow:0 2px 18px 0 rgba(121,138,163,0.08);
  padding:48px 16px 48px 16px;
  margin-bottom:60px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:28px;
}
.hero h1, .cta h2 {
  color: #1B263B;
  font-family:'Oswald',Arial,sans-serif;
}
.hero p, .cta p {
  max-width:580px;
  font-size: 18px;
  margin:0 auto 18px auto;
  color:#384353;
}
.cta-btn {
  display:inline-block;
  min-width:150px;
  text-align:center;
  background: #00B4D8;
  color:#fff;
  border-radius: 999px;
  padding: 12px 38px;
  font-family:'Oswald',Arial,sans-serif;
  font-size:18px;
  font-weight:600;
  border:none;
  cursor:pointer;
  margin-top:10px;
  box-shadow: 0 3px 12px 0 rgba(0,180,216,0.08);
  transition: background .18s, color .17s, box-shadow .23s;
}
.cta-btn:focus,.cta-btn:hover {background:#1B263B; color:#fff; box-shadow:0 4px 18px 0 rgba(0,80,120,0.13);}

/* =========================
  FLEX LAYOUT PATTERNS (MANDATORY)
 ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap:24px;
}
.card {
  position:relative;
  margin-bottom:20px;
  border-radius: 14px;
  box-shadow:0 2px 8px 0 rgba(27,38,59,0.06);
  background:#fff;
  display:flex;
  flex-direction:column;
  min-width:230px;
  transition: box-shadow .17s;
}
.card:hover { box-shadow:0 8px 32px 0 rgba(27,38,59,0.12); }
.card-content {
  display:flex;
  flex-direction:column;
  justify-content: center;
  padding: 28px 22px;
  gap:12px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {flex-direction:column; align-items:flex-start;}
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap:20px;
  padding: 20px;
  background: #fff;
  border-radius:15px;
  box-shadow: 0 2px 16px 0 rgba(121,138,163,0.12);
  margin-bottom:24px;
  font-size:17px;
  color:#1B263B;
  transition: box-shadow .16s, transform .15s;
}
.testimonial-card:hover {
  box-shadow:0 8px 32px 0 #c3d0e0a3;
  transform:translateY(-2px) scale(1.01);
}
.testimonial-card strong{color:#00B4D8;}
.feature-item {
  display: flex;
  flex-direction:column;
  align-items: flex-start;
  gap:15px;
  background: #f9fafb;
  border-radius:12px;
  box-shadow:0 2px 8px 0 rgba(121,138,163,0.05);
  padding:23px 18px 22px 18px;
  margin-bottom:20px;
  min-width:200px;
  max-width:350px;
  transition: box-shadow .17s;
}
.feature-item:hover{box-shadow:0 6px 16px 0 rgba(0,180,216,0.11);}

/********************
  HOME PAGE SECTIONS
********************/
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap:24px;
  justify-content: space-between;
}
.benefit-list {
  display:flex;
  flex-direction: row;
  flex-wrap:wrap;
  gap:20px;
  margin:16px 0;
}
.benefit-list li{
  background: #f6fafb;
  border-radius:10px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 20px 12px 12px;
  min-width:180px;
  font-size: 16px;
  color: #1B263B;
  box-shadow:0 1px 6px 0 rgba(27,38,59,0.08);
}
.usp-badges {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}
.usp {
  background:#00B4D8;
  color:#fff;
  border-radius: 20px;
  padding:7px 18px;
  font-size:15px;
  font-family:'Oswald',Arial,sans-serif;
  letter-spacing:0.2px;
  box-shadow:0 1px 4px 0 rgba(0,180,216,0.08);
}

/***************
  TESTIMONIAL SLIDER (STATIC ON THIS HTML)
***************/
.testimonial-slider {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  margin-top:12px;
}
@media (max-width:820px) {
  .testimonial-slider {
    flex-direction:column;
    gap:20px;
  }
}

/* ===================
  LIST & CARD BLOCKS
 =================== */
.value-list {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
.value-item {
  display: flex;
  flex-direction:column;
  align-items: flex-start;
  gap:14px;
  background: #fcfdfd;
  border-radius:12px;
  box-shadow:0 2px 8px 0 rgba(121,138,163,0.03);
  padding:20px 20px 20px 18px;
  min-width:160px;
  max-width:350px;
}
.tip-block {
  background:#fff;
  border-radius:12px;
  box-shadow:0 2px 8px 0 rgba(121,138,163,0.07);
  padding:20px 18px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-bottom:20px;
}
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap:24px;
  justify-content: space-between;
}
@media (max-width:820px) {
  .value-list, .tips-grid, .features .feature-grid {flex-direction:column;gap:18px;}
}

/* PRODUCT LIST & TABLES */
.product-list {
  display:flex;
  flex-direction:column;
  gap:18px;
  margin:26px 0 32px 0;
}
.comparison-table {
  width:100%;
  border-collapse:collapse;
  font-size:16px;
  background: #F9FAFB;
  border-radius:9px;
  overflow:hidden;
  box-shadow:0 1px 8px 0 rgba(27,38,59,0.05);
}
.comparison-table thead {
  background:#E0E1DD;
}
.comparison-table th, .comparison-table td {
  padding:14px 14px;
  text-align:left;
}
.comparison-table tr:not(:last-child) {border-bottom:1px solid #E0E1DD;}
.comparison-table th {font-family:'Oswald',Arial,sans-serif;}

/************
  FAQ
************/
.faq-list {
  display:flex;
  flex-direction:column;
  gap:16px;
}
.faq-list li {
  padding:18px 18px 14px 16px;
  border-radius:10px;
  background: #f8f9fb;
  box-shadow:0 1px 8px 0 rgba(188,205,223,0.07);
}

/***************
  CONTACT BLOCK
***************/
.contact-info {
  margin:16px 0 28px 0;
}
.contact-details {
  display: flex;
  flex-direction:column;
  gap:13px;
}
.contact-details div {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:17px;
  background:none;
}
.cta-contact {
  margin-top:26px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  background:#E0E1DD;
  border-radius:14px;
  padding:18px 22px;
  color:#1B263B;
}
@media (min-width:700px) {
  .contact-info, .cta-contact {
    max-width:450px;
  }
}

/*************
  THANK YOU PAGE
**************/
.thank-you {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:250px;
  margin:80px 0 0 0;
}

/* ===========
   FOOTER
============ */
footer {
  margin-top:60px;
  background:#E0E1DD;
  color:#1B263B;
  padding:38px 0 10px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -1px 12px 0 rgba(27,38,59,0.08);
  font-size:16px;
}
footer .container {
  flex-direction:column;
  gap:22px;
}
.footer-menu {
  display:flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom:12px;
}
.footer-menu a {
  color:#1B263B;
  font-family:'Roboto',Arial,sans-serif;
  opacity:.83;
  letter-spacing:0.2px;
  padding: 2px 8px;
  transition: color .17s, background .17s;
  border-radius:6px;
}
.footer-menu a:hover { color:#00B4D8; background:#fff; }
.footer-contact {
  display: flex; flex-wrap: wrap; gap:20px; align-items: center;
  justify-content: flex-start; margin-bottom: 8px;
}
.footer-contact img {
  width: 21px;
  margin-right: 7px;
  opacity: .78;
}
.footer-contact span {
  font-size: 15px;
  color:#384353;
  margin-right:12px;
}
.footer-copy {
  text-align: left;
  font-size:14px;
  color:#758190;
  margin-top:6px;
}

/* ============
   BUTTONS & INTERACTIVES
============ */
button, .btn {
  font-family: 'Oswald',Arial,sans-serif;
  border:none;
  outline:none;
  padding:11px 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight:600;
  background: #00B4D8;
  color: #fff;
  cursor: pointer;
  transition: background .18s, color .17s, box-shadow .18s;
}
button:focus, button:hover, .btn:focus, .btn:hover {
  background: #1B263B;
  color: #fff;
}

/* ========================
  COOKIE CONSENT BANNER & MODAL
 ======================== */
.cookie-banner {
  position:fixed;
  bottom:0; left:0; width:100vw;
  z-index: 2500;
  background: #FFFFFF;
  box-shadow: 0 -4px 24px 0 rgba(27,38,59,0.10);
  display: flex;
  flex-direction:column;
  align-items:center;
  padding:22px 14px 18px 14px;
  gap: 16px;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  font-size: 16px;
  color: #222a38;
  animation: banner-slideup .45s cubic-bezier(.62,.01,.54,1);
}
@keyframes banner-slideup { from {transform: translateY(120%);} to {transform:translateY(0);} }
.cookie-banner p {margin-bottom:0; text-align:left;}
.cookie-banner-btns {
  display:flex;
  gap:14px;
  margin-top:6px;
  flex-wrap:wrap;
}
.cookie-banner-btns .cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 15px;
  border-radius:999px;
  padding:8px 22px;
  background: #00B4D8;
  color: #fff;
  border:none;
  transition: background .16s, color .16s;
}
.cookie-banner-btns .cookie-btn:focus, .cookie-banner-btns .cookie-btn:hover {background:#1B263B; color:#fff;}
.cookie-banner-btns .cookie-btn.settings {
  background:#E0E1DD;color:#1B263B;
}
.cookie-banner-btns .cookie-btn.settings:focus, .cookie-banner-btns .cookie-btn.settings:hover {background:#00B4D8;color:#fff;}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position:fixed; z-index:2501;
  left:0; top:0; width:100vw; height:100vh;
  background:rgba(33,44,67,0.38);
  display:flex;
  align-items:center;
  justify-content:center;
  animation: fadein .25s;
}
@keyframes fadein { from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background:#FFFFFF;
  border-radius:18px;
  box-shadow:0 4px 48px 0 rgba(27,38,59,0.18);
  min-width:300px; max-width:480px;
  padding:36px 24px 28px 24px;
  color:#1B263B;
  display:flex;
  flex-direction:column;
  gap: 22px;
  animation: modalin .34s cubic-bezier(.62,.01,.54,1);
  position:relative;
}
@keyframes modalin { from {transform:scale(.92); opacity:0;} to {transform:scale(1);opacity:1;} }
.cookie-modal h3 {
  margin-bottom:10px;
  font-family:'Oswald',Arial,sans-serif;
  font-size: 22px;
  color:#1B263B;
}
.cookie-modal .cookie-categories {
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.cookie-category {
  display:flex;
  align-items:center;
  gap:14px;
  font-size:16px;
  padding:8px 0;
  border-bottom:1px solid #E0E1DD;
}
.cookie-category:last-child {border-bottom:none;}
.cookie-toggle {
  margin-left:auto;
  min-width:36px;
  height:20px;
  background:#E0E1DD;
  border-radius:999px; position:relative; cursor:pointer;
  outline:none; border:none;
  transition:background .17s;
  display:flex; align-items:center; padding:2px;
}
.cookie-toggle[data-on="true"]{background: #00B4D8;}
.cookie-toggle .toggle-knob {
  background:#fff; border-radius:50%; width:16px; height:16px;
  transition:transform .15s;
  box-shadow:0 1px 4px 0 rgba(27,38,59,0.09);
}
.cookie-toggle[data-on="true"] .toggle-knob{
  transform:translateX(16px);
}
.cookie-toggle[data-on="false"] .toggle-knob{
  transform: none;
}
.cookie-modal-close {
  position:absolute; top:10px; right:10px;
  font-size:24px;
  color:#99a1ac;
  background:none; border:none;
  border-radius:6px;
  padding:2px 7px;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {background:#E0E1DD; color:#1B263B;}
.cookie-modal-actions {
  display:flex; gap:16px; justify-content:flex-end; margin-top:6px;
}
.cookie-modal-actions .cookie-btn {padding:9px 28px;}

/*******
  MISC
*******/
::-webkit-input-placeholder {color:#b7c1ce;}
::-moz-placeholder {color:#b7c1ce;}
:-ms-input-placeholder {color:#b7c1ce;}
::placeholder {color:#b7c1ce;}

/*********
  SCROLLBAR
**********/
body::-webkit-scrollbar {width:9px;background:#e0e1dd99;}
body::-webkit-scrollbar-thumb {background:#cfd2da;border-radius:8px;}

/* ===============
  RESPONSIVE RULES
 =============== */
@media (max-width: 980px) {
  .container { max-width: 97vw; padding:0 10px;}
  .section {padding:26px 8px;}
}
@media (max-width: 820px) {
  .hero, .cta {padding:32px 6px;}
  .footer-menu {gap:10px;}
  .footer-contact {gap:8px;}
  .testimonials .testimonial-slider {flex-direction:column;gap:20px;}
}
@media (max-width: 700px) {
  .container {max-width: 100vw;}
  .section {padding:18px 3vw;}
  .hero, .cta {padding:26px 4vw;}
}
@media (max-width: 590px) {
  h1, .h1 {font-size:27px;} 
  h2, .h2 {font-size:20px;}
  h3, .h3 {font-size:16px;}
  .hero, .cta {font-size:15px;}
  .cta-btn, button, .btn {font-size:16px;padding:9px 18px;}
  .card-content {padding:14px 8px;}
}

/************
  ANIMATIONS
************/
.card, .feature-item, .tip-block, .testimonial-card, .usp, .cta-btn, .footer-menu a, .cookie-btn {
  transition: box-shadow .16s, background .14s, color .14s, transform .14s;
}
.card:hover, .feature-item:hover, .tip-block:hover {
  box-shadow:0 6px 18px 0 rgba(27,38,59,0.12);
  transform: translateY(-2px) scale(1.015);
}
.cta-btn:active, .btn:active, button:active {transform: scale(.98);}

/*************************************************
  ENSURE MIN SPACING ON ALL CONTENT BLOCKS/CARDS
*************************************************/
.card, .feature-item, .value-item, .tip-block, .testimonial-card {margin-bottom:20px;}
.section > *:not(:last-child) {margin-bottom: 20px;}

/************
  UTILITY CLASSES
*************/
.text-center{text-align:center;}
.mt-20{margin-top:20px;}
.mb-20{margin-bottom:20px;}

/**************
  PRINT (hide fixed banners)
**************/
@media print {
  .cookie-banner, .cookie-modal-overlay, .mobile-menu {display:none !important;}
}
