/* --- 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, 
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;
}
*:focus {
  outline: 2px solid #5CA6B6;
  outline-offset: 2px;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F6F9FB;
  color: #183153;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #2276cc;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #f98645;
}
ul, ol {
  list-style: none;
  margin-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
}


/* --- COLORS & FONTS --- */
:root {
  --color-primary: #183153;
  --color-secondary: #5CA6B6;
  --color-accent: #F6F9FB;
  --color-fun1: #FFCC3F;
  --color-fun2: #FE8D6E;
  --color-fun3: #7DE2D1;
  --color-fun4: #F98645;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1rem;
  color: #1E324D;
  margin-bottom: 16px;
}
strong {
  color: var(--color-fun4);
  font-weight: 700;
}

/* --- GENERAL LAYOUT & CONTAINER FLEX --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.center {
  align-items: center;
  text-align: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(92,166,182,.10);
}

/* --- HEADER --- */
header {
  background: var(--color-fun1);
  box-shadow: 0 2px 10px 0 rgba(28,58,120,.07);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  position: relative;
}
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-primary);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s, box-shadow .18s;
}
.main-nav a:hover {
  background: var(--color-fun2);
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(254,141,110,0.10);
}
.logo-nav .cta-btn {
  margin-left: 14px;
}

/* --- CALL TO ACTION BUTTON ---*/
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 30px;
  background: linear-gradient(90deg,var(--color-fun4),var(--color-fun2));
  color: #fff;
  border-radius: 44px;
  border: none;
  box-shadow: 0 3px 14px 0 rgba(255,204,63,.09);
  transition: transform .13s, box-shadow .18s, background .18s;
  cursor: pointer;
  letter-spacing: .03em;
  text-shadow: 0 2px 10px rgba(28,49,83,.04);
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg,var(--color-fun2),var(--color-fun4));
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 18px 0 rgba(254,141,110,.20);
}


/* --- MOBILE MENU (BURGER) --- */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1024px) {
  .main-nav, .logo-nav .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 22px;
    right: 26px;
    background: var(--color-secondary);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    border: none;
    z-index: 1202;
    transition: background .18s, box-shadow .18s;
    box-shadow: 0 2px 14px 0 rgba(28,49,83,.14);
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: var(--color-fun4);
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    z-index: 1201;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-accent);
    box-shadow: 0 6px 36px rgba(28,49,83,.19);
    transform: translateX(-100vw);
    transition: transform .32s cubic-bezier(.85,.03,.25,1);
    padding: 32px 28px 28px 28px;
    font-size: 1.3rem;
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    background: var(--color-fun2);
    color: #fff;
    font-size: 2.3rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-self: flex-end;
    margin-bottom: 28px;
    border: none;
    transition: background .15s;
  }
  .mobile-menu-close:hover {
    background: var(--color-fun4);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    margin-top: 20px;
  }
  .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--color-primary);
    padding: 14px 8px;
    border-radius: 12px;
    transition: background .18s, color .18s;
    font-size: 1.2rem;
    box-shadow: 0 1px 8px 0 rgba(92,166,182,.08);
    background: none;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus {
    background: var(--color-fun1);
    color: var(--color-fun4);
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(90deg, var(--color-fun1) 70%, var(--color-fun2) 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 32px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  background: linear-gradient(90deg,var(--color-fun4) 20%,var(--color-primary) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 22px;
}

/* --- FLEX LAYOUTS MANDATORY --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(92,166,182,.11);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px 22px 20px;
  min-width: 270px;
  flex: 1 1 270px;
}
.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: 18px;
  box-shadow: 0 2px 11px 0 rgba(92,166,182,.09);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 340px;
  font-size: 1.08rem;
  color: #173153;
}
.testimonial-card p {
  flex: 1;
  color: #183153;
}
.testimonial-card span {
  color: var(--color-fun2);
  font-weight: 700;
  font-size: 1em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.article-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(127, 226, 209, .10);
  padding: 28px 20px 18px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  transition: transform .12s, box-shadow .12s;
}
.article-grid > div:hover {
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 30px 0 rgba(254, 141, 110, .13);
}

/* --- TABLES --- */
table {
  width: 100%;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 11px 0 rgba(92,166,182,.08);
  border-collapse: separate;
  overflow: hidden;
  margin-bottom: 20px;
}
thead {
  background: var(--color-fun1);
}
thead th {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 10px;
  font-size: 1.13rem;
  text-align: left;
}
td {
  padding: 14px 10px;
  border-bottom: 1px solid #ececec;
}
tr:last-child td {
  border-bottom: 0;
}

/* --- FOOTER --- */
footer {
  background: var(--color-accent);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -2px 18px 0 rgba(28,49,83,.03);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0 16px 0;
  font-size: 1rem;
}
.footer-logo {
  flex: 1 1 140px;
}
.footer-links {
  flex: 2 1 240px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-contact {
  flex: 2 1 220px;
  font-size: .97rem;
  color: #183153;
  margin-bottom: 12px;
}
.footer-contact ul {
  margin-bottom: 0;
}
.footer-social {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .97rem;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  margin-right: 2px;
  border-radius: 8px;
  background: var(--color-fun3);
  transition: background .17s, box-shadow .14s;
}
.footer-social a:hover img {
  background: var(--color-fun2);
  box-shadow: 0 2px 8px 0 rgba(254,141,110,.13);
}

/* --- CONTACT SHORT --- */
.contact-short ul,
.contact-data ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.08rem;
}
.contact-short ul li,
.contact-data ul li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-short img,
.contact-data img {
  width: 22px;
  height: 22px;
}

address {
  font-style: normal;
  color: #276388;
  font-weight: 500;
}

/* --- SEARCH STYLING --- */
input[type="search"] {
  padding: 12px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--color-secondary);
  font-size: 1rem;
  background: #fff;
  color: var(--color-primary);
  margin-top: 8px;
  box-shadow: 0 2px 10px 0 rgba(92,166,182,.10);
  width: 100%;
  max-width: 350px;
  transition: border-color .14s, box-shadow .11s;
}
input[type="search"]:focus {
  border-color: var(--color-fun2);
  box-shadow: 0 4px 20px 0 rgba(254,141,110,.11);
}

/* --- FAQ --- */
.faq-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px 0 rgba(236, 236, 236, .16);
  padding: 24px 18px 17px 18px;
  transition: box-shadow .17s, transform .13s;
}
.faq-list > div:hover {
  box-shadow: 0 10px 29px 0 rgba(254,141,110,.17);
  transform: scale(1.01) rotate(-1deg);
}

/* --- GENERAL ANIMATIONS & MICRO-INTERACTIONS --- */
.section, .card, .article-grid > div, .faq-list > div, .testimonial-card {
  transition: box-shadow .18s, transform .14s, background .18s;
}
.section:hover, .card:hover, .testimonial-card:hover, .faq-list > div:hover {
  box-shadow: 0 12px 30px 0 rgba(92,166,182,.13);
  transform: translateY(-3px) scale(1.01) rotate(-1deg);
}

/* --- LISTS --- */
ul > li, ol > li {
  position: relative;
  line-height: 1.8;
  margin-left: 0;
  padding-left: 24px;
}
ul > li:before {
  content: '\25FE'; /* fun square */
  color: var(--color-fun1);
  font-size: .92em;
  left: 0;
  top: 0.13em;
  position: absolute;
}
ol > li {
  padding-left: 0;
  list-style: decimal inside;
}

/* --- NEXT STEPS LIST (thank-you) --- */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0 36px 0;
  align-items: center;
  font-size: 1.03rem;
}


/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: white;
  box-shadow: 0 -4px 20px 0 rgba(24,49,83,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1300;
  padding: 22px 16px;
  gap: 24px;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: transform .32s cubic-bezier(.85,.03,.25,1), opacity .28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  padding: 11px 28px;
  border-radius: 33px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-fun2);
  color: #fff;
  border: none;
  font-size: 1.04rem;
  font-weight: 700;
  margin-left: 9px;
  transition: background .15s, transform .11s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-fun4);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-secondary);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-fun1);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--color-fun3);
  color: var(--color-primary);
  transform: scale(1.05);
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,83,.36);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1320;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .16s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 36px 0 rgba(24,49,83,.14);
  padding: 44px 30px 38px 30px;
  max-width: 97vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.16rem;
  font-weight: 900;
  color: var(--color-primary);
}
.cookie-modal-content .close-btn {
  position: absolute;
  right: 28px;
  top: 19px;
  background: var(--color-fun2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5em;
  width: 38px;
  height: 38px;
  border: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-content .close-btn:hover {
  background: var(--color-fun4);
}
.cookie-modal-content ul {
  margin: 0 0 7px 0;
  padding: 0;
  list-style: none;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 8px 0;
}
.cookie-category label {
  font-weight: 500;
  color: var(--color-primary);
}
.cookie-category input[type='checkbox'] {
  width: 28px; height: 28px;
  accent-color: var(--color-fun2);
  cursor: pointer;
}
.cookie-category input[disabled] {
  accent-color: var(--color-fun4);
  cursor: default;
}
.cookie-modal-content .cookie-btn {
  margin-top: 8px;
}

/* --- ANIMATED ELEMENTS & FUN DECOR --- */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  top: -44px;
  left: -90px;
  width: 240px;
  height: 240px;
  background: var(--color-fun3);
  border-radius: 70% 40% 51% 60% / 60% 52% 49% 55%;
  opacity: .33;
  z-index: 1;
  animation: funfloat 6s infinite alternate cubic-bezier(.7,.3,.4,1);
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  right: -94px;
  top: 60px;
  width: 160px;
  height: 160px;
  background: var(--color-fun2);
  border-radius: 45% 60% 45% 60% / 76% 44% 55% 64%;
  opacity: .25;
  z-index: 1;
  animation: funfloat2 7s infinite alternate-reverse ease-in-out;
}
@keyframes funfloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.1) rotate(5deg); }
}
@keyframes funfloat2 {
  0% { transform: translateY(0) scale(1) rotate(0); }
  100% { transform: translateY(-22px) scale(1.04) rotate(6deg); }
}

/* --- PLAYFUL FONT EFFECTS --- */
h1, h2, h3 {
  text-shadow: 0 3px 14px rgba(254,141,110,.08);
}
h2 {
  background: linear-gradient(90deg,var(--color-fun4),var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- PRICING STYLE --- */
tbody td:last-child, section span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-fun2);
  font-weight: 900;
  font-size: 1.05em;
}

/* --- UTILITIES --- */
.hidden {
  display: none !important;
}
.block {
  display: block !important;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 950px) {
  .content-wrapper,
  .footer .content-wrapper,
  .card-container, .content-grid, .article-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer .content-wrapper {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .section {
    padding: 29px 6px;
    margin-bottom: 30px;
  }
  .logo-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero {
    padding: 36px 0 24px 0;
    border-radius: 0 0 22px 22px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 11px;
    padding: 28px 0 10px 0;
    align-items: flex-start;
  }
  .footer-logo{ margin-bottom: 6px; }
  .footer-links { margin-bottom: 6px; }
  .footer-contact { margin-bottom: 7px; }
  .card, .article-grid > div, .faq-list > div, .testimonial-card {
    min-width: 0;
    padding: 15px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.14rem; }
  .card, .faq-list > div, .testimonial-card { padding: 11px 4px; }
  .footer-logo img { width: 120px; }
  .footer-social a img { width: 24px; height: 24px; }
}

/* --- ACCESSIBILITY: HIGH CONTRAST FOR TESTIMONIALS --- */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  background: #fff;
  color: #183153;
}
.testimonial-card p {
  font-size: 1.07rem;
}

/* --- END --- */
