/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F5FAFF;
  color: #181A29;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul,ol {
  padding-left: 1.2em;
  margin-top: 8px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: background 0.15s, color 0.15s;
}

/* BRAND COLORS AS CSS VARS */
:root {
  --primary: #124076;
  --secondary: #E5E7EB;
  --accent: #F59E42;
  --bg: #F5FAFF;
  --energy-electric: #06B6D4;
  --energy-pink: #EC4899;
  --energy-lime: #A3E635;
  --text-dark: #181A29;
  --shadow: 0 2px 10px rgba(18,64,118,0.08),0 1.5px 8px rgba(245,158,66,0.05);
  --radius: 18px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.13;
}
h1 { font-size: 2.75rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.38rem; margin-bottom: 8px; }
h4 { font-size: 1.18rem; margin-bottom:6px; }
p, li, blockquote {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
}
blockquote {
  border-left: 4px solid var(--accent);
  background: #fff9f3;
  padding: 14px 20px;
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-style: italic;
}
strong {
  font-weight: 700;
}

/* GENERAL LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 32px rgba(18,64,118,0.09);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--energy-electric);
  color: #fff;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 22px;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(245,158,66,0.10);
  transition: background 0.18s, transform 0.16s, box-shadow 0.15s;
  border: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 20px rgba(18,64,118,0.19);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: var(--energy-electric);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(6,182,212,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.13s;
  display: none;
}
.mobile-menu-toggle:active {
  background: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(18,64,118,0.21);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.76,0.12,0.32,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 26px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--energy-pink);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 18px;
  transition: background 0.16s;
  border: none;
}
.mobile-menu-close:hover {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 13px;
  padding: 14px 18px;
  margin-bottom: 7px;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(18,64,118,0.07);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--energy-electric);
  box-shadow: 0 6px 18px rgba(245,158,66,0.10);
}

@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 970px) {
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 870px) {
  header .container {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 6vw;
  }
  .section {
    padding: 30px 8vw;
    margin-bottom: 34px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
  .content-wrapper {
    gap: 16px;
  }
}

/* HERO / FEATURE GRIDS / DYNAMIC LAYOUTS */
.features-grid, .company-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  justify-content: flex-start;
}
.features-grid {
  row-gap: 28px;
  column-gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(6,182,212,0.06);
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.17s, transform 0.17s, background 0.17s;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 220px;
  border-left: 6px solid var(--energy-electric);
  position: relative;
}
.feature-item:hover {
  box-shadow: 0 6px 30px rgba(6,182,212,0.18);
  transform: translateY(-3px) scale(1.04);
  background: #fff;
}
.feature-item h3 {
  color: var(--energy-electric);
  margin-bottom: 4px;
  font-weight: 800;
  font-size: 1.17rem;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0px 4px 4px rgba(18,64,118,0.14));
}

@media (max-width: 939px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: unset;
  }
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px rgba(18,64,118,0.11);
  border-left: 5px solid var(--energy-pink);
  transition: box-shadow 0.12s, border-color 0.16s;
  max-width: 660px;
  color: var(--text-dark);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px rgba(236,72,153,0.17);
  border-left: 5px solid var(--accent);
}
.testimonial-card blockquote {
  background: transparent;
  border-left: none;
  font-size: 1rem;
  color: var(--primary);
  padding: 0;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: var(--text-dark);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-left: 10px;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    max-width: 98vw;
    padding: 14px 10px;
  }
}

/* CARDS / CARD-CONTAINER / GENERAL FLEX LAYOUTS */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow 0.12s, transform 0.11s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(245,158,66,0.25);
  transform: translateY(-2px) scale(1.025);
}

/* PROFIT/EQUIPMENT/COMPARISON TABLES (FLEX ONLY) */
.comparison-table,
.equipment-table,
.profit-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 28px 0;
}
.comparison-table > div,
.equipment-table > div,
.profit-table > div {
  display: flex;
  flex-direction: row;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 10px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(18,64,118,0.07);
  margin-bottom: 5px;
  align-items: center;
}
.comparison-table > div strong,
.equipment-table > div strong,
.profit-table > div strong {
  color: var(--energy-electric);
  font-size: 1.12rem;
}
.comparison-table > div:first-child,
.equipment-table > div:first-child,
.profit-table > div:first-child {
  background: var(--energy-electric);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 16px;
}

@media (max-width: 650px) {
  .comparison-table > div,
  .equipment-table > div,
  .profit-table > div {
    flex-direction: column;
    gap: 4px;
    font-size: 0.99rem;
    padding: 9px 6px;
  }
}

/* COMPANY PROFILES / LISTS */
.company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 10px 0;
}
.company-profile {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 26px 18px 18px 18px;
  box-shadow: 0 2px 10px rgba(18,64,118,0.09);
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 200px;
  border-left: 5px solid var(--energy-lime);
  color: var(--primary);
  transition: box-shadow 0.17s, border-color 0.17s;
}
.company-profile:hover {
  border-left: 5px solid var(--energy-pink);
  box-shadow: 0 8px 20px rgba(124,58,237,0.10);
}
.company-profile h3 {
  font-size: 1.11rem;
  margin-bottom: 7px;
}
.company-profile ul {
  margin-block: 0 0.3em;
  color: var(--text-dark);
  font-size: 0.97rem;
}

@media (max-width: 850px) {
  .company-list {
    flex-direction: column;
    gap: 14px;
  }
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  flex: 1 1 270px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(245,158,66,0.09);
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, background 0.15s;
  border-left: 5px solid var(--accent);
}
.faq-item:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(245,158,66,0.18);
}
.faq-item h3 {
  color: var(--accent);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* GENERIC FLEX SPACING CLASSES */
.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; }

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/**** FOOTER ****/
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px 20px;
  justify-content: flex-start;
  padding-bottom: 24px;
}
.footer-logo {
  flex: 0 1 110px;
  margin-bottom: 24px;
}
.footer-logo img {
  height: 45px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  opacity: 0.87;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s, opacity 0.12s;
  border-radius: 6px;
  padding: 3px 7px;
}
.footer-nav a:hover, .footer-legal a:hover
{ color: var(--accent); opacity: 1; }
.footer-cta {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: #f7fafc;
  margin-top: 12px;
  opacity: 0.91;
}
.footer-contact-info img {
  margin-right: 8px;
  vertical-align: middle;
  height: 20px;
}

@media (max-width: 970px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-cta {
    margin-left: 0;
    margin-top: 18px;
  }
}

/**** COOKIE BANNER ****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 4px solid var(--accent);
  box-shadow: 0 -4px 24px rgba(18,64,118,0.13);
  z-index: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  font-size: 1rem;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(0.7,.02,.21,.99);
}
.cookie-banner.hide { transform: translateY(120%); }
.cookie-banner .cookie-text {
  color: var(--text-dark);
  flex: 3;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex: 1 1 auto;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 11px;
  border: none;
  margin-right: 0;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 5px rgba(245,158,66,0.09);
  transition: background 0.16s, color 0.14s, transform 0.13s;
}
.cookie-btn.settings {
  background: var(--energy-pink);
}
.cookie-btn.reject {
  background: var(--primary);
  color: #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--energy-lime);
  color: var(--primary);
  transform: scale(1.048);
}

@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    font-size: 0.97rem;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
}

/**** COOKIE MODAL ****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,64,118,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinOverlay 0.42s;
}
@keyframes fadeinOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 60px rgba(245,158,66,0.18);
  padding: 36px 22px 24px 22px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  animation: fadeinModal 0.33s cubic-bezier(0.7,0.02,0.2,1);
}
@keyframes fadeinModal {
  0% { transform: translateY(70px) scale(0.97); opacity:0; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.19rem;
  margin-bottom: 8px;
  font-weight: 800;
}
.category-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
}
.category-toggle label {
  font-size: 1.07rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.category-toggle input[type=checkbox] {
  appearance: none;
  width: 34px;
  height: 20px;
  background: var(--secondary);
  border-radius: 14px;
  position: relative;
  outline: none;
}
.category-toggle input[type=checkbox]:checked {
  background: var(--energy-electric);
}
.category-toggle input[type=checkbox]::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
  box-shadow: 0 1px 3px rgba(18,64,118,0.08);
}
.category-toggle input[type=checkbox]:checked::before {
  left: 15px;
  background: var(--accent);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 19px;
  right: 22px;
  color: var(--energy-pink);
  background: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: background 0.18s, color 0.14s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .close-modal:hover {
  background: var(--energy-lime);
  color: var(--primary);
}

/**** CTA SECTION ****/
.cta-section,
.section .cta-btn[role="cta"] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 38px 0 0 0;
  width: 100%;
}
.cta-section .cta-btn {
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: 18px;
}

/**** SPECIAL CLASSES ****/
.company-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.company-info img {
  margin-right: 10px;
}

/**** MICRO-INTERACTIONS / TRANSITIONS ****/
.card, .feature-item, .company-profile, .faq-item, .testimonial-card {
  will-change: transform, box-shadow;
}

/* Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-22 { margin-top: 22px !important; }
.gap-10 { gap: 10px !important; }
.gap-20 { gap: 20px !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }

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

/* Scrollbar Styling for vibrant look */
::-webkit-scrollbar {
  width: 10px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--energy-electric);
  border-radius: 8px;
}

/* Vibrant/Energetic decorations */
.section {
  border-left: 10px solid var(--energy-electric);
  border-right: 10px solid var(--accent);
  box-shadow: var(--shadow), 0 1.5px 8px rgba(236,72,153,0.055);
}

@media (max-width: 650px) {
  .section {
    border-left-width: 5px;
    border-right-width: 5px;
    padding: 18px 3vw;
  }
}

/* Consistent Spacing, Avoid Overlap */
.features-grid > *, .company-list > *, .faq-list > *, .card-container > *, .content-grid > * {
  margin-bottom: 20px;
}

/* END OF CSS */
