/* --- CSS RESET & NORMALIZE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #13334F;
  background: #F5F7FA;
  line-height: 1.65;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #225B7C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F2C230;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #225B7C;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 1.2em;
}
strong {
  color: #225B7C;
}
.em {
  font-style: italic;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* --- BUTTONS & LINKS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2.2em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.12rem;
  background: #F2C230;
  color: #18496A;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(34,91,124,0.08);
  transition: background 0.2s, color 0.2s, transform 0.17s;
  margin: 10px 0;
  text-shadow: 0 1px 0 #fff6;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #225B7C;
  color: #F2C230;
  transform: translateY(-2px) scale(1.04);
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* --- HEADER --- */
header {
  background: #225B7C;
  box-shadow: 0 2px 16px 0 rgba(34,91,124,0.09);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
header nav a {
  color: #F2C230;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1.03rem;
  transition: color 0.22s, text-shadow 0.15s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #F2C230;
  border-radius: 2px;
  transition: width 0.22s;
  margin-top: 2px;
}
header nav a:hover:after,
header nav a:focus:after {
  width: 100%;
}
header nav a:hover {
  color: #fff;
  text-shadow: 0 1px 8px #f2c23044;
}
header a img {
  width: 115px;
  min-width: 60px;
  height: auto;
}
header .btn-primary {
  margin-left: 10px;
  min-width: 150px;
  padding: 0.66em 1.6em;
}

/* --- MOBILE MENU BURGER --- */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: #F2C230;
  color: #18496A;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 520;
  box-shadow: 0 2px 12px #18496a22;
  margin-left: 8px;
  border: 2px solid #18496A;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #225B7C;
  color: #F2C230;
  border-color: #F2C230;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,91,124,0.97);
  box-shadow: -2px 0 32px 0 #11355444;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.42,0,0.58,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0 0;
  font-size: 2.5rem;
  color: #F2C230;
  background: none;
  transition: color 0.15s;
  z-index: 10002;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 0 0 0;
  flex: 1 1 auto;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px #18496a44, 0 0 1px #f2c230;
  padding: 14px 36px;
  border-radius: 28px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2C230;
  color: #18496A;
  text-shadow: none;
}

/* --- MAIN LAYOUT --- */
main {
  flex: 1 1 0;
}
.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

/* --- SECTIONS & SPACING PATTERNS --- */
section {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 32px 0 #225b7c0b;
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: box-shadow 0.18s;
}
section:focus-within,
section:hover {
  box-shadow: 0 10px 48px 0 #225b7c1e;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 18px #18496a10;
  transition: box-shadow 0.16s, transform 0.13s;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 22px 22px;
  min-width: 260px;
  flex: 1 1 300px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 30px #225b7c22;
  transform: scale(1.025);
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F5F7FA;
  border-radius: 20px;
  border-left: 6px solid #F2C230;
  box-shadow: 0 2px 14px #225b7c0c;
  color: #13334F;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #13334F;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #225B7C;
  margin-top: -8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
}

/* --- FAQ & GUIDES --- */
.faq-list {
  margin: 22px 0 22px 0;
}
.faq-list dt {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #225B7C;
  margin-top: 18px;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 18px;
  color: #18496A;
}
.guides-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: disc;
  margin-left: 20px;
}

/* --- TABLES --- */
.comparison-table, .profit-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  margin-top: 12px;
  box-shadow: 0 3px 22px #225b7c12;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}
.comparison-table th, .profit-table th {
  background: #225B7C;
  color: #F2C230;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 18px 8px;
  text-align: left;
}
.comparison-table td, .profit-table td {
  padding: 15px 7px;
  color: #13334F;
  font-size: 1.01rem;
  vertical-align: middle;
}
.comparison-table tr:nth-child(2n),
.profit-table tr:nth-child(2n) {
  background: #F5F7FA;
}
.comparison-table tbody tr:hover,
.profit-table tbody tr:hover {
  background: #F2C230;
  color: #18496A;
  box-shadow: 0 2px 10px #225b7c19;
}
.comparison-table td:last-child,
.profit-table td:last-child {
  font-weight: 500;
}

/* --- EQUIPMENT SECTION SPECIAL --- */
.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.equipment-grid > div {
  background: #F5F7FA;
  border-radius: 18px;
  box-shadow: 0 1px 10px #225b7c10;
  padding: 22px 16px 18px 16px;
  flex: 1 1 190px;
  min-width: 150px;
  transition: box-shadow 0.17s, transform 0.14s;
  border: 2.5px solid #F2C230;
}
.equipment-grid > div:hover {
  box-shadow: 0 8px 26px #225b7c18;
  transform: translateY(-3px) scale(1.035);
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 10px 0;
  align-items: flex-start;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #18496A;
  min-width: 195px;
}
.contact-details a {
  color: #225B7C;
  word-break: break-all;
  transition: color 0.17s;
}
.contact-details a:hover,
.contact-details a:focus {
  color: #F2C230;
}

/* --- ADDRESS --- */
address {
  font-style: normal;
  color: #18496A;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 10px;
  display: inline-block;
}

/* --- FOOTER --- */
footer {
  background: #18496A;
  color: #fff;
  padding: 30px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: #F2C230;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
footer nav a:hover {
  color: #fff;
}
footer p {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  margin-top: 2px;
  text-align: center;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 28px;
  background: #fff;
  box-shadow: 0 8px 40px #225b7c38;
  border: 2.5px solid #F2C230;
  border-radius: 20px;
  padding: 26px 18px 18px 18px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
  gap: 14px;
  animation: cookie-banner-in 0.33s cubic-bezier(0.43,0,0.58,1) 1;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: #18496A;
  margin-bottom: 0.4em;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 0.55em 1.7em;
  border-radius: 24px;
  border: none;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-btn.accept {
  background: #225B7C;
  color: #F2C230;
  box-shadow: 0 2px 8px #225b7c33;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #18496A;
  color: #F2C230;
}
.cookie-btn.reject {
  background: #fff;
  color: #225B7C;
  border: 1.5px solid #225B7C;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #F2C230;
  color: #18496A;
}
.cookie-btn.settings {
  background: #F2C230;
  color: #18496A;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #225B7C;
  color: #F2C230;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,91,124,0.57);
  z-index: 100020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.28s cubic-bezier(0.42,0,0.58,1) 1;
}
@keyframes cookie-modal-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 60px #225b7c3a;
  padding: 32px 22px 24px 22px;
  max-width: 420px;
  width: 92%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-title {
  font-size: 1.32rem;
  color: #225B7C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 2rem;
  color: #225B7C;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #F2C230;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-toggle {
  min-width: 42px;
  height: 24px;
  border-radius: 18px;
  background: #F5F7FA;
  box-shadow: 0 1px 4px #225b7c15;
  border: 2px solid #F2C230;
  position: relative;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s;
  margin-left: auto;
  appearance: none;
}
.cookie-toggle:checked {
  background: #F2C230;
  border-color: #225B7C;
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #225B7C;
  border-radius: 50%;
  transition: left 0.15s, background 0.15s;
}
.cookie-toggle:checked:after {
  background: #18496A;
  left: 20px;
}
.cookie-category-label {
  color: #18496A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
}
.cookie-category-desc {
  color: #13334F;
  font-size: 0.98rem;
  margin-left: 5px;
}
.cookie-category.essential .cookie-category-label {
  color: #225B7C;
  font-weight: bold;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .equipment-grid > div, .testimonial-card, .btn-primary, .cookie-btn, .comparison-table tr, .profit-table tr {
  transition: box-shadow 0.16s, transform 0.14s, background 0.15s, color 0.13s;
}

/* --- VIBRANT/ENERGETIC EXTRAS --- */
h1, h2, h3 {
  text-shadow: 0 2px 8px #f2c23031, 0 1px 1px #fff6;
}

section, .card, .equipment-grid > div, .testimonial-card {
  border: 3px solid #F2C230;
}

section:focus-within, section:hover,
.card:focus-within, .card:hover,
.equipment-grid > div:hover {
  box-shadow: 0 12px 56px #225b7c2c, 0 0px 1px #f2c23044;
  border-color: #225B7C;
}

.btn-primary {
  background: #F2C230;
  color: #18496A;
  border: 2.5px solid #225B7C;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #225B7C;
  color: #F2C230;
  border-color: #F2C230;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .content-grid, .equipment-grid, .card-container, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  header nav {
    gap: 13px;
  }
  section {
    padding: 29px 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 9px;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    padding: 0.68em 1.1em;
    font-size: 1rem;
    min-width: 120px;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .equipment-grid {
    gap: 14px;
  }
  .testimonial-card {
    padding: 16px;
  }
  .cookie-consent-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    max-width: 100vw;
    padding: 18px 7px 12px 10px;
  }
  .cookie-modal-content {
    padding: 20px 9px 16px 9px;
  }
  .contact-details {
    gap: 10px;
    min-width: 110px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .content-wrapper, section {
    padding: 10px 3vw !important;
    border-radius: 14px;
  }
  .comparison-table th, .profit-table th, .comparison-table td, .profit-table td {
    font-size: 0.92rem;
    padding: 7px 2px;
  }
  .cookie-consent-banner {
    max-width: 99vw;
    padding: 11px 3vw 6px 5vw;
  }
}

/* --- UTILITIES & STATES --- */
::-webkit-input-placeholder { color: #21577Bcc; }
::-moz-placeholder { color: #21577Bcc; }
:-ms-input-placeholder { color: #21577Bcc; }
::placeholder { color: #21577Bcc; }

[tabindex]:focus, a:focus, button:focus {
  outline: 2.5px dashed #F2C230;
  outline-offset: 2.5px;
  background: #fffbe8;
}

/* Prevent accidental overlaps, allow breathing room globally */
section, .card, .equipment-grid > div, .card-container > *, .testimonial-card {
  margin-bottom: 24px;
}

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