/* 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,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1; box-sizing: border-box; background-color: #e6f7fa; color: #144267;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a{text-decoration: none; color: inherit;}
button, input, select, textarea {
  font-family: inherit;
}
img {max-width: 100%; display: block;}

/* BRANDING VARIABLES (for fallback if CSS vars disabled) */
:root {
  --primary: #144267;
  --secondary: #29b8e5;
  --accent: #e6f7fa;
  --brand-yellow: #ffe066;
  --brand-pink: #ff80b2;
}

/* TYPOGRAPHY */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: var(--accent);
  color: var(--primary);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  position: relative;
}
h1 {font-size: 2.6rem; color: var(--secondary); margin-bottom: 18px; letter-spacing: 0.02em; text-shadow: 0 6px 24px rgba(41,184,229,0.10);}
h2 {font-size: 2rem; color: var(--primary); margin-bottom: 16px; letter-spacing: 0.01em;}
h3 {font-size: 1.25rem; margin-bottom: 10px;}
h4 {font-size: 1.1rem;}
p,li,blockquote {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
strong {color: var(--secondary); font-weight: 700;}
blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 18px;
  color: #222a3a;
  font-style: italic;
}

/* CONTAINERS & ALIGNMENT */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(20,66,103,.04);
}

/* NAVIGATION */
header {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(20,66,103,0.08);
  position: sticky;
  top: 0; z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding-top: 12px; padding-bottom: 12px;
}
header a img {
  height: 48px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 8px 2px;
  border-radius: 8px;
  transition: background .19s, color .19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.primary-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  padding: 12px 28px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(41,184,229,0.11);
  cursor: pointer;
  margin-left: 32px;
  transition: background 0.17s, color 0.17s, transform .10s;
  position: relative;
}
.primary-btn:hover, .primary-btn:focus {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}

/* Mobile burger menu button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin-left: auto;
  cursor: pointer;
  display: none;
  padding: 6px 14px;
  z-index: 1101;
  border-radius: 12px;
  transition: background .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-yellow);
  color: var(--primary);
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,66,103,0.90);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
  padding-left: 0;
  transition: transform .37s cubic-bezier(.65,-0.01,.28,1.25);
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--brand-pink);
  color: #fff;
  font-size: 2.5rem;
  border: none;
  border-radius: 8px;
  padding: 2px 17px;
  position: absolute;
  top: 19px; right: 25px;
  cursor: pointer;
  z-index: 1410;
  box-shadow: 0 4px 24px rgba(255,128,178,0.14);
  transition: background .17s, color .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 70px 32px 0 36px;
  font-size: 1.35rem;
  width: 80%;
}
.mobile-nav a {
  padding: 15px 8px;
  border-radius: 13px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  transition: background .14s, color .15s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(105deg, var(--accent) 65%, var(--secondary) 120%);
  padding: 55px 0 65px 0;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.hero-section .container {align-items: center;}
.hero-section .content-wrapper {
  align-items: flex-start;
  animation: hero-pop .8s cubic-bezier(.7,-.25,.28,1.13) 0s 1;
  background: rgba(255,255,255,.75);
  border-radius: 32px;
  padding: 36px 6vw 36px 6vw;
  box-shadow: 0 7px 28px 0 rgba(41,184,229,0.09);
  max-width: 700px;
}
@keyframes hero-pop {
  0%{transform: scale(.9) translateY(28px);opacity:0;}
  100%{transform: scale(1) translateY(0);opacity:1;}
}
.hero-section h1, .hero-section h2 {text-align: left;}
.hero-section p {margin-bottom: 24px; font-size: 1.15rem;}

/* FEATURE GRID (for feature highlights) */
.feature-grid, .price-table-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 20px;
}
.feature-grid > div,.price-table-grid > div {
  flex: 1 1 240px;
  min-width: 230px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 2px 11px 0 rgba(20,66,103,.06);
  padding: 24px 18px 22px 18px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  transition: transform .14s, box-shadow .14s;
}
.feature-grid > div:hover, .price-table-grid > div:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 7px 28px -5px var(--secondary), 0 2px 11px 0 rgba(20,66,103,.08);
}
.feature-grid img, .price-table-grid img {
  height: 56px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 13px rgba(41,184,229,.16));
}
.price-table-grid > div strong, .feature-grid > div strong {
  font-size: 1.2rem;
  color: var(--primary);
}

/* PLAN HIGHLIGHTS + FAQLIST */
.plan-highlights ul, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.faq-list > div {
  background: rgba(41,184,229,.13);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px 0 rgba(41,184,229,0.08);
  margin-bottom: 20px;
  transition: background 0.12s;
}
.faq-list > div:hover {
  background: var(--brand-yellow);
}

/* TEXT, LISTS, OL*/
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0;
}
ul li:before {
  content: '•';
  color: var(--brand-pink);
  margin-right: 8px;
  font-size: 1.3em;
  position: relative;
  top: 2px;
}
ol li img {
  vertical-align: middle;
  margin-right: 6px;
}
ol li strong {
  color: var(--brand-yellow);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border: 2px solid var(--brand-yellow);
  border-radius: 26px;
  box-shadow: 0 6px 38px -8px rgba(255,224,102,0.12);
  margin-bottom: 20px;
  transition: box-shadow .12s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px -8px rgba(41,184,229,0.18), 0 6px 38px -8px rgba(255,224,102,0.10);
  transform: scale(1.02);
}
.testimonial-meta {
  font-size: 1.05em;
  color: #144267;
  font-weight: 500;
  margin-top: 5px;
}
.testimonial-card blockquote {
  margin: 0;
  color: #222a3a;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(98deg, var(--secondary) 10%, var(--brand-yellow) 100%);
  color: var(--primary);
  border-radius: 32px;
  box-shadow: 0 7px 20px 0 rgba(41,184,229,.10);
  padding: 36px 23px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
  animation: banner-pop .65s cubic-bezier(.68,-.05,.24,1.14) 0s 1;
}
@keyframes banner-pop {
  0% { transform: scale(.96) translateY(20px); opacity: 0; }
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cta-banner h3 {
  color: var(--primary);
  font-size: 2rem;
}
.cta-banner p {
  color: var(--primary);
  font-size: 1.2rem;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
  margin-top: 70px;
}
footer .container {flex-direction: column; align-items: stretch; gap: 22px;}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff; opacity: 0.92;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  padding: 7px 10px;
  transition: background .17s, color .09s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  display: flex; flex-direction: column; gap: 7px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.footer-contact span img {height: 20px; margin-right: 4px; vertical-align:middle;}
.footer-copy {
  font-size: 0.97rem;
  color: #e6f7fa;
  opacity: 0.74;
}

/* SPACING AND FLEXBOX LAYOUT CLASSES (mandatory) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(41,184,229,.08);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Plan highlight cards */
.plan-highlights ul {
  margin-bottom: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: linear-gradient(97deg,#fffbe7 70%, #e6f7fa 119%);
  border-top: 3px solid var(--brand-yellow);
  box-shadow: 0 -6px 30px 0 rgba(20,66,103,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 18px 22px;
  font-size: 1rem;
  gap: 16px;
  animation: cookie-pop .5s cubic-bezier(.58,0,.35,1.04) 0s 1;
}
@keyframes cookie-pop {
  0% {transform: translateY(60px);opacity:0;}
  100%{transform: translateY(0);opacity:1;}
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 11px 0 rgba(20,66,103,.05);
  cursor: pointer;
  font-weight: 600;
  transition: background .12s, color .13s, box-shadow .13s;
}
.cookie-banner .accept-btn {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept-btn:hover {background: var(--primary); color: #fff;}
.cookie-banner .reject-btn {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-banner .reject-btn:hover {background: var(--secondary); color: var(--primary);}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--primary);
  border: 1.5px dashed var(--secondary);
}
.cookie-banner .cookie-settings-btn:hover {background: var(--brand-yellow);}

/* Cookie settings modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(41,184,229,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 350px;
  width: 95vw;
  box-shadow: 0 10px 80px rgba(41,184,229,0.22), 0 2px 12px 0 rgba(255,224,102,0.11);
  padding: 30px 24px 27px 24px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  z-index: 2150;
  animation: modal-pop .36s cubic-bezier(.74,-.18,.27,1.15) 0s 1;
}
@keyframes modal-pop {
  0%{transform: scale(0.89) translateY(60px); opacity:0;}
  100%{transform: scale(1) translateY(0); opacity:1;}
}
.cookie-modal h3, .cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
}
.cookie-modal .essential {
  color: var(--primary);
  font-weight: 500;
}
.cookie-modal .modal-actions {
  display: flex; gap: 13px; margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: inherit;
  border: none; border-radius: 8px;
  padding: 9px 17px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  transition: background .14s, color .13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: #fff;
}

/* Responsive - mobile first */
@media (max-width: 900px) {
  .feature-grid, .price-table-grid, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 16px;
    padding-top: 10px; padding-bottom: 10px;
  }
  .main-nav {display: none;}
  .primary-btn {margin-left: 0;}
  .mobile-menu-toggle {display: block;}
  .hero-section .content-wrapper {padding: 27px 5vw;}
  .cta-banner {padding: 27px 10px; border-radius: 28px;}
  .container {padding-left: 10px; padding-right:10px;}
  .footer-nav {gap: 15px;}
  .feature-grid, .price-table-grid, .content-grid {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .feature-grid > div, .price-table-grid > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .testimonial-card {flex-direction: column; align-items: flex-start;}
  .section { padding: 28px 7px; }
  .faq-list > div {padding: 15px 11px;}
}
@media (max-width: 600px) {
  .hero-section {padding: 24px 0 32px 0;}
  h1 {font-size: 1.55rem;}
  h2 {font-size: 1.2rem;}
  .cta-banner h3 {font-size: 1.2rem;}
}
@media (max-width: 430px) {
  .footer-contact {font-size: .95rem;}
  .footer-copy, .footer-nav {font-size: .91rem;}
  .cta-banner h3,.cta-banner p {font-size: 1.1rem;}
}

/* ANIMATIONS and MICRO-INTERACTIONS */
a, button, .primary-btn, .faq-list > div, .card, .feature-grid > div, .price-table-grid > div, .testimonial-card, .cta-banner {
  transition: box-shadow .18s, transform .17s, background .13s, color .11s;
}

/* PLAYFUL DYNAMIC ACCENTS */
.section {
  border: 2.5px dashed var(--secondary);
  animation: section-bgfloat 3s infinite alternate cubic-bezier(.6,0,.4,1.05);
  background-color: #fff;
}
@keyframes section-bgfloat {
  from{box-shadow:0 2px 16px rgba(20,66,103,.04);}to{box-shadow:0 8px 32px rgba(41,184,229,0.12);}
}
.feature-grid > div:before, .price-table-grid > div:before {
  content: '';
  display: block;
  width: 40px; height: 6px;
  background: var(--brand-pink);
  border-radius: 5px;
  position: absolute;
  left: 50%; top: -12px;
  transform: translateX(-50%) rotate(-7deg);
  opacity: .25;
  transition: opacity .15s;
}
.feature-grid > div:hover:before, .price-table-grid > div:hover:before{
  opacity: .37;
}

/* FUN FONTS (imperfect playful headings) */
h1, h2, h3, h4, .primary-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1, h2, .cta-banner h3 {
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(41,184,229,0.13);
}

/* DECORATIVE ACCENTS - Confetti dots, etc. (optional for playful) */
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: 34px; bottom: 26px;
  width: 16px; height: 16px;
  background: var(--brand-pink);
  border-radius: 100%;
  opacity: .15;
  z-index: 1;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: 29px; top: 23px;
  width: 11px; height: 11px;
  background: var(--brand-yellow);
  border-radius: 100%;
  opacity: .20;
  z-index: 1;
}

/* Hide decorative dots on mobile for less clutter */
@media (max-width: 600px) {
  .section:after, .section:before {display: none;}
}

/* Accessibility: Focus Outlines */
a:focus, button:focus, .primary-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px dashed var(--secondary); outline-offset: 2px;
}

/* Miscellaneous spacing utility */
.mb-2 {margin-bottom: 12px!important;}
.mb-3 {margin-bottom: 20px!important;}
.mt-2 {margin-top: 12px!important;}
.mt-3 {margin-top: 20px!important;}

/* Hide cookie modal/overlay by default */
.cookie-banner, .cookie-modal-backdrop {display: none;}

/* Show cookie banner and modal only if script sets .show (to avoid FOUC) */
.cookie-banner.show {display: flex;}
.cookie-modal-backdrop.show, .cookie-modal-backdrop.open {display: flex;}

/* END of style.css */
