/* 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;
}
html {
  line-height: 1;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  background: #f9fafc;
  color: #202C39;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  color: #E3B23C;
  text-decoration: none;
  transition: color .2s;
}
a:hover {
  color: #202C39;
}
img {
  max-width: 100%;
  display: block;
}
/* Brand Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* COLOR VARIABLES (with fallback) */
:root {
  --color-primary: #202C39;
  --color-secondary: #5D6770;
  --color-accent: #E3B23C;
  --color-bg: #f9fafc;
  --color-white: #fff;
  --color-electric-blue: #2BCBFF;
  --color-hot-pink: #FF347F;
  --color-gradient-1: #E3B23C;
  --color-gradient-2: #FF347F;
}

/* CONTAINER & GENERAL SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(44,44,44,0.08);
}
 /* HERO SECTION (vibrant energetic) */
.hero {
  width: 100%;
  min-height: 350px;
  background: linear-gradient(90deg, #E3B23C 0%, #FF347F 100%);
  color: #202C39;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 6px 40px 0 rgba(32,44,57,0.09);
}
.hero .container {
  height: 100%;
}
.hero .content-wrapper {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 0 20px 0;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #202C39;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(227,178,60,0.08);
}
.hero .subheadline {
  font-size: 1.2rem;
  color: #202C39;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 700px;
}

/* HEADER */
header {
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 2px 12px 0 rgba(32,44,57,0.07);
  justify-content: space-between;
  gap: 22px;
}
header a img {
  height: 38px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #202C39;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  padding: 7px 0;
  position: relative;
  transition: color .15s;
}
header nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #FF347F 35%, #E3B23C 95%);
  border-radius: 4px;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width .2s;
}
header nav a:hover, header nav a:focus {
  color: #FF347F;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
.cta-primary {
  background: linear-gradient(90deg, #E3B23C 60%, #2BCBFF 100%);
  color: #202C39;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .045em;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.125rem;
  box-shadow: 0 4px 24px 0 rgba(227,178,60,0.12);
  cursor: pointer;
  transition:
    box-shadow .19s, 
    transform .11s, 
    background .24s,
    color .18s;
  outline: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #FF347F 40%, #2BCBFF 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 32px 0 rgba(227,178,60,0.22);
}

/* GENERAL TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #202C39;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.7rem;
  color: #FF347F;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.25rem;
  color: #2BCBFF;
  margin-bottom: 7px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #5D6770;
  margin-bottom: 6px;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #202C39;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 7px;
  position: relative;
}
ul li:before {
  content: '';
  background: linear-gradient(90deg, #FF347F 10%, #2BCBFF 100%);
  width: 14px;
  height: 4px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 3px;
  vertical-align: middle;
}
ol li { counter-increment: custom; }
ol li:before {
  content: counters(custom, '.')'. ';
  color: #E3B23C;
  font-weight: 700;
  margin-right: 6px;
  background: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(32,44,57,0.05);
}
thead th {
  font-size: 1.1rem;
  background: #E3B23C;
  color: #202C39;
  padding: 16px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
tbody td {
  font-size: 1rem;
  padding: 14px 9px;
  border-bottom: 1px solid #eee;
}
tbody tr:last-child td { border-bottom: none; }

/* FLEXBOX LAYOUTS (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px 0 rgba(44,44,44,0.08);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .13s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(227, 178, 60, 0.19);
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}
.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;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #202C39;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(44,44,44,0.10);
  font-size: 1.08rem;
  transition: box-shadow .17s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px 0 rgba(44,44,44,0.17);
  transform: scale(1.025);
  z-index: 3;
}
.testimonial-card p {
  color: #202C39;
  margin-bottom: 6px;
  font-size: 1.09rem;
}
.testimonial-card span {
  font-weight: bold;
  color: #2BCBFF;
  font-size: .98rem;
  margin-left: auto;
  text-align: right;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div {
  background: rgba(43,203,255,0.07);
  padding: 24px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(44,44,44,0.06);
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s, transform .13s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 25px rgba(43,203,255,0.15);
  transform: translateY(-2px) scale(1.018);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 10px;
}
/* Text Section */
.text-section {
  margin-bottom: 20px;
  padding-left: 4px;
}
.text-section h2, .text-section h3 {
  margin-top: 12px;
}
.text-section ul {
  margin-top: 4px;
  margin-left: 0;
  padding-left: 22px;
}
.text-section ol {
  margin-top: 6px;
  margin-left: 0;
  padding-left: 26px;
}
.text-section li {
  margin-bottom: 8px;
}

/* CTA Section */
.cta {
  background: linear-gradient(90deg, #FF347F 35%, #2BCBFF 100%);
  color: #202C39;
  box-shadow: 0 4px 30px 0 rgba(43,203,255,0.07);
  border-radius: 24px;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
}
.cta .cta-primary {
  margin-top: 16px;
  background: #fff;
  color: #FF347F;
  border: 3px solid #E3B23C;
  font-size: 1.175rem;
  font-weight: bold;
  transition: background .2s, color .2s, border-color .16s;
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #FF347F;
  color: #fff;
  border-color: #2BCBFF;
}
.cta .text-section h3 {
  color: #fff;
}
.cta .text-section p, .cta .text-section {
  color: #fff;
  font-weight: 500;
}

/* Footer */
footer {
  width: 100%;
  background: #202C39;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 42px 20px 28px 20px;
  box-shadow: 0 -4px 18px 0 rgba(32,44,57,0.10);
  border-radius: 25px 25px 0 0;
  margin-top: 46px;
}
footer img {
  height: 34px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #E3B23C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: underline;
  transition: color .2s;
}
footer nav a:hover,
footer nav a:focus {
  color: #FF347F;
}
footer p {
  color: #fff;
  font-size: .98rem;
  text-align: center;
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(90deg, #E3B23C 60%, #2BCBFF 100%);
  color: #202C39;
  font-size: 2.2rem;
  border: none;
  padding: 8px 22px;
  border-radius: 50px;
  position: fixed;
  right: 22px;
  top: 18px;
  z-index: 1600;
  box-shadow: 0 2px 12px 0 rgba(227,178,60,0.12);
  cursor: pointer;
  transition: background .18s, color .17s, transform .13s;
}
.mobile-menu-toggle:active {
  transform: scale(0.98);
}
.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: 2000;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.57,.02,.3,1) 0s;
  box-shadow: 6px 0 54px 0 rgba(32,44,57,0.16);
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #FF347F;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  z-index: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 42px 40px 0 40px;
  gap: 20px;
}
.mobile-nav a {
  color: #202C39;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 19px 0 9px 12px;
  border-bottom: 2px solid #f5f5f5;
  transition: background .15s, color .17s;
  border-radius: 7px;
  margin-bottom: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF347F10;
  color: #FF347F;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #E3B23C 70%, #2BCBFF 100%);
  color: #202C39;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -4px 34px 0 rgba(32,44,57,0.18);
  font-size: 1.03rem;
  z-index: 2800;
  border-radius: 24px 24px 0 0;
  animation: slideInUp .7s;
}
@keyframes slideInUp {
  0% { transform: translateY(70px); opacity: 0; }
  98% { opacity: 1; }
  100%{ transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.cookie-banner button {
  padding: 10px 26px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #fff;
  color: #202C39;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(32,44,57,0.09);
  transition: background .15s, color .15s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #2BCBFF;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #202C39;
  border: 2px solid #2BCBFF;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #2BCBFF;
  color: #fff;
  border-color: #FF347F;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,44,57,.44);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn .23s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #202C39;
  padding: 40px 30px 30px 30px;
  border-radius: 20px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 52px 0 rgba(32,44,57,0.21);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #FF347F;
  letter-spacing: -.6px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}
.cookie-modal-content input[type=checkbox] {
  accent-color: #2BCBFF;
  transform: scale(1.2);
  margin-right: 9px;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  color: #202C39;
  border: none;
  font-size: 1.9rem;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
}

/* Button Contrast for Cookie Banner */
.cookie-banner button, .cookie-modal-content button {
  border: none;
  box-shadow: 0 2px 8px 0 rgba(32,44,57,0.09);
}
/* Essential (passive):
   Display as non-togglable and slightly disabled */
.cookie-modal-content input[disabled],
.cookie-modal-content input[aria-disabled='true'] {
  opacity: .6 !important;
  pointer-events: none !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding: 0 14px;
  }
}
@media (max-width: 996px) {
  .content-wrapper {
    padding: 0 0;
    gap: 20px;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  /* Mobile nav */
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    padding: 12px 22px;
    font-size: 1rem;
  }
  .hero {
    min-height: 230px;
    border-radius: 0 0 26px 26px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .subheadline {
    font-size: 1rem;
  }
  .section, .cta {
    padding: 25px 10px 20px 10px;
    margin-bottom: 32px;
    border-radius: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 15px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .card-container, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .card {
    min-width: 94vw;
    padding: 15px 12px;
    border-radius: 8px;
    margin-bottom: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 10px 12px 12px;
    font-size: .98rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 6px;
  }
  .cookie-modal-content {
    padding: 20px 8px 15px 12px;
    gap: 15px;
    min-width: unset;
    max-width: 97vw;
  }
  footer {
    padding: 21px 7px 15px 6px;
    gap: 13px;
    border-radius: 14px 14px 0 0;
    margin-top: 18px;
  }
  footer img {
    height: 23px;
  }
  footer nav {
    gap: 8px;
  }
}
@media (max-width: 500px) {
  .hero {padding-top: 20px;}
  .testimonial-card {
    font-size: .96rem;
    padding: 10px;
    gap: 3px;
  }
  h1 {
    font-size: 1.21rem;
  }
  h2 {
    font-size: 1rem;
  }
  .container {
    padding: 0 2px;
  }
}


/* Misc minor styles */
::-webkit-scrollbar {
  width: 8px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #2BCBFF;
  border-radius: 6px;
}

td, th { text-align: left; vertical-align: top; }

/* Micro-interactions */
button:active, a:active {
  transform: scale(.98);
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Accessibility tweaks */
a:focus, button:focus {
  outline: 2px solid #2BCBFF;
  outline-offset: 2px;
}

/* Print safe */
@media print {
  body * { background: #fff !important; color: #000 !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
