/* ------------------------
   RESET & BASE STYLES
-------------------------*/
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #E6F0EB;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #135052;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #59C168;
  outline: none;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 1px solid #d6e5e0;
  margin: 24px 0;
}

/* Box-sizing for everything */
*, *:before, *:after {
  box-sizing: inherit;
}

/* ------------------------
   BRAND COLORS & VARS
-------------------------*/
:root {
  --color-primary: #135052;
  --color-secondary: #5B7444;
  --color-accent: #E6F0EB;
  --color-electric-cyan: #00ffe7;
  --color-electric-yellow: #ffe600;
  --color-electric-pink: #ff2a6d;
  --color-dark-text: #18231d;
  --color-light-bg: #E6F0EB;
  --color-card-bg: #fff;
  --color-cta: #ff2a6d;
  --color-nav-hover: #00ffe7;
}

/* ------------------------
   TYPOGRAPHY
-------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}
p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-dark-text);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
p {
  margin-bottom: 16px;
}

/* Headings: Vibrant, bold and dynamic */
h1, h2 {
  background: linear-gradient(90deg, #ff2a6d 0%, #00ffe7 60%, #ffe600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;  /* fallback */
}

/* ------------------------
   LAYOUT + CONTAINER
-------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ------------------------
   HEADER / NAVIGATION
-------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.06);
  z-index: 30;
  position: relative;
  padding: 0;
}
.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 32px;
  padding: 12px 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
  padding: 5px 2px;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  border-radius: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electric-cyan);
  background: #232;
  text-shadow: 0 2px 12px var(--color-electric-cyan);
}
/* Call to action button in header */
.cta-btn {
  background: var(--color-cta);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 16px 32px;
  border-radius: 40px 12px 32px 12px;
  border: none;
  box-shadow: 0 3px 16px 0 rgba(255,42,109,0.30);
  text-shadow: 0 3px 8px #FFE60040;
  cursor: pointer;
  margin-left: 32px;
  transition: background 0.24s, box-shadow 0.22s, transform 0.25s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
  box-shadow: 0 6px 32px 0 rgba(255,230,0,0.24);
  transform: scale(1.08) rotate(-1.5deg);
}

/* ------------------------
   MOBILE NAVIGATION
-------------------------*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-cta);
  color: #fff;
  border: none;
  border-radius: 12px 36px 20px 36px;
  font-size: 2.2rem;
  z-index: 1001;
  box-shadow: 0 3px 16px 0 rgba(255,42,109,0.16);
  cursor: pointer;
  transition: background 0.22s, transform 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-electric-cyan);
  color: var(--color-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #151d21f1;
  box-shadow: 0 0 12px 0 #2227;
  z-index: 1100;
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.77,.05,.3,1), opacity 0.2s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 10px 16px 24px 10px;
  align-self: flex-end;
  background: var(--color-electric-pink);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 4px 16px;
  box-shadow: 0 1px 8px rgba(255,42,109,0.18);
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1111;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-electric-cyan);
  color: var(--color-dark-text);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--color-electric-cyan);
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
}

/* ------------------------
   HERO & CALL-TO-ACTION
-------------------------*/
main > section:first-of-type {
  background: linear-gradient(108deg, #00ffe7 7%, #fff 48%, #ff2a6d 96%);
  border-radius: 0 0 92px 0;
  box-shadow: 0 8px 32px 0 rgba(0,255,231,.07), 0 2px 12px 0 #f09ec415;
  margin-bottom: 60px;
  padding-top: 48px;
}
main > section .cta-btn {
  margin-top: 16px;
}

/* ------------------------
   CARD / TESTIMONIAL / FEATURES
-------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 16px 44px 20px 16px;
  box-shadow: 0 3px 18px 0 rgba(91,116,68,0.07), 0 2px 24px #ff2a6d14;
  padding: 32px 28px;
  transition: box-shadow 0.14s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
  color: var(--color-primary);
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(0,255,231,0.22);
  transform: translateY(-4px) scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.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;
}


/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  margin-bottom: 24px;
  background: #fff;
  border: 2px solid var(--color-electric-cyan);
  border-radius: 22px 18px 44px 14px;
  box-shadow: 0 4px 16px 0 rgba(0,255,231,0.15), 0 8px 44px #ffe60010;
}
.testimonial-card p {
  color: var(--color-dark-text);
  font-weight: 500;
  font-size: 1.09rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-electric-pink);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* ------------------------
   SECTION / LISTS STYLES
-------------------------*/
ul, ol {
  margin-bottom: 14px;
  padding-left: 0;
}
ul > li, ol > li {
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
  padding-left: 26px;
  color: var(--color-primary);
  font-size: 1.08rem;
}
ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: linear-gradient(87deg, #ff2a6d 0%, #00ffe7 100%);
}
ol > li::before {
  display: none;
}

@media (max-width: 700px) {
  ul > li, ol > li {
    font-size: 1rem;
    padding-left: 20px;
  }
  ul > li::before {
    width: 9px; height: 9px;
    left: 0;
    top: 0.8em;
  }
}

/* ------------------------
   FOOTER
-------------------------*/
footer {
  background: var(--color-primary);
  padding: 40px 0 24px 0;
  width: 100%;
  color: #fff;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  flex: 0 0 auto;
  margin-bottom: 12px;
  width: 80px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .legal-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
  transition: color 0.14s;
  margin: 0;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: var(--color-electric-cyan);
}
.footer-contact {
  font-size: 0.98rem;
  color: #fffa;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ------------------------
   COOKIE CONSENT BANNER
-------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: #151d21dd;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 1.11rem;
  padding: 24px 2vw 24px 6vw;
  box-shadow: 0 -2px 26px 0 #00ffe733;
  animation: cookieDropIn .47s cubic-bezier(.7,.3,.3,1);
}
.cookie-banner p {
  margin: 0;
  color: #fff;
  font-size: 1.07rem;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-accept,
.cookie-reject {
  background: var(--color-electric-cyan);
  color: var(--color-primary);
  border: none;
  padding: 10px 26px;
  border-radius: 30px 12px 18px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--color-electric-yellow);
  color: var(--color-primary);
}
.cookie-reject {
  background: var(--color-electric-pink);
  color: #fff;
}
.cookie-reject:hover,
.cookie-reject:focus {
  background: var(--color-electric-cyan);
  color: var(--color-primary);
}
.cookie-settings {
  background: var(--color-electric-yellow);
  color: #243f21;
  border: none;
  padding: 10px 18px;
  border-radius: 24px 8px 12px 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s, color 0.13s;
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: var(--color-electric-cyan);
  color: var(--color-primary);
}
@keyframes cookieDropIn {
  from { transform: translateY(100px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #000c;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.25s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 44px 20px 16px;
  box-shadow: 0 8px 42px 0 #ff2a6d28, 0 1.5px 18px #00ffe722;
  padding: 36px 38px;
  max-width: 420px;
  width: 90vw;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1450;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--color-primary);
  background: none;
  -webkit-text-fill-color: initial;
  text-fill-color: initial;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.11rem;
  margin-bottom: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: var(--color-electric-pink);
  border: none;
  border-radius: 9px;
  padding: 4px 11px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover {
  background: var(--color-electric-cyan);
  color: var(--color-primary);
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 54px;
  height: 28px;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0;
  width: 54px; height: 28px;
  background: #e0e5eb;
  border-radius: 14px;
  transition: background 0.16s;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-slider {
  background: var(--color-electric-cyan);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.16s;
  box-shadow: 0 2px 6px #00ffe744;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-slider:before {
  transform: translateX(26px);
  background: var(--color-electric-pink);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ------------------------
   RESPONSIVE DESIGN
-------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 730px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    padding: 18px 5vw 22px 5vw;
    font-size: 1.02rem;
  }
  /* Hamburger Button */
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 650px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .footer-nav, .legal-nav {
    gap: 4px;
  }
}
@media (max-width: 540px) {
  main > section {
    padding: 30px 6px 32px 6px;
  }
  .card, .testimonial-card {
    padding: 20px 10px 20px 14px;
  }
  .cookie-modal {
    padding: 24px 8px;
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

/* ------------------------
   ANIMATIONS & INTERACTION
-------------------------*/
a, .cta-btn, .cookie-accept, .cookie-reject, .cookie-settings, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.14s, transform 0.18s;
}
button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-electric-cyan);
  outline-offset: 3px;
}

/* ------------------------
   UTILITIES & SPACING
-------------------------*/
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Spacing for exactly required classes */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}

/* ------------------------
   FORM STYLES (if ever used)
-------------------------*/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #b6d4d4;
  border-radius: 9px;
  padding: 6px 14px;
  background: #fff;
  color: var(--color-primary);
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-electric-cyan);
  outline: none;
}
button {
  cursor: pointer;
  background: var(--color-accent);
  transition: background 0.15s;
}
button:active {
  background: var(--color-electric-yellow);
}

/* ------------------------
   Z-INDEX MANAGEMENT
-------------------------*/
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay {
  z-index: 1100;
}
.mobile-menu.open, .cookie-modal-overlay {
  z-index: 1400;
}

/* ------------------------
   PRINT (optional)
-------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
