/* CSS 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 {
  scroll-behavior: smooth;
}
body {
  background: #F9FAFE;
  color: #233445;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
  border-radius: 10px;
}
a {
  color: #174A68;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #00A98F;
}
ul, ol {
  padding-left: 1.4em;
  margin-top: 8px;
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(60,120,165,0.07);
}
th, td {
  padding: 14px 12px;
  text-align: left;
  font-size: 16px;
}
th {
  background: #E1F5F8;
  font-family: 'Roboto Slab', serif;
  color: #174A68;
  font-weight: 700;
  border-bottom: 2px solid #C9E8F1;
}
td {
  border-bottom: 1px solid #F2F2F7;
}

hr {
  border: none;
  border-top: 1px solid #D7E2F4;
  margin: 32px 0;
}

::-webkit-input-placeholder { color:#7FA4B5; opacity:.7; }
::-moz-placeholder { color:#7FA4B5; opacity:.7; }
:-ms-input-placeholder { color:#7FA4B5; opacity:.7; }
::placeholder { color:#7FA4B5; opacity:.7; }

/* FONT FACES (only if available in the project) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #174A68;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p, li {
  font-size: 16px;
  color: #345060;
}

strong {
  color: #174A68;
}

/* BRAND COLORS - PASTEL VARIATIONS */
:root {
  --primary: #174A68;
  --secondary: #00A98F;
  --accent: #F5F7FB;
  --pastel-blue: #D9F0FF;
  --pastel-green: #C2F4EC;
  --pastel-lilac: #E3E9FF;
  --pastel-yellow: #FFF8D1;
  --pastel-pink: #FFE5F0;
  --pastel-peach: #FFF3EB;
  --gray-dark: #233445;
  --gray-light: #F9FAFE;
  --footer-bg: #F3F8FB;
  --shadow: 0 2px 16px rgba(23,74,104,0.08);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(120deg, var(--pastel-blue), var(--pastel-pink) 90%);
  padding: 64px 0 40px 0;
  margin-bottom: 48px;
}
.hero h1, .hero p {
  color: var(--primary);
}
.hero .cta-primary {
  margin-top: 16px;
}

.features {
  background: linear-gradient(90deg, var(--pastel-green), var(--pastel-peach));
  margin-bottom: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  list-style: none;
  margin: 0;
  justify-content: flex-start;
}
.features li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,120,80,.08);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 0 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-size: 16px;
  transition: transform 0.20s, box-shadow 0.20s;
}
.features li:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,169,143,0.12), var(--shadow);
}
.features img {
  width: 52px;
  margin-bottom: 8px;
}

.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.services li {
  background: var(--pastel-peach);
  border-radius: 13px;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 0 250px;
  box-shadow: 0 2px 12px rgba(20,74,104,.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.services li:hover {
  box-shadow: 0 8px 28px rgba(222,84,129, 0.09);
}

.cta {
  margin-bottom: 60px;
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(98deg, var(--pastel-blue) 60%, var(--pastel-pink));
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cta h2 {
  margin-bottom: 18px;
}

/* -- FLEX LAYOUTS -- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 230px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(31,84,154,0.12);
  transform: translateY(-3px) scale(1.01);
}

.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;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-blue);
  border-radius: 15px;
  box-shadow: 0 1px 5px rgba(23,74,104,0.07);
  margin-bottom: 20px;
  flex-direction: column;
  font-size: 16px;
}
.testimonial-card blockquote {
  color: #174A68;
  font-style: italic;
  font-size: 1.1em;
  quotes: "\201C" "\201D";
  margin-bottom: 8px;
}
.testimonial-card blockquote:before { content: open-quote; color: #00A98F; font-size:1.8em; line-height:0; }
.testimonial-card blockquote:after { content: close-quote; color: #00A98F; font-size:1.8em; line-height:0; }
.testimonial-card p {
  color: #233445;
  font-weight: 600;
  margin: 0;
  font-size: 1em;
}

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

.text-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(60,120,165,0.07);
  padding: 24px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-list .text-section {
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .features ul, .services ul {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 10px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 1px 9px rgba(14,42,66,.05);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  display: block;
  height: 40px;
}

/* Main nav */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #2B4A63;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.20s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: var(--secondary);
}

.cta-primary {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 17px;
  border: none;
  border-radius: 8px;
  padding: 13px 34px;
  margin-left: 16px;
  margin-right: 8px;
  box-shadow: 0 2px 12px rgba(0,169,143,0.10);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #21d6ba;
  color: #fff;
  box-shadow: 0 2px 18px rgba(0,169,143,0.18);
  transform: scale(1.035) translateY(-1px);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  background: var(--pastel-lilac);
  color: #174A68;
  font-size: 2.1rem;
  border: none;
  border-radius: 7px;
  width: 47px;
  height: 47px;
  margin-left: 18px;
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.17s, color 0.17s;
  z-index: 999;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(140deg, #FFFFFF 60%, var(--pastel-pink));
  box-shadow: 0 2px 32px rgba(39,76,120,0.13);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.52,0,.07,1.01);
  z-index: 1300;
  padding: 32px 20px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--pastel-blue);
  border: none;
  color: #174A68;
  font-size: 1.7rem;
  border-radius: 8px;
  padding: 8px 16px;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #174A68;
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  background: var(--pastel-peach);
  padding: 14px 18px;
  border-radius: 9px;
  margin-right: 10vw;
  transition: background 0.20s, color 0.20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 991px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .container {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--footer-bg);
  padding: 40px 0 27px 0;
  box-shadow: 0 -1px 13px rgba(23,74,104,0.07);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
}
.footer-branding img {
  height: 34px;
  margin-bottom: 5px;
}
.footer-branding p {
  margin: 0;
  color: #5A6D8B;
  font-size: 15px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1 1 200px;
  min-width: 120px;
}
.footer-menu a {
  color: #1976ad;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  border-radius: 5px;
  padding: 2px 6px;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--pastel-blue);
  color: #00A98F;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #345060;
  font-size: 15px;
  flex: 1 1 220px;
  min-width: 150px;
}
.footer-contact img {
  width: 17px;
  vertical-align: text-bottom;
  margin-right: 4px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* --- FORMS (if needed in future) --- */
input, textarea, select, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  border-radius: 7px;
  padding: 11px 14px;
  border: 1px solid #C5E8EE;
  margin-bottom: 12px;
  background: #F9FAFE;
  color: #174A68;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}
button {
  background: var(--secondary);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.17s;
}
button:hover, button:focus {
  background: #21d6ba;
  color: #fff;
  transform: scale(1.035);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1400;
  width: 100vw;
  background: linear-gradient(90deg, var(--pastel-peach), var(--pastel-blue));
  color: #174A68;
  box-shadow: 0 -2px 18px rgba(17,74,104,0.13);
  padding: 22px 10vw 22px 20vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 16px;
  border-radius: 18px 18px 0 0;
  animation: cookieBannerIn 0.7s cubic-bezier(.43,0,.49,1.01);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1 1 350px;
  min-width: 120px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 11px 24px;
  font-size: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  box-shadow: 0 2px 7px rgba(0,169,143,.10);
  margin-right: 4px;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept:hover { background: #21d6ba; }
.cookie-btn.reject {
  background: #E3E9FF;
  color: #174A68;
}
.cookie-btn.reject:hover { background: #C2F4EC; color: #174A68; }
.cookie-btn.settings {
  background: var(--pastel-yellow);
  color: #33505D;
}
.cookie-btn.settings:hover { background: #FFF0B6; }
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    padding: 22px 14px 20px 14px;
    gap: 14px;
    font-size: 15px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1550;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(61, 76, 119, 0.40);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.24s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1;}
}
.cookie-modal-content {
  background: linear-gradient(100deg, var(--pastel-lilac) 75%, var(--pastel-peach));
  border-radius: 17px;
  box-shadow: 0 2px 32px rgba(32,84,96,0.16);
  padding: 38px 28px 33px 28px;
  max-width: 380px;
  width: 90vw;
  color: #174A68;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop 0.34s cubic-bezier(.52, 0, .38, 1.09);
}
@keyframes modalPop {
  from { transform: scale(.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  gap: 12px;
}
.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.21em;
}
.cookie-modal-close {
  background: var(--pastel-blue);
  color: #174A68;
  border: none;
  border-radius: 8px;
  font-size: 1.25em;
  padding: 6px 13px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-close:hover {
  background: #00A98F;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(110,174,183,0.07);
}
.cookie-category.essential {
  background: var(--pastel-peach);
  font-weight: 600;
}
.cookie-toggle {
  font-family: inherit;
  width: 38px;
  height: 22px;
  border-radius: 16px;
  background: #CADCED;
  appearance: none;
  outline: none;
  position: relative;
  transition: background 0.20s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  height: 18px; width: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 2px rgba(0,0,0,.05);
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.2s;
}
.cookie-toggle:checked:before {
  left: 18px;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-footer button {
  background: var(--secondary);
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 7px;
  padding: 11px 20px;
  font-size: 1em;
  transition: background 0.18s;
}
.cookie-modal-footer button:hover {
  background: #21d6ba;
}

@media (max-width: 460px) {
  .cookie-modal-content {
    padding: 15px 6vw 18px 6vw;
    font-size: 14.5px;
  }
}

/* --- PAGE UTILS --- */
.section {
  background: #fff;
}
.about, .privacy, .gdpr, .terms, .cookies, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(95deg, var(--pastel-peach) 81%, var(--pastel-lilac) );
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.analysis, .market-insights, .charts, .profits, .insights, .company-comparison, .equipment-list, .values, .team {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* Spacing for <section> and stacked children */
section:not(.hero):not(.cta) + section {
  margin-top: 32px;
}
.content-wrapper > * + * {
  margin-top: 8px;
}

/* List marker pastel bullets */
ul li {
  position: relative;
  padding-left: 1.35em;
  margin-bottom: 3px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 50%;
  background: #C2F4EC;
  position: absolute;
  left: 0;
  top: 0.57em;
}

ol li {
  margin-bottom: 3px;
}

/* Links in text-section */
.text-section a {
  color: #21d6ba;
  font-weight: 600;
  background: var(--pastel-blue);
  padding: 0 4px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.text-section a:hover {
  background: var(--secondary);
  color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.12rem; }
  .hero { padding: 40px 0 25px 0; }
  .container { padding-left: 6px; padding-right: 6px; }
  .footer-menu, .footer-contact, .footer-branding { min-width: unset; }
  .features li, .services li, .card, .testimonial-card { min-width: 0; }
  th, td { font-size: 0.96em; }
}

/* --- MICRO-INTERACTIONS & ANIMATIONS --- */
.card, .testimonial-card, .features li, .services li {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .features li:hover, .services li:hover, .testimonial-card:hover {
  transform: scale(1.022);
  box-shadow: 0 12px 32px rgba(23,74,104,0.12);
}

.cta-primary:active, button:active,
.cookie-btn:active {
  transform: scale(.99);
}

/* ---- ENSURE NO UNINTENDED OVERLAP ---- */
section, .container, .content-wrapper, .card, .card-container,
.features, .services, .testimonial-card, .footer-branding, .footer-contact, .footer-menu {
  box-sizing: border-box;
}

/* END OF CSS */
