/* ==== 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,main,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 { min-height: 100vh; background: #181A1A; }
img { max-width: 100%; height: auto; border-style: none; }
ul,ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.18s; }
button { background: none; border: none; outline: none; cursor: pointer; font: inherit; }


/* ==== BRAND INPUTS + TECH FUTURISTIC || COLOR PALETTE ==== */
:root {
  --primary: #1A3D2A; /* Brand primary */
  --primary-dark: #132C1E;
  --secondary: #E9E5C5; /* softened for dark/tech feel */
  --accent: #4AA368; /* neonish accent */
  --accent-neon: #60e889;
  --surface-darker: #1A2330;
  --surface: #232A38;
  --gradient-1: linear-gradient(90deg, #203e37 0%, #2a493e 100%);
  --gradient-2: linear-gradient(90deg, #1a3d2a 0%, #265947 100%);
  --gradient-accent: linear-gradient(90deg, #34c471 0%, #05efd1 100%);
  --text-primary: #F7FFF0;
  --text-secondary: #aee2c9;
  --shadow-1: 0 4px 16px rgba(76,255,120,0.10), 0 0px 1px rgba(0,0,0,0.20);
  --shadow-2: 0 2px 8px 0 #26594733, 0 1.5px 10px #0003;
  --font-display: 'Merriweather',serif;
  --font-body: 'Lato',Arial,sans-serif;
  --radius-xl: 20px;
  --radius-lg: 15px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: 0.2s cubic-bezier(.56,0,.3,1.04);
}


/* ==== BASE TYPOGRAPHY ==== */
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--gradient-1);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 1rem;
  min-height: 100vh;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--accent-neon);
  margin-bottom: 18px;
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.2rem; letter-spacing: 0.01em; }
h4,h5,h6 { font-size: 1.1rem; }
p { margin-bottom: 18px; font-size: 1.04rem; }
strong { color: var(--accent); font-weight: 700; }
a:hover, .main-nav a:hover, .footer-nav a:hover {
  color: var(--accent-neon);
  text-shadow: 0 0 3px var(--accent);
}
ul,ol { padding-left: 20px; margin-bottom: 20px; }

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.03rem; }
  p, ul, ol { font-size: 0.97rem; }
}

/* ==== CONTAINER + LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==== FLEXBOX LAYOUT PATTERNS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface-darker);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-1);
  position: relative;
  padding: 28px 24px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 0 0 2px var(--accent-neon), var(--shadow-1);
  transform: translateY(-5px) scale(1.04);
}
.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: stretch; }
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; gap: 18px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  min-width: 220px;
  max-width: 480px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: #f6f7f8;
  color: #25292f;
  box-shadow: 0 2px 12px #41f57e11, 0 1px 2px #0001;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card p {
  margin: 0;
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: var(--gradient-2);
  box-shadow: 0px 2px 16px #232a3822;
  position: sticky;
  top: 0;
  z-index: 25;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.main-nav a {
  color: var(--text-primary);
  padding: 6px 7px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.main-nav a.active, .main-nav a:focus {
  color: var(--accent-neon);
}
.main-nav a:hover {
  background: #1a3d2a55;
}
@media (max-width: 992px) {
  .main-nav { gap: 15px; }
}
@media (max-width: 768px) {
  .main-nav, header .btn.primary { display: none !important; }
  header .container { padding-top: 8px; padding-bottom: 8px; }
}

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-neon);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1.5px 3px #05efd112;
  text-shadow: 0 3px 12px #16e48206;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn.primary, .btn.primary:visited {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 3px 16px #05efd133;
  font-weight: bold;
}
.btn:hover, .btn:focus {
  background: var(--accent-neon);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px #78ffa077, 0 1px 2px #08efc211;
}
.btn.primary:hover, .btn.primary:focus {
  background: var(--accent-neon);
  color: var(--primary-dark);
  border-color: var(--accent-neon);
}

/* ==== MOBILE BURGER MENU ==== */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 40;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  color: var(--accent-neon);
  background: var(--surface);
  border-radius: 50%;
  border: 2px solid var(--accent);
  transition: box-shadow var(--transition), background var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  box-shadow: 0 0 0px 1.5px var(--accent-neon) inset,0 1px 12px #16ffb898;
  background: var(--primary-dark);
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 38px;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #181A1Aee;
  backdrop-filter: blur(7px) saturate(120%);
  box-shadow: 0 0 60px #05efd133;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.56,0,.3,1.04);
  z-index: 1000;
  padding: 40px 28px 24px 28px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--accent-neon);
  background: none;
  border: none;
  border-radius: 50%;
  padding: 6px 10px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover {
  background: var(--surface-darker);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background .13s, color .13s;
}
.mobile-nav a:focus, .mobile-nav a.active {
  color: var(--accent-neon);
  background: #1a3d2a44;
}
.mobile-nav a:hover {
  background: #232a3866;
  color: var(--accent-neon);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}


/* ==== SECTIONS/THEMATIC BLOCKS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
  border: none;
}
section > .container > .content-wrapper {
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  width: 100%;
  margin-bottom: 16px;
}
section:last-child { margin-bottom: 0 !important; }

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 38px 0 18px 0;
  box-shadow: 0 -2px 14px #232a3844;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 600;
  transition: color .14s;
}
.footer-nav a:hover {
  color: var(--accent-neon);
}
.footer-contact {
  font-size: 1.08rem;
  line-height: 1.5;
}
.footer-copy {
  margin-top: 30px;
  width: 100%;
  text-align: center;
  font-size: .98rem;
  opacity: 0.67;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ==== CARDS ==== */
.card {
  border: 1.5px solid var(--accent);
  background: var(--surface);
}

/* ==== UL/OL for features/values ==== */
ul li, ol li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 18px;
}
ul li strong, ol li strong {
  color: var(--accent-neon);
  font-weight: 700;
}
ul li:before, ol li:before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 8px;
  background: var(--accent-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px #05efd182;
}

/* ==== VISUAL EFFECTS & MODERN FUTURISTIC ACCENTS ==== */
section > .container > .content-wrapper {
  border: 1.5px solid #3eb17788;
  box-shadow: 0 2px 16px #44ffbc11, 0 0.5px 1px #0003;
  background-blend-mode: lighten;
  position: relative;
}
section > .container > .content-wrapper:after {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 70% 30% 100% 0/60% 100% 0 40%;
  background: var(--accent-neon);
  opacity: 0.05;
  filter: blur(13px);
  z-index: 0;
}

/* ==== ANIMATION: card up-on-hover ==== */
.card, .btn, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 0 0 2.5px var(--accent) inset, 0 2px 20px #05efd125;
  background: #fffef8;
  color: var(--primary-dark);
  transform: scale(1.027);
}

/* ==== TESTIMONIALS SECTION ==== */
.testimonial-card {
  border-left: 5px solid var(--accent-neon);
  box-shadow: 0 4px 18px #30ffad22, 0 1px 2px #0001;
  margin: 0 auto 24px auto;
}

/* ==== SPACING FOR FLEX ITEMS ==== */
.card + .card { margin-left: 0; } /* spacing from flex gap */
.content-wrapper > * + * { margin-top: 0; } /* handled by flex gap */

/* ==== FORMS (if any appear later) ==== */
input,textarea,select {
  background: #272e35;
  border: 1.8px solid var(--accent);
  padding: 12px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  box-shadow: 0 1px 8px #40806e0c;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus,textarea:focus,select:focus {
  outline: none;
  border: 1.8px solid var(--accent-neon);
  box-shadow: 0 0 0 1.5px var(--accent-neon) inset;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: var(--surface);
  color: #fafafc;
  box-shadow: 0 -2px 16px #232a3855, 0 0 40px #41ffd118;
  z-index: 1999;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button {
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 18px;
  border: none;
  min-width: 120px;
  margin: 0 2px;
  background: var(--primary-dark);
  color: var(--accent-neon);
  box-shadow: 0 1px 12px #16e48e13;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner button:hover {
  background: var(--accent-neon);
  color: var(--primary-dark);
}
.cookie-banner .btn-cookie-settings {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-banner .btn-cookie-settings:hover { background: var(--accent); color: #fff; }

@media (max-width: 600px) {
  .cookie-banner { font-size: 0.98rem; padding: 13px 7px; }
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232b3244;
  backdrop-filter: blur(1.5px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--surface);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 26px 26px;
  min-width: 322px;
  max-width: 400px;
  box-shadow: 0 6px 30px #60e88922, 0 1.5px 18px #0001;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popIn .33s cubic-bezier(.42,-0.01,.59,1.01);
}
@keyframes popIn {
  0% { transform: scale(0.95) translateY(32px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 { color: var(--accent-neon); font-size: 1.27rem; margin-bottom: 10px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--surface-darker);
  border-radius: var(--radius-md);
  padding: 10px 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--accent-neon);
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-neon);
}
.cookie-modal-content .btn-row {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-content button {
  border-radius: var(--radius-sm);
  border: none;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .13s, color .13s;
  min-width: 100px;
}
.cookie-modal-content button:hover {
  background: var(--accent-neon);
  color: var(--primary-dark);
}
.cookie-modal-content .btn.cancel {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-modal-content .btn.cancel:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-modal-content { min-width: 85vw; }
}

/* ==== MISC & MICRO-INTERACTIONS ==== */
::-webkit-scrollbar { width: 8px; background: #2e3d44; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 6px; }

hr {
  border: 0; 
  border-top: 1.5px solid #3eb17788;
  margin: 24px 0;
}

/* ==== Miscellaneous Utility Classes ==== */
.d-none { display: none !important; }
.text-center { text-align: center !important; }

/* ==== RESPONSIVE TWEAKS ==== */
@media (max-width: 992px) {
  .container { max-width: 92vw; }
  section > .container > .content-wrapper { padding: 16px 12px; }
}
@media (max-width: 600px) {
  .section { padding: 28px 3px; }
  .container { padding: 0 8px; }
  section { padding: 18px 0 18px 0; }
  .testimonial-card { padding: 16px 8px; min-width: unset; }
}

/* ==== END ==== */
