/* 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;
}
/* 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;
  background: #1B2127;
  color: #F3F9ED;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #F19220;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #0FF6C7;
}

/* BRAND COLORS */
:root {
  --primary: #225732;
  --primary-dark: #184022;
  --secondary: #F3F9ED;
  --accent: #F19220;
  --accent-neon: #0FF6C7;
  --surface: #22282E;
  --surface-light: #31373C;
  --tech-shadow: 0 2px 18px rgba(14, 255, 200, 0.10), 0 1.5px 25px rgba(34,87,50,0.16);
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  line-height: 1.1;
}
@media (min-width: 900px) {
  h1, .hero h1 { font-size: 3rem; }
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary-dark);
}
p, ul, li, .text-section, .content-wrapper {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #F3F9ED;
  line-height: 1.7;
}
strong {
  color: var(--accent);
  font-weight: 700;
}
small {
  font-size: 0.875rem;
}

/* LAYOUT CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* FLEX GRID SYSTEMS & SPACING */
.card-container, .feature-grid, .content-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.content-grid {
  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;
    align-items: flex-start;
    gap: 20px;
  }
}
.service-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--tech-shadow);
  padding: 26px 20px;
  min-width: 220px;
  flex: 1 1 220px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px var(--accent-neon));
  margin-bottom: 6px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--tech-shadow);
  padding: 30px 18px;
  width: 100%;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.text-section {
  background: var(--surface-light);
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 8px rgba(34, 87, 50, 0.08);
}
/* Testimonials */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #FFF;
  color: #30383C;
  box-shadow: 0 2px 22px rgba(34, 87, 50, 0.10);
  min-width: 220px;
  flex: 1 1 275px;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
  position: relative;
}
.testimonial-card p {
  color: #225732;
  font-size: 1.13rem;
  font-weight: 500;
}
.testimonial-name {
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #1B2127 60%, var(--primary-dark) 100%);
  box-shadow: 0 3px 32px rgba(14,255,200,0.08);
  border-radius: 0 0 28px 28px;
  margin-bottom: 54px;
  padding-top: 46px;
  padding-bottom: 54px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
}
.hero p {
  color: #F3F9ED;
  font-size: 1.13rem;
}
/* CTA BUTTONS */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 32px;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 38px 13px 38px;
  box-shadow: 0 4px 22px rgba(241,146,32,0.12);
  border: none;
  margin-top: 10px;
  margin-bottom: 0px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.17s, transform 0.18s;
  outline: none;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent-neon);
  color: #10181A;
  box-shadow: 0 4px 28px var(--accent-neon), 0 0 3px var(--accent-neon);
  transform: translateY(-1px) scale(1.02);
}
.cta-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
  margin-top: 19px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--surface);
}

/* HEADER/NAVIGATION */
header {
  background: var(--surface);
  box-shadow: 0 2px 16px rgba(34, 87, 50, 0.08);
  position: relative;
  z-index: 25;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img { height: 41px; transition: filter 0.19s; }
.logo:hover img { filter: drop-shadow(0 0 8px var(--accent-neon)); }
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #F3F9ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.17s, border 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent-neon);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  display: none;
  margin-left: 8px;
  z-index: 50;
  line-height: 1;
  padding: 5px 6px 0 6px;
  border-radius: 6px;
  transition: background 0.15s, color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--accent-neon);
  background: rgba(241,146,32,0.08);
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,64,34,0.98);
  z-index: 99;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.68,-0.25,.54,1.25);
  box-shadow: 0 2px 42px rgba(34, 87, 50, 0.36);
  padding: 0 0;
  overflow-y: auto;
  min-width: 280px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 25px 20px 16px 0;
  z-index: 100;
  line-height: 1;
  transition: color 0.18s, background 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent-neon);
  background: rgba(241,146,32,0.12);
  border-radius: 4px;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 34px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #F3F9ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  padding: 12px 0px;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border-bottom 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent-neon);
  border-bottom: 2px solid var(--accent-neon);
}
@media (max-width: 500px) {
  .mobile-nav { padding: 0 18px; gap: 12px; }
  .mobile-menu-close { margin: 25px 9px 8px 0; font-size: 2rem; }
}

/* FOOTER */
footer {
  background: var(--surface);
  padding: 46px 0 27px 0;
  margin-top: 55px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -3px 22px rgba(14,255,200,0.02);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-logo img { height: 44px; }
.footer-contact {
  color: #F3F9ED;
  font-size: 0.97rem;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1.01rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--accent-neon); text-decoration: underline; }

/* RESPONSIVE FOOTER & HEADER */
@media (max-width: 900px) {
  footer .container,
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px;
  }
}

/* CARDS & MICROSURFACES */
.card,
.feature-item,
.testimonial-card,
.text-section {
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover,
.feature-item:hover,
.testimonial-card:hover {
  box-shadow: 0 0 24px var(--accent-neon), 0 5px 30px rgba(34, 87, 50, 0.15);
  transform: translateY(-2px) scale(1.011);
}

/* LIST SPACING */
ul, ol {
  margin-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #E4F6DC;
}
.service-list li {
  font-size: 1.09rem;
  color: #F3F9ED;
  border-left: 3.5px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 9px;
  background: rgba(34,87,50,0.11);
  border-radius: 6px;
  transition: background 0.17s, box-shadow 0.17s;
}
.service-list li span {
  color: var(--accent-neon);
  margin-left: 7px;
  font-weight: 600;
}
.service-list li:hover {
  background: rgba(14,255,200,0.13);
  box-shadow: 0 2px 12px var(--accent-neon);
}

/* CONFIRMATION PAGE */
.confirmation {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
}
.confirmation .content-wrapper {
  align-items: center;
  gap: 26px;
}
.confirmation h1 { color: var(--accent-neon); }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #1B2127 90%, #184022 100%);
  color: #F3F9ED;
  box-shadow: 0 -3px 20px rgba(14,255,200,0.16);
  padding: 18px 20px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 150;
  animation: fadeInBanner 0.68s cubic-bezier(.5,1.7,.7,1) 0s 1;
}
@keyframes fadeInBanner {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 0.97rem;
  color: #F3F9ED;
  margin-right: 16px;
  flex: 2 1 270px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn,
.cookie-settings-btn {
  border: none;
  border-radius: 28px;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  cursor: pointer;
  outline: none;
  transition: background 0.15s, color 0.14s, box-shadow 0.13s, transform 0.13s;
  margin: 0;
}
.cookie-btn {
  background: var(--accent);
  color: #22282E;
  box-shadow: 0 0 6px var(--accent-neon);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--accent-neon);
  color: #083728;
  box-shadow: 0 0 22px var(--accent-neon);
  transform: translateY(-1px) scale(1.03);
}
.cookie-reject-btn {
  background: #31373C;
  color: #FFF;
  border: 2px solid var(--accent);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--accent);
  color: #22282E;
}
.cookie-settings-btn {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-settings-btn:hover {
  background: var(--accent-neon);
  color: #002520;
  border-color: var(--accent-neon);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 10px 15px 10px;
  }
  .cookie-banner-buttons {
    align-items: stretch;
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,64,34,0.86);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: modalFadeInBg 0.23s cubic-bezier(.7,.3,1,1.1);
}
@keyframes modalFadeInBg {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #232730;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 0 22px var(--accent-neon), 0 3px 25px rgba(34, 87, 50, 0.26);
  padding: 36px 33px 28px 33px;
  max-width: 480px;
  width: 98vw;
  margin-bottom: 0;
  animation: modalSlideUp .35s cubic-bezier(.53,1.58,.52,0.98);
  position: relative;
}
@keyframes modalSlideUp {
  from { transform: translateY(130px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.0rem;
  cursor: pointer;
  line-height: 1;
}
.cookie-modal h2 {
  color: var(--accent-neon);
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
}
.cookie-category {
  border-radius: 8px;
  background: #2E343A;
  padding: 10px 13px;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 0.99rem;
  color: #F3F9ED;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  flex: 1 1 80px;
}
.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--accent);
}
/* Essential cookies always on (disabled toggle) */
.cookie-category input[type="checkbox"][disabled] {
  filter: grayscale(1) opacity(0.4);
}
.cookie-category small {
  color: #B9B9B9;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 23px;
}

@media (max-width: 540px) {
  .cookie-modal {
    padding: 21px 4vw 14px 4vw;
    max-width: 99vw;
  }
  .cookie-modal h2 { font-size: 1.04rem; }
}

/* UTILITY */
.gap-top { margin-top: 34px !important; }
.text-center { text-align: center; }

/* RESPONSIVE SECTION PADDING AND GAPS */
@media (max-width: 900px) {
  .section { padding: 30px 8px; margin-bottom: 44px; }
}
@media (max-width: 700px) {
  body { font-size: 15px; }
  h1, .hero h1 { font-size: 1.63rem; }
  h2 { font-size: 1.18rem; margin-bottom: 12px; }
  .section { padding: 17px 2px; }
  .feature-item { min-width: unset; padding: 14px 10px; gap: 10px; }
  .testimonial-card, .card   { padding: 15px 8px; }
}
@media (max-width: 540px) {
  .card-container, .feature-grid, .testimonial-list, .content-grid {
    flex-direction: column !important;
    gap: 14px;
  }
  .section { padding: 7px 1px; margin-bottom: 32px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
@media(hover:hover) and (pointer:fine) {
  .cta-primary, .cta-secondary, .feature-item, .card, .testimonial-card, .service-list li {
    will-change: box-shadow, transform;
  }
}

/* SCROLLBAR STYLING (for webkit browsers) */
::-webkit-scrollbar { width: 12px; background: #232730; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 14px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-neon); }

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--accent-neon);
  outline-offset: 2px;
  border-radius: 4px;
}

/* HIDE SCREEN ELEMENTS (if needed) */
[hidden] { display: none !important; }

/* SPECIAL CASES */
.hero .cta-primary { margin-top: 18px; }
.footer-logo, .logo { user-select: none; -webkit-user-drag: none; pointer-events: all; }

/* BRAND NEON SHADOW EFFECTS */
.neon-accent {
  text-shadow: 0 0 6px var(--accent-neon), 0 0 2px var(--accent-neon);
  color: var(--accent-neon) !important;
}

/* FORM BASICS */
input, textarea, select {
  padding: 10px 13px;
  border: 2px solid var(--primary);
  border-radius: 9px;
  background: #FFF;
  color: #223E29;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--accent-neon);
  outline: none;
}

/* END OF CSS */
