/* =====================
   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;
  box-sizing: border-box;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #151e23;
  color: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s, background .2s;
}
a:focus {
  /* Ensure accessible focus */
  outline: 2px solid #f1b918;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* =======================
   BRAND & TYPOGRAPHY
   ======================= */
:root {
  --color-primary: #204e22;
  --color-bg: #151e23;
  --color-secondary: #ffffff;
  --color-accent: #f1b918;
  --color-neon-blue: #5cfffb; /* neon accent */
  --color-neon-green: #24e08d;
  --color-light-bg: #232c34;
  --color-card-bg: #151e23;
  --color-card-highlight: #204e22;

  --font-display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: var(--font-body);
  background: #151e23;
  color: var(--color-secondary);
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-neon-blue);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
}
h3 {
  font-size: 1.375rem;
  margin-top: 24px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, ul, ol, address {
  color: #e7eef8;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong { font-weight: 700; color: var(--color-accent); }

/* Visual Hierarchy for Text Blocks */
.section > .container > .content-wrapper > h1,
.section > .container > .content-wrapper > h2 {
  margin-bottom: 20px;
  color: var(--color-neon-green);
}

/* ====================
   LAYOUT CONTAINERS
   ==================== */
.container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(108deg, #232c34 75%, #204e22 100%);
  border-radius: 20px;
  box-shadow: 0 2px 32px rgba(41, 245, 219, .07), 0 1.5px 8px rgba(46, 210, 112, .1);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    border-radius: 12px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(41,245,219,0.07);
  transition: box-shadow .25s, transform .25s;
  padding: 28px 18px;
  min-width: 240px;
  flex: 1 1 270px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 32px 0 #5cfffb, 0 1.5px 12px #24e08d;
  transform: translateY(-6px) scale(1.021);
  z-index: 2;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: rgba(44, 255, 142, 0.055);
  padding: 18px 16px;
  border-radius: 13px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #232c34;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 16px #1cfa92 07, 0 .5px 2px #6bffd3 30%;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow .22s, transform .15s;
}
.testimonial-card .stars {
  color: #f1b918;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.testimonial-card p {
  color: #151e23;
  font-weight: 500;
}
.testimonial-card span {
  color: #3c5057;
  font-size: 0.95rem;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px #204e22ab, 0 2px 6px #5cfffb60;
  transform: translateY(-3px) scale(1.025);
  border: 1.5px solid #5cfffb;
}

.card-container > .testimonial-card {
  flex: 1 1 310px;
}

/* ================
   HEADER & NAV
   ================ */
header {
  background: #10171a;
  box-shadow: 0 2px 8px #0f5137 30%;
  padding: 0;
  border-bottom: 2px solid #2de49b11;
  z-index: 60;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 21px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.01rem;
  color: #b5edf3;
  position: relative;
  padding: 4px 4px;
  font-weight: 500;
  letter-spacing: 0.011em;
  transition: color .18s;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #5cfffb 50%, #f1b918 100%);
  margin: 2px auto 0 auto;
  border-radius: 6px;
  transition: width 0.3s;
}
header nav a:hover::after,
header nav a:focus::after {
  width: 100%;
}
header nav a:hover, header nav a:focus {
  color: #5cfffb;
}

header .cta.primary,
header .cta.secondary {
  margin-left: 18px;
}

@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 6px;
  }
  header nav {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
}

/* ================
   CTA BUTTONS
   ================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.09rem;
  padding: 13px 30px;
  border-radius: 13px;
  background: linear-gradient(90deg, #204e22 70%, #5cfffb 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .025em;
  box-shadow: 0 2px 18px 0 #5cfffb2f;
  transition: background .18s, color .13s, box-shadow .19s, transform .10s;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 10px;
  text-shadow: 0 1px 2px #24e08d70;
}
.cta.primary {
  background: linear-gradient(90deg, #204e22 70%, #f1b918 120%);
  color: #fff;
  border: 1.5px solid #f1b918;
  box-shadow: 0 3.5px 12px 0 #f1b91833;
}
.cta.secondary {
  background: linear-gradient(90deg,#232c34 40%, #5cfffb 100%);
  border: 1.5px solid #5cfffb;
  color: #5cfffb;
}
.cta:hover,
.cta:focus {
  background: linear-gradient(90deg, #151e23 10%, #5cfffb 100%);
  color: #3ff2e6;
  box-shadow: 0 4px 22px 0 #f1b91844, 0 1.5px 6px #5cfffb60;
  transform: translateY(-2px) scale(1.03);
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #204e22 10%, #f1b918 120%);
  color: #fffde3;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: linear-gradient(90deg, #5cfffb 10%, #151e23 100%);
  color: #232c34;
}

/* ================
   BADGES/SPECIALS
   ================ */
.badge.special-offer {
  background: #f1b918;
  color: #232c34;
  font-size: .98rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 8px;
  margin-left: 6px;
  text-shadow: 0 1px 4px #fff3;
  box-shadow: 0 2px 7px #f1b91811;
}
.timer {
  background: #5cfffb;
  color: #204e22;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 7px;
  margin-left: 8px;
}

/* ================
   FOOTER
   ================ */
footer {
  background: #151e23;
  border-top: 2px solid #2de49b11;
  padding: 36px 0 14px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-logo img {
  height: 38px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
  color: #73fdea;
  font-size: 1.06rem;
}
.footer-nav a {
  color: #5cfffb;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color .16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #f1b918;
  text-decoration: underline;
}
address {
  color: #b5edf3;
  font-size: .97rem;
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 768px) {
  footer .container {
    align-items: stretch;
    padding: 0 6px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 5px;
  }
}

/* ================
   FORMS
   ================ */
input[type="email"] {
  padding: 12px 18px;
  border: 1.5px solid #5cfffb;
  border-radius: 11px;
  background: #10171a;
  color: #f1b918;
  font-size: 1.02rem;
  margin-right: 10px;
  width: 260px;
  transition: border .18s, background .13s, color .13s;
}
input[type="email"]:focus {
  outline: 2px solid #5cfffb;
  background: #204e22;
  color: #fff;
}
form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 560px) {
  input[type="email"] { width: 100%; min-width: 0; margin-right: 0; }
  form { flex-direction: column; align-items: stretch; gap: 18px; }
}

/* ================
   UL/LIST ICON CARDS
   ================ */
ul, ol {
  margin-left: 0;
}
li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.01rem;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  filter: drop-shadow(0 0 6px #70ffc7b0);
}
/* If list has <strong> */
li strong {
  color: var(--color-neon-green);
  font-weight: 600;
  display: inline-block;
  margin-right: 3px;
}

/* ================
   BLOG POSTS
   ================ */
.blog-post {
  background: #232c34;
  border-left: 5px solid #5cfffb;
  border-radius: 11px;
  margin-bottom: 22px;
  padding: 18px 18px 6px 21px;
  box-shadow: 0 2px 16px 0 #5cfffb09;
  transition: box-shadow .19s, border .18s;
}
.blog-post:hover,
.blog-post:focus-within {
  box-shadow: 0 4px 24px 0 #5cfffb22;
  border-left: 5px solid #f1b918;
}
.blog-post h3 {
  color: #f1b918;
  font-size: 1.13rem;
  margin-bottom: 8px;
}

/* ================
   MOBILE NAVIGATION
   ================ */
.mobile-menu-toggle {
  position: fixed;
  top: 24px;
  right: 22px;
  z-index: 102;
  background: #232c34;
  color: #5cfffb;
  font-size: 2.1rem;
  border: 2px solid #5cfffb;
  border-radius: 9px;
  padding: 10px 18px 8px 18px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px #5cfffb31;
  transition: background .16s, border .16s, color .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #204e22;
  color: #f1b918;
  border: 2px solid #f1b918;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  background: linear-gradient(94deg, #151e23 80%, #204e22 100%);
  box-shadow: -3px 0 26px #5cfffb1d;
  z-index: 400;
  transform: translateX(100vw);
  transition: transform .38s cubic-bezier(.78,.14,.25,.89);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  transition: transform .32s cubic-bezier(.44,.37,.24,1.0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #f1b918;
  margin: 30px 28px 12px 0;
  padding: 7px 12px;
  background: #232c34;
  border-radius: 8px;
  border: 2px solid #f1b918;
  align-self: flex-end;
  transition: background .16s, color .13s;
  z-index: 401;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #204e22;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  margin-top: 30px;
  gap: 16px;
}
.mobile-nav a {
  background: #232c34;
  color: #5cfffb;
  font-family: var(--font-display);
  font-size: 1.37rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 0;
  width: 100vw;
  text-align: center;
  border-bottom: 1.5px solid #204e22;
  border-radius: 0;
  transition: background .16s, color .16s, border .16s;
  min-width: 80vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #204e22;
  color: #f1b918;
  border-bottom: 1.5px solid #f1b918;
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: linear-gradient(90deg, #151e23 70%, #204e22 100%);
  box-shadow: 0 -2px 18px 0 #5cfffb1c;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 22px 46px 18px 20px;
  border-radius: 12px 12px 0 0;
  border-top: 3px solid #5cfffb;
  font-size: 1rem;
  color: #e7eef8;
  animation: slide-in-banner .27s;
}
@keyframes slide-in-banner {
  from { transform: translateY(160%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 9px;
  padding: 10px 24px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid #f1b918;
  background: #204e22;
  color: #f1b918;
  margin-left: 0;
  transition: background .15s, border .13s, color .13s;
}
.cookie-banner .cookie-btn.accept {
  border: 1.5px solid #24e08d;
  background: #5cfffb;
  color: #204e22;
}
.cookie-banner .cookie-btn.reject {
  border: 1.5px solid #f12711;
  background: #232c34;
  color: #ff4b2b;
}
.cookie-banner .cookie-btn.settings {
  border: 1.5px solid #5cfffb;
  background: #151e23;
  color: #5cfffb;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #f1b918;
  color: #151e23;
  border-color: #5cfffb;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #ff4b2b;
  color: #fff;
  border-color: #d50a0a;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 10px 13px 8px;
    font-size: .98rem;
  }
}

/* Cookie Preference Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1220;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal .18s;
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #151e23;
  border-radius: 14px;
  box-shadow: 0 2px 28px #5cfffb4b, 0 1.5px 16px #204e2222;
  padding: 35px 32px 26px 32px;
  width: 96vw;
  max-width: 400px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: slide-in-modal .22s;
}
@keyframes slide-in-modal {
  from { transform: translateY(100px); }
  to { transform: translateY(0); }
}
.cookie-modal h3 {
  color: #f1b918;
  font-family: var(--font-display);
  font-size: 1.29rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #204e2222;
  border-radius: 6px;
  padding: 9px 13px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-weight: 500;
  color: #fff;
  font-size: 1.025rem;
  margin-left: 6px;
}
.cookie-category .toggle {
  margin-left: auto;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.toggle {
  position: relative;
  width: 45px;
  height: 26px;
  background: #10171a;
  border-radius: 16px;
  border: 2px solid #5cfffb;
  cursor: pointer;
  transition: background .22s;
}
.toggle input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  cursor: pointer;
  margin: 0;
}
.toggle::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #5cfffb;
  position: absolute;
  left: 2px; top: 2px;
  transition: left .18s, background .13s;
}
.toggle input:checked + .slider {
  background: #24e08d;
}
.toggle input:checked ~ .toggle::before {
  background: #f1b918;
}
.toggle input:checked + .slider::before {
  left: 22px;
  background: #f1b918;
}

.toggle input:checked ~ .toggle::before {
  left: 22px;
  background: #f1b918;
}

/* Accessibility: visually hide if JS disabled */
.no-js .cookie-banner,
.no-js .cookie-modal-overlay {
  display: none !important;
}

/* ================
   SECTION RESPONSIVE
   ================ */
@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
  }
}
@media (max-width: 560px) {
  .section {
    margin-bottom: 36px;
    padding: 17px 4px;
  }
}

/* ================
   SPECIFIC MEDIA
   ================ */
@media (max-width: 950px) {
  .container { max-width: 97vw; }
}

@media (max-width: 560px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.31rem; }
}

/* ================
   MICRO-INTERACTIONS & EFFECTS
   ================ */
section, .card, .testimonial-card, .blog-post, .feature-item {
  transition: box-shadow .21s, transform .17s;
}
section:hover, .card:hover, .testimonial-card:hover, .blog-post:hover, .feature-item:hover {
  box-shadow: 0 3px 12px #5cfffb2b, 0 1.5px 7px #24e08d1b;
}

/* Glowing accent for hero headings */
h1, h2.hero-heading {
  text-shadow:
    0 0 8px #5cfffbcc, 0 2px 14px #24e08d99,
    0 0 5px #f1b91844;
}

/* Neon divider (for optional separation) */
.divider {
  width: 100%;
  max-width: 320px;
  height: 3px;
  background: linear-gradient(90deg, #5cfffb 10%, #f1b918 90%);
  border-radius: 3px;
  margin: 28px auto 24px auto;
  box-shadow: 0 0 18px #24e08d44;
}

/* ================
   Z-INDEX SYSTEM
   ================ */
header { z-index: 60; }
.mobile-menu { z-index: 400; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1220; }

/* ================
   Custom SCROLLBAR
   ================ */
::-webkit-scrollbar {
  width: 10px;
  background: #10171a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #204e22 80%, #5cfffb 100%);
  border-radius: 14px;
}
::-webkit-scrollbar-thumb:hover { background: #24e08d; }

/* ================
   FOCUS VISIBLE STYLES
   ================ */
a:focus-visible, .cta:focus-visible, input:focus-visible, button:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #f1b918;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px #5cfffb40;
}

/* ================
   SPECIALS / UTILITIES
   ================ */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* ================
   Print Styles
   ================ */
@media print {
  * {
    background: #fff !important;
    color: #232c34 !important;
    box-shadow: none !important;
  }
  a, .cta, button { text-decoration: underline !important; }
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
}

/* END OF style.css */
