/* ===========================
   RESET & BASE STYLES
   =========================== */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #181a1b;
  color: #F9F7F2;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: rgba(245,166,35,0.2);
}
a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFEFBA;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  border: 1px solid #234E2B;
  padding: 10px 14px;
  background: #213323;
  color: #F9F7F2;
  text-align: left;
  font-size: 16px;
}
th {
  background: #234E2B;
  font-weight: 700;
}
/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F5A623;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.12;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px #F5A62344;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.subtitle {
  color: #F9F7F2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.93;
}
.text-section p,
.text-section ul,
.text-section ol {
  margin-bottom: 14px;
}
.text-section ul {
  padding-left: 24px;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section {
  color: #F9F7F2;
  font-size: 1.08rem;
}

/* ===========================
   LAYOUT: CONTAINERS & SECTIONS
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
  box-shadow: none;
}

.hero-section {
  background: linear-gradient(87deg, #283B31 70%, #234E2B 100%);
  box-shadow: 0 3px 64px #F5A62317;
  margin-bottom: 60px;
  border-radius: 0 0 48px 48px;
}
.cta-section {
  background: linear-gradient(90deg, #234E2B 80%, #0c1110 100%);
  margin-bottom: 0;
  box-shadow: 0 -4px 40px #F5A62322;
  border-radius: 32px;
}
.success-section {
  margin-top: 32px;
  margin-bottom: 48px;
  background: #223b2a;
  border-radius: 24px;
  box-shadow: 0 8px 48px #234E2B26;
}

/* ===========================
   FLEXBOX SPACING & PATTERNS
   =========================== */
.features-grid, .card-container, .content-grid, .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FAFAFA;
  color: #1a2422;
  border-radius: 18px;
  box-shadow: 0 4px 32px #234E2B15;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 440px;
  flex: 1 1 300px;
  border: 2px solid #234E2B11;
  transition: box-shadow 0.23s cubic-bezier(.48,.23,.45,.81);
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px #F5A62333;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234E2B;
  font-weight: 600;
  font-size: 0.98rem;
  margin-left: auto;
  padding-left: 12px;
}

.feature-card {
  background: #223b2a;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 2px 24px #234E2B24;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 345px;
  flex: 1 1 220px;
  gap: 15px;
  border: 1.5px solid #234E2B28;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.feature-card img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 5px #F5A62366);
}
.feature-card:hover {
  border-color: #F5A62399;
  box-shadow: 0 8px 36px #F5A62333;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #213323;
  border-radius: 14px;
  box-shadow: 0 2px 18px #0002;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  gap: 14px;
}

.footer-brand,
.footer-contact, .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-brand img {
  width: 48px;
  height: 48px;
}
.footer-brand span {
  font-size: 1.13rem;
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-menu {
  flex: 1 1 auto;
  gap: 18px;
}
.footer-menu a {
  color: #F9F7F2;
  opacity: 0.86;
  font-weight: 500;
}
.footer-menu a:hover {
  color: #F5A623;
  opacity: 1;
}
.footer-contact {
  flex: 2 1 auto;
  gap: 18px 34px;
  font-size: 0.99rem;
  color: #F9F7F2;
}
.footer-contact img {
  width: 18px;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.7;
}

footer {
  background: #19241E;
  margin-top: 60px;
  padding: 32px 0 16px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 28px #F5A62313;
}

/* ===========================
   BUTTONS & INTERACTIONS
   =========================== */
.btn-primary, .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #F5A623;
  border: none;
  border-radius: 25px;
  color: #1a2422;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px #F5A62333, 0 2px 9px #234E2B11;
  text-shadow: 0 1px 4px #fff2;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background 0.20s, color 0.19s, box-shadow 0.22s;
}
.btn-primary:hover,
.btn:hover, .btn-primary:focus{
  background: #FFB949;
  color: #234E2B;
  box-shadow: 0 6px 32px #F5A62355, 0 2px 8px #234E2B13;
  outline: none;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  background: #19241E;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 32px #F5A62313, 0 1px 0 #234E2B06;
  padding-top: 2px;
  margin-bottom: 24px;
  position: relative;
  z-index: 22;
}
.logo img {
  height: 50px;
  width: auto;
  transition: filter 0.23s;
}
.logo:hover img {
  filter: drop-shadow(0 0 6px #F5A62366);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
header nav a {
  color: #F9F7F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
  font-size: 1.02rem;
}
header nav a:hover, header nav a:focus {
  background: #234E2B44;
  color: #F5A623;
}
header nav a.btn-primary {
  padding: 8px 20px;
  font-size: 1.07rem;
  font-weight: 700;
  background: #F5A623;
  color: #234E2B;
  border-radius: 18px;
  margin-left: 12px;
  box-shadow: 0 3px 12px #F5A62333;
  transition: background 0.18s, color 0.18s;
}
header nav a.btn-primary:hover, header nav a.btn-primary:focus {
  background: #FFB949;
  color: #19241E;
}

/* Hamburger for mobile */
.mobile-menu-toggle {
  display: none;
  background: #234E2B;
  color: #F5A623;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5A623;
  color: #234E2B;
}

/* ===========================
   MOBILE MENU OVERLAY
   =========================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #19241Eee;
  backdrop-filter: blur(7px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  padding-left: 0;
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(0.77, 0.08, 0.36, 0.91);
  box-shadow: 0 2px 48px #F5A62319,0 0 0 16px #234E2B10;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F5A623;
  color: #234E2B;
  border: none;
  border-radius: 8px;
  font-size: 2.1rem;
  width: 50px;
  height: 48px;
  margin-right: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #234E2B;
  color: #F5A623;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 14px;
  padding-left: 28px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F9F7F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 0;
  font-size: 1.22rem;
  width: 100%;
  border-radius: 8px;
  margin-right: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5A62322;
  color: #F5A623;
}

@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px 8px;
  }
  nav {
    gap: 6px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  .footer-brand, .footer-menu, .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .hero-section {
    border-radius: 0 0 24px 24px;
  }
  .cta-section,
  .section, .success-section {
    border-radius: 15px;
    padding: 32px 8px;
  }
  .content-wrapper, .features-grid, .card-container, .content-grid, .testimonials-list {
    gap: 13px;
  }
  .features-grid, .testimonials-list {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-card, .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  h1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 1.07rem;
    margin-bottom: 7px;
  }
  footer {
    border-radius: 16px 16px 0 0;
    margin-top: 32px;
    padding: 17px 0 14px 0;
  }
}

/* ===========================
   SPACING & ALIGNMENT
   =========================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}

/* ===========================
   COOKIE BANNER STYLES
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 999;
  background: #18281f;
  box-shadow: 0 -4px 32px #234E2B22;
  color: #F9F7F2;
  padding: 24px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 22px 22px 0 0;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.56,0,.81,.38), opacity 0.25s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 1 1 300px;
  font-size: 1rem;
  color: #F9F7F2;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 22px;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .cookie-accept {
  background: #F5A623;
  color: #234E2B;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus{
  background: #FFB949;
}
.cookie-banner .cookie-reject {
  background: #234E2B;
  color: #F5A623;
  border: 1.5px solid #F5A623aa;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #313c3a;
  color: #F9F7F2;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #F5A623;
  border: 1px solid #F5A62355;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus{
  background: #F5A62311;
  color: #F5A623;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 17px 8px 13px 8px;
    font-size: 0.94rem;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: flex-start;
  }
}
/* Cookie modal (settings popup) */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #000a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-dialog {
  background: #223b2a;
  color: #F9F7F2;
  border-radius: 20px;
  box-shadow: 0 8px 48px #234E2B36;
  max-width: 448px;
  width: 96%;
  padding: 32px 16px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: appearCookieModal 0.44s cubic-bezier(.5,.86,.47,1.18);
}
@keyframes appearCookieModal {
  0% { transform: scale(.86) translateY(70px); opacity: 0; }
  60% { transform: scale(1.05) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #F5A623;
  color: #234E2B;
  border: none;
  border-radius: 8px;
  font-size: 1.32rem;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .close-cookie-modal:focus,
.cookie-modal .close-cookie-modal:hover {
  background: #234E2B;
  color: #F5A623;
}
.cookie-modal h2 {
  color: #F5A623;
  margin-bottom: 7px;
  font-size: 1.2rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.cookie-category label, .cookie-category span{
  font-size: 1rem;
  color: #F9F7F2;
}
.cookie-category .toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #516956;
  position: relative;
  outline: none;
  vertical-align: middle;
  transition: background 0.15s;
}
.cookie-category .toggle:checked {
  background: #F5A623;
}
.cookie-category .toggle:before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.15s, background 0.15s;
}
.cookie-category .toggle:checked:before {
  left: 17px;
  background: #234E2B;
}
.cookie-category .locked {
  opacity: 0.65;
  pointer-events: none;
}
.cookie-modal .cookie-confirm {
  width: 100%;
  margin-top: 18px;
  background: #F5A623;
  color: #234E2B;
  padding: 10px 0;
  border-radius: 20px;
  border: none;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 8px #F5A62322;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal .cookie-confirm:hover {
  background: #FFB949;
}

/* ===========================
   ANIMATIONS
   =========================== */
.btn-primary, .btn, .feature-card, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .22s, background .20s, color .18s, border .18s;
}
.card, .feature-card, .testimonial-card {
  transition: box-shadow .19s, border-color 0.19s;
}
section, .section, .cta-section, .hero-section {
  transition: box-shadow .28s;
}

/* ===========================
   VISUAL NEON ACCENTS
   =========================== */
.btn-primary, header nav a.btn-primary, .mobile-menu-close, .mobile-menu-toggle {
  box-shadow:
    0 0 10px #F5A62366,
    0 2px 8px #234E2B33;
}
.feature-card img, .card img {
  filter: drop-shadow(0 0 8px #F5A6235e);
}
.hero-section h1, .cta-section h2, .feature-card h3 {
  text-shadow: 0 2px 32px #F5A62360;
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 10px;
  background: #223b2a;
}
::-webkit-scrollbar-thumb {
  background: #F5A623aa;
  border-radius: 6px;
}

/* ===========================
   MISCELLANEOUS
   =========================== */
hr {
  border: none;
  border-top: 1.5px solid #234E2B44;
  margin: 26px 0 16px 0;
}
blockquote {
  border-left: 4px solid #F5A623;
  background: #222823;
  color: #F9F7F2;
  padding: 18px 17px 12px 22px;
  border-radius: 10px;
  margin: 22px 0;
  font-style: italic;
}

/* ===========================
   FOCUS STATES
   =========================== */
:focus-visible {
  outline: 2.5px solid #F5A623;
  outline-offset: 2px;
}

/* Force no grid/columns anywhere */
[class*='card-grid'],
[class*='grid'],
[class*='columns'],
[class*=column],
[class*=grid-] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
}

/* ===========================
   OVERLAPPING PREVENTION & SPACING
   =========================== */
.section, .card, .feature-card, .testimonial-card, .container, .footer-brand, .footer-menu, .footer-contact {
  margin-bottom: 20px;
}
.features-grid > *,
.card-container > *,
.content-grid > *,
.testimonials-list > * {
  margin-bottom: 0 !important;
}

/* ===========================
   END OF CSS
   =========================== */
