/* ========================================================================
   CSS RESET & BASE STYLES (Normalize & Reset for Industrial Modern Aesthetic)
   ======================================================================== */
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.6;
  background: #1C232A;
  color: #F4F7F9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #7ABF62;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #F4F7F9;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

/* ===============================
   BRAND FONTS (Montserrat + Roboto)
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F4F7F9;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p {
  margin-bottom: 16px;
  color: #CDD4DB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.0625rem;
}
strong, b {
  color: #F4F7F9;
  font-weight: 700;
}

/* =========================
   UTILITY CLASSES
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* CRITICAL SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section:last-child {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232C34;
  box-shadow: 0 4px 16px rgba(36,67,92,0.13);
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #334756;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(122,191,98,0.10), 0 2px 8px #24435C33;
  transform: translateY(-4px) 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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F4F7F9;
  color: #23323D;
  border-radius: 7px;
  box-shadow: 0 2px 12px rgba(36,67,92,0.09);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 4px solid #7ABF62;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #232C34;
  font-size: 1.05rem;
}
.testimonial-card span {
  color: #24435C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}
.testimonials .testimonial-card,
.reviews .testimonial-card,
.why-us .testimonial-card {
  background: #F4F7F9;
  color: #23323D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #232C34;
  border-radius: 10px;
  border: 1.5px solid #334756;
  box-shadow: 0 2px 8px rgba(36,67,92,0.11);
  padding: 22px 20px;
  min-width: 200px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 8px 20px rgba(122,191,98,0.14);
  transform: translateY(-3px) scale(1.025);
}
.feature-item img {
  width: 42px;
  height: 42px;
  filter: brightness(0.97) contrast(1.18);
  margin-bottom: 3px;
}
.feature-item h3 {
  margin: 0 0 6px 0;
  font-size: 1.13rem;
  color: #7ABF62;
}
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #7ABF62;
}

/* ===============================
   NAVIGATION HEADER
   =============================== */
header {
  background: #16202B;
  border-bottom: 1.5px solid #334756;
  width: 100%;
  z-index: 20;
  box-shadow: 0 2px 10px #13182444;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 32px;
}
.logo img {
  width: 155px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #F4F7F9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #232C34;
  color: #7ABF62;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 7px;
  border: none;
  box-shadow: 0 2px 12px rgba(36,67,92,0.12);
  cursor: pointer;
  text-align: center;
  color: #24435C;
  background: #7ABF62;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  margin-left: 20px;
  margin-bottom: 0;
}
.cta-button.primary {
  background: #24435C;
  color: #F4F7F9;
  box-shadow: 0 2px 16px #24435C2d;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #7ABF62;
  color: #23323D;
  transform: scale(1.045);
}
.cta-button:not(.primary):hover, .cta-button:not(.primary):focus {
  background: #24435C;
  color: #F4F7F9;
  transform: scale(1.040);
}

/* ===============================
   MOBILE MENU
   =============================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #7ABF62;
  margin-left: 25px;
  cursor: pointer;
  z-index: 999;
  transition: color 0.2s;
  position: relative;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #7ABF62;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #232C34;
  position: fixed;
  top: 0;
  right: 0;
  width: 83vw;
  max-width: 350px;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.66,.04,.44,1.06);
  z-index: 2000;
  padding-top: 28px;
  box-shadow: -7px 0 24px #171a1e77;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #7ABF62;
  font-size: 1.9rem;
  padding: 8px 22px 8px 4px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:focus {
  outline: 2px solid #7ABF62;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  padding: 12px 0;
  width: 100%;
  color: #F4F7F9;
  border-bottom: 1px solid #283139;
  transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #7ABF62;
  background: none;
}

/* Hide desktop .main-nav & button on mobile, Show .mobile-menu-toggle */
@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay when mobile menu is open */
.mobile-menu::before {
  content: '';
  display: none;
}
.mobile-menu.open::before {
  display: block;
}

/* ===============================
   HERO SECTION & GENERAL SECTIONS
   =============================== */
.hero {
  background: linear-gradient(90deg, #1C232A 65%, #232C34 100%);
  padding: 64px 0 54px 0;
  margin-bottom: 60px;
  display: flex;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.8rem;
  color: #7ABF62;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.26rem;
  color: #CDD4DB;
  margin-bottom: 26px;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.callout {
  background: #232C34;
  border-radius: 16px;
  border: 1.5px solid #334756;
  box-shadow: 0 2px 14px #24435C22;
  margin-bottom: 60px;
}
.callout p {
  font-size: 1.17rem;
  color: #7ABF62;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.company-profile {
  background: #232C34;
  border-radius: 9px;
  border: 1.5px solid #334756;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px #20282f1a;
}
.company-profile h3 {
  color: #7ABF62;
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.info-block, .guide {
  background: #232C34;
  border-radius: 9px;
  border: 1.5px solid #334756;
  padding: 16px 20px;
  margin-bottom: 22px;
  color: #F4F7F9;
  box-shadow: 0 3px 11px #13182426;
}
.guide h3, .info-block h3 {
  color: #7ABF62;
  font-size: 1.09rem;
}

/* ===============================
   TABLES
   =============================== */
table {
  width: 100%;
  border-collapse: collapse;
  color: #F4F7F9;
  background: #232C34;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px #16202b21;
}
thead {
  background: #24435C;
  color: #F4F7F9;
}
th, td {
  font-family: 'Roboto', Arial, sans-serif;
  text-align: left;
  padding: 15px 12px;
  font-size: 1rem;
  border-bottom: 1px solid #334756;
}
th {
  font-weight: 700;
  letter-spacing: 0.01em;
  border-bottom: 2.5px solid #7ABF62;
}
tr:last-child td {
  border-bottom: none;
}
tr:nth-child(even) td {
  background: #20262d;
}
table a {
  color: #7ABF62;
  text-decoration: underline;
}
table a:hover {
  color: #F4F7F9;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  width: 100%;
  background: #16202B;
  color: #CDD4DB;
  padding: 32px 0 20px 0;
  border-top: 1.5px solid #334756;
  margin-top: 48px;
}
footer .container {
  gap: 28px;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.99rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 15px;
}
.footer-nav a {
  color: #7ABF62;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.footer-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #7ABF62;
  transition: width 0.22s;
}
.footer-nav a:hover:after,
.footer-nav a:focus:after {
  width: 100%;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #CDD4DB;
  font-size: 0.99rem;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  filter: grayscale(100%) brightness(1.25) opacity(0.9);
  margin-bottom: -2px;
}
.footer-contact a {
  color: #7ABF62;
}
.footer-copy {
  color: #334756;
  font-size: 0.97rem;
}

/* ===============================
   LEGAL TEXT SECTIONS
   =============================== */
.legal-text {
  background: #232C34;
  border-radius: 12px;
  border: 1.5px solid #334756;
  box-shadow: 0 1px 6px #20282f17;
  padding: 36px 23px;
  margin-bottom: 60px;
  color: #CDD4DB;
}
.legal-text h1, .legal-text h2, .legal-text h3 {
  color: #7ABF62;
}
.legal-text ul, .legal-text ol {
  color: #CDD4DB;
}

/* ===============================
   COOKIES CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #232C34;
  color: #CDD4DB;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 16px #00000029;
  padding: 18px 24px;
  gap: 20px;
  border-top: 3px solid #7ABF62;
  font-size: 1.04rem;
  animation: cookieBannerIn 0.7s cubic-bezier(.42,0,.69,1.27);
}
@keyframes cookieBannerIn {
  from { transform: translateY(80px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-banner button, .cookie-banner .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 19px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.16s, color 0.16s, transform 0.16s;
}
.cookie-banner .accept {
  background: #7ABF62;
  color: #24435C;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #54A245;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: #16202B;
  color: #CD1C27;
  border: 1.3px solid #CD1C27;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #1C232A;
  color: #F4F7F9;
}
.cookie-banner .cookie-settings {
  background: #24435C;
  color: #F4F7F9;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #334756;
  color: #7ABF62;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10001;
  background: #232C34;
  color: #F4F7F9;
  width: 97vw;
  max-width: 440px;
  border-radius: 18px;
  transform: translate(-50%, -60%) scale(0.98);
  box-shadow: 0 10px 40px #00000061;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.35s cubic-bezier(.42,0,.69,1.37);
}
@keyframes cookieModalIn {
  from { transform: translate(-50%, -40%) scale(0.90); opacity: 0; }
  to   { transform: translate(-50%, -60%) scale(0.98); opacity: 1; }
}
.cookie-modal h2 {
  color: #7ABF62;
  margin-bottom: 4px;
}
.cookie-modal ul {
  margin: 13px 0 0 23px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 13px;
}
.cookie-modal .cookie-cat label {
  font-weight: 600;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: #334756;
  border-radius: 24px;
  transition: background .14s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #7ABF62;
}
.cookie-modal .toggle-slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px; top: 3px;
  background: #F4F7F9;
  border-radius: 50%;
  transition: transform .12s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
/* Modal backdrop */
.cookie-modal-backdrop {
  position: fixed; left: 0; top: 0; z-index: 10000;
  width: 100vw; height: 100vh;
  background: #000B 0.5; /* black, 50% */
  animation: cookieModalBackdropIn 0.32s cubic-bezier(.52,.14,.82,1.16);
}
@keyframes cookieModalBackdropIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ===============================
   RESPONSIVE DESIGN (MOBILE FIRST)
   =============================== */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .footer-contact {
    line-height: 1.6;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .hero, section, .callout, .legal-text {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 38px;
  }
  footer {
    padding: 18px 0 16px 0;
  }
  .container {
    padding: 0 7px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .feature-grid, .card-container, .content-grid, .quick-facts {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 22px;
    margin-bottom: 32px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    max-width: 95vw;
  }
  .section, .callout, .legal-text, section {
    padding-left: 4px;
    padding-right: 4px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 12px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .quick-facts {
    gap: 12px;
    flex-direction: column;
  }
  .testimonials .testimonial-card,
  .reviews .testimonial-card, .why-us .testimonial-card {
    padding: 17px 11px;
    font-size: 1rem;
  }
  .card-container, .content-grid {
    gap: 10px;
    flex-direction: column;
  }
  .testimonial-card {
    padding: 15px 9px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  .hero h1 { font-size: 1.3rem; }
  .logo img { width: 120px; }
}
@media (max-width: 600px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .feature-item {
    min-width: unset;
    width: 100%;
  }
  table th, table td {
    padding: 10px 5px;
    font-size: 0.93rem;
  }
  .callout { border-radius: 7px; }
  .company-profile, .info-block, .guide { border-radius: 7px; padding: 11px 8px; }
  .testimonial-card { border-radius: 6px; font-size: 0.98rem; }
  .section, section { border-radius: 0; }
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 7px;
  }
  .cookie-modal {
    padding: 15px 4vw 13px 4vw;
  }
  .footer-copy { font-size: 0.90rem; }
}

/* ===============================
   MICRO-INTERACTIONS, SHADOWS & EFFECTS
   =============================== */
.feature-item, .card, .company-profile, .info-block, .guide {
  transition: box-shadow 0.19s, transform 0.19s;
}
.feature-item:hover, .feature-item:focus, .card:hover, .card:focus, .company-profile:hover, .company-profile:focus {
  box-shadow: 0 9px 20px #7ABF6211, 0 2px 7px #7ABF6211;
  transform: translateY(-3px) scale(1.017);
}
.cta-button:active {
  transform: scale(0.97);
}
.main-nav a.active, .footer-nav a.active, .mobile-nav a.active {
  color: #7ABF62;
  border-bottom: 2.2px solid #7ABF62;
  background: transparent;
}

/* ===========
   MISCELLANEOUS
   =========== */
::-webkit-scrollbar {
  width: 9px;
  background: #232C34;
}
::-webkit-scrollbar-thumb {
  background: #334756;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7ABF62;
}
::selection {
  background: #7ABF6244;
}

/* Hide outline for mouse, show for keyboard navigation */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #7ABF62;
  outline-offset: 1.5px;
}

/* END */
