/* RESET & NORMALIZATION */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F5;
  color: #234E70;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #234E70;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #9AD131;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234E70;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }

/* Container & Section Structure */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(35, 78, 112, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Hero Section */
.hero {
  padding: 60px 0 40px 0;
  background: #234E70;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 24px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero p {
  max-width: 620px;
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-align: center;
}

/* CTA Primary Button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border: none;
  border-radius: 32px;
  background: #9AD131;
  color: #234E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(154, 209, 49, 0.12);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.1s;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #234E70;
  color: #fff;
  box-shadow: 0 6px 24px rgba(35, 78, 112, 0.18);
  transform: translateY(-2px) scale(1.03);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  height: 70px;
  background: #fff;
  padding: 0 24px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 10px rgba(35, 78, 112,0.05);
  position: relative;
  z-index: 10;
}
.main-nav img {
  height: 40px;
  margin-right: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.15s;
  position: relative;
}
.main-nav a.cta-primary {
  margin-left: 18px;
  min-width: 180px;
  border-bottom: 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #9AD131;
  border-bottom: 2.5px solid #9AD131;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #234E70;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 2rem;
  margin-left: auto;
  z-index: 1001;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #9AD131;
  color: #234E70;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #234E70;
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.82,.01,.82,1), opacity 0.2s;
  z-index: 1100;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #9AD131;
  color: #234E70;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  border-radius: 8px;
  cursor: pointer;
  padding: 5px 14px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #234E70;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 42px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #fff;
  border-bottom: 2.5px solid transparent;
  padding: 8px 0;
  transition: color 0.15s, border-color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #9AD131;
  border-bottom: 2.5px solid #9AD131;
}

/* FOOTER NAVIGATION & STRUCTURE */
footer {
  background: #234E70;
  color: #fff;
  padding: 56px 0 32px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #9AD131;
  border-color: #9AD131;
}
.brand-credits span {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 0.98rem;
  color: #e4f0fc;
  letter-spacing: 0.01em;
}

/* --- LAYOUT COMPONENTS --- */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.features-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #f7fafc;
  color: #234E70;
  border-radius: 12px;
  padding: 12px 22px 12px 16px;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 7px rgba(35,78,112,0.07);
  min-width: 230px;
  font-weight: 500;
}
.features-list img {
  height: 32px;
  margin-right: 8px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 1.12rem;
}
.steps-list li {
  position: relative;
  padding-left: 27px;
  color: #234E70;
  margin-bottom: 4px;
}
.steps-list li:before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  background: #9AD131;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 7px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 0;
}
.text-section li {
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}
.text-section li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #234E70;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 9px;
}

.text-section a {
  color: #234E70;
  word-break: break-all;
  text-decoration: underline dotted #9AD131 1.5px;
  font-weight: 500;
}
.text-section a:hover, .text-section a:focus {
  color: #9AD131;
  text-decoration: underline solid #9AD131 2px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(35,78,112,0.11);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 260px;
  padding: 32px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border-left: 6px solid #9AD131;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(35,78,112,0.08);
  max-width: 550px;
  min-width: 0;
  color: #234E70;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #234E70;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card span {
  font-size: 1.01rem;
  color: #234E70;
  opacity: 0.8;
  font-family: 'Roboto', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* PRICING & BIKE COMPARISON TABLES */
.pricing-table, .bike-comparison {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(35,78,112,.07);
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  table-layout: fixed;
}
.pricing-table th, .bike-comparison th {
  background: #234E70;
  color: #fff;
  padding: 15px 7px;
  text-align: left;
  font-weight: 700;
}
.pricing-table td, .bike-comparison td {
  padding: 13px 7px;
  border-bottom: 1.5px solid #eaeaea;
  color: #234E70;
}
.pricing-table tbody tr:last-child td,
.bike-comparison tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td, .bike-comparison tr:hover td {
  background: #f7fafc;
}

/* Utility spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #234E70;
  box-shadow: 0 -2px 18px rgba(35, 78, 112, 0.11);
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
  font-size: 1.05rem;
  border-radius: 18px 18px 0 0;
  animation: bannerSlideUp 0.53s cubic-bezier(.21,1.58,.84,.93);
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  flex: 1 1 0;
  margin-right: 20px;
  min-width: 0;
  font-size: 1.01rem;
}
.cookie-btn {
  display: inline-block;
  margin-left: 12px;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: #9AD131;
  color: #234E70;
  transition: background 0.13s, color 0.13s, box-shadow 0.2s;
}
.cookie-btn.settings {
  background: #fff;
  color: #234E70;
  border: 2px solid #234E70;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #234E70;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #9AD131;
  color: #234E70;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34, 78, 112, 0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #234E70;
  min-width: 320px;
  max-width: 97vw;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(35,78,112,0.18);
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPopIn 0.36s cubic-bezier(.28,1.22,.54,.99);
  position: relative;
}
@keyframes modalPopIn {
  from { transform: scale(0.86); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-check {
  accent-color: #9AD131;
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  opacity: 0.8;
}
.cookie-category.essential .cookie-check {
  pointer-events: none;
  opacity: 0.8;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: #234E70;
  font-size: 1.7rem;
  border: none;
  border-radius: 6px;
  position: absolute;
  top: 12px;
  right: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f9fded;
  color: #9AD131;
}

/* --- GEOMETRIC/STRUCTURED ENHANCEMENTS --- */
.section, .card, .testimonial-card, .cookie-modal, .cookie-consent-banner {
  /* Emphasize geometric corners */
  border-radius: 16px 28px 18px 32px;
}
.features-list li, .main-nav, .footer-nav, .card, .testimonial-card, .pricing-table, .bike-comparison {
  /* Slightly more angular, geometric corners */
  border-radius: 14px 25px 14px 20px;
}

/* Subtle geometric SVG background pattern for hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  right: -120px;
  top: -40px;
  width: 260px;
  height: 220px;
  background: url("data:image/svg+xml;utf8,<svg fill='none' viewBox='0 0 320 240' xmlns='http://www.w3.org/2000/svg'><polygon points='54,0 320,0 320,200 254,240 0,240 0,40' fill='%239ad131' fill-opacity='0.09'/></svg>") no-repeat center/cover;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.hero > .container,
.hero > .container > .content-wrapper {
  position: relative;
  z-index: 1;
}


/* --- MEDIA QUERIES & RESPONSIVE --- */
@media (max-width: 1080px) {
  .container {
    padding: 0 14px;
  }
  .main-nav {
    gap: 16px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 840px) {
  .main-nav {
    gap: 10px;
    padding: 0 10px;
    height: 60px;
  }
  .main-nav a, .footer-nav a {
    font-size: 0.98rem;
    padding: 1px 0;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 11px;
  }
  .footer-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
  .card-container, .features-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
    gap: 14px;
  }
  .hero {
    padding: 32px 0 22px 0;
    clip-path: unset;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .steps-list li:before {
    top: 4px;
    width: 12px; height: 12px;
    border-radius: 3px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    padding: 13px 7px;
  }
  .testimonial-card p {
    font-size: 1rem;
  }
  .pricing-table th, .pricing-table td, .bike-comparison th, .bike-comparison td {
    padding: 6px 4px;
    font-size: 1rem;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 14px 11px;
    border-radius: 14px 14px 0 0;
    font-size: 0.97rem;
    text-align: center;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  .hero h1 { font-size: 1.3rem; }
  .section, .card {
    padding: 11px 1.5vw;
    border-radius: 10px 14px 10px 16px;
  }
  .testimonial-card {
    border-radius: 9px 15px 8px 14px;
  }
  .cookie-modal {
    padding: 22px 8px 20px 8px;
    min-width: 0;
  }
}

/* --- TRANSITIONS AND MICRO-INTERACTIONS --- */
a, .cta-primary, .main-nav a, .footer-nav a, .cookie-btn {
  transition: color 0.20s, background 0.18s, border 0.13s, transform 0.13s, box-shadow 0.17s;
}
.card, .testimonial-card, .features-list li {
  transition: box-shadow 0.22s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .features-list li:hover {
  box-shadow: 0 6px 28px rgba(35,78,112,0.18);
  transform: translateY(-2px) scale(1.025);
}

/* --- MISC UTILITIES --- */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #e0e7f5;
  border-radius: 10px;
}

/* Accessible focus ring */
:focus-visible {
  outline: 2.5px solid #9AD131 !important;
  outline-offset: 2.5px;
}

/* Hide visually but keep accessible (for ARIA live regions, etc) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Font imports (for best practice, put these in HTML <head>, but fallback here) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:700,600,500,400&family=Roboto:400,500,700&display=swap');
