/* ================== 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;}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block;}
body{line-height:1;}
ol,ul{list-style:none;}
a{text-decoration:none; color:inherit;}
img{max-width:100%; display:block;}
table{border-collapse:collapse; border-spacing:0;}
button,input,select,textarea{font-family:inherit; font-size:inherit; background:none; border:none; outline:none;}

/* ================== BRAND + FUTURISTIC VARIABLES ================== */
:root {
  --primary: #23272A;
  --secondary: #D7DDD7;
  --accent: #74B39A;
  --background: #181A1B;
  --neon: #00FFD0;
  --white: #FFF;
  --gray: #5e7070;
  --surface: #23272A;
  --shadow: 0 8px 30px rgba(0,1,32,.12), 0 1.5px 4.5px 0px #3ffed1cc;
  --radius: 18px;
  --transition: 0.21s cubic-bezier(.78,.13,.57,.86);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ================== GENERAL & BACKGROUND ================== */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #222725 100%);
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* ================== TYPOGRAPHY ================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.09;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon);
  text-shadow: 0 0 12px #04ffe1b0;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 14px;
  color: var(--accent);
}
p,li,span {
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 1rem;
}
strong { color: var(--accent); font-weight: 700; }

/* ================== LAYOUT - SECTIONS ================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35,39,42,0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
}

.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;
  background: var(--secondary);
  color: #26342a;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgb(43 255 209 / 10%);
  margin-bottom: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 4px 40px #00FFD044, 0 1.5px 8.5px 0px #00ffd05a;
  transform: translateY(-2px) scale(1.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: rgba(24,32,33,0.88);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 2px 16px 0 #00FFD055;
  min-width: 235px;
  flex: 1 1 230px;
  min-height: 220px;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 14px;
}
.feature-grid > div:hover {
  box-shadow: 0 2px 40px #00FFD0cc, 0 1.5px 8.5px 0px #00ffd05a;
  transform: scale(1.025);
}
.feature-grid img {
  width: 40px; height: 40px; margin-bottom: 16px;
  filter: drop-shadow(0 0 8px #00ffd06b);
}

.tip-boxes,.expert-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.tip, .callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(35, 39, 62, .92);
  border-left: 3.5px solid var(--accent);
  border-radius: 11px;
  padding: 18px 22px;
  color: var(--secondary);
  box-shadow: 0 0 14px #00ffd033;
}
.tip img, .callout img {
  width: 32px; height: 32px; filter: drop-shadow(0 0 5px #74B39A66);
}

ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
ul {
  padding-left: 18px;
  margin-bottom: 20px;
  list-style: disc outside;
}
ul li, ol li {
  margin-bottom: 6px;
}

/* ================== HEADER & NAVIGATION ================== */
header {
  background: rgba(24, 25, 29, 0.93);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px 0 #00ffd022;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  z-index: 30;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
}
.main-nav .logo {
  margin-right: 52px;
  flex-shrink: 0;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: var(--white);
  opacity: .87;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  padding: 5px 8px;
  border-radius: 8px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--neon);
  background: #232f2a43;
  opacity: 1;
}
.main-nav .cta-btn {
  margin-left: auto;
}

/* ================== CTA BUTTONS ================== */
.cta-btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--neon) 0%, var(--accent) 90%);
  color: #101612;
  box-shadow: 0 3px 16px #74b39a55, 0 1px 6px #00ffd0aa;
  font-size: 1.09rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  outline: none;
  display: inline-block;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(88deg, #b3ffeb 40%, var(--accent) 100%);
  color: #222;
  transform: translateY(-1.5px) scale(1.03);
}

/* ================== HERO SECTION ================== */
.hero {
  margin-bottom: 60px;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 56px 0 34px 0;
  background: linear-gradient(111deg, #1f2326 70%, #00FFD010 100%);
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.hero h1 {
  color: var(--neon);
  text-shadow: 0 0 14px #00ffd0cc;
}
.hero p {
  color: var(--secondary);
  margin-bottom: 32px;
}

/* =========== SECTION: FEATURES ========== */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* =========== ABOUT BLOCKS / SERVICES ========== */
.about {
  margin-bottom: 60px;
  padding: 40px 0;
}
.services {
  margin-bottom: 60px;
  padding: 40px 0;
}
/* ========== TESTIMONIALS ========== */
.testimonials {
  margin-bottom:60px;
  padding: 32px 0;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #232A25;
}
.testimonial-card span,
.testimonial-card strong {
  color: #1a3c34;
}
.testimonial-card strong {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* =============== FOOTER =============== */
footer {
  background: linear-gradient(90deg, var(--primary) 90%, #23272Aee 100%);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -2px 18px #00FFD022;
  padding: 48px 0 32px 0;
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--neon);
  font-size: 1rem;
  opacity: 0.9;
}
.footer-nav a:hover {
  color: var(--accent);
  transition: color var(--transition);
}
.company-info {
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.company-info img {
  height: 32px;
  margin-right: 12px;
}
.footer-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

/* ============== CONTACT PAGE =============== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
  color: var(--secondary);
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px #74b39a55);
}
.contact-details p, .contact-details a {
  color: var(--secondary);
  font-size: 1rem;
}
.contact-details a:hover {
  color: var(--neon);
  border-bottom: 1px dotted var(--neon);
  transition: color var(--transition);
}
.map-snippet {
  background: rgba(35, 39, 62, .84);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 2px 14px #00FFD044;
  color: var(--secondary);
  margin-bottom: 20px;
  min-width: 220px;
}
.map-snippet img {
  width: 48px; height: 48px; margin-top: 14px;
  filter: drop-shadow(0 0 8px #74B39A); opacity: 0.85;
}

/* =============== PRIVACY & POLICY PAGES ============== */
.privacy-policy, .rodo, .cookie-policy, .terms {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(32,39,42,0.79);
  border-radius: var(--radius);
  color: var(--secondary);
}
.privacy-policy h1, .rodo h1, .cookie-policy h1, .terms h1 {
  color: var(--neon);
  margin-bottom: 28px;
}

/* =============== THANK YOU PAGE =============== */
.thank-you {
  margin-bottom: 60px;
  padding: 48px 16px 80px 16px;
  background: linear-gradient(120deg, #133024 0%, #212b29 100%);
  border-radius: 24px;
  color: var(--secondary);
  box-shadow: 0 3px 40px 0 #65c5bb51;
  text-align: center;
}
.thank-you h1 {
  color: var(--neon);
  text-shadow: 0 0 16px #00ffd0cc;
}

/* =============== MOBILE NAVIGATION BURGER MENU =============== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #081212;
  font-size: 2.15rem;
  border-radius: 8px;
  border: none;
  padding: 8px 18px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 130;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--neon);
  color: #23272A;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(108deg, var(--primary) 70%, #00FFDC30 120%);
  z-index: 1103;
  flex-direction: column;
  padding: 0 0;
  align-items: flex-start;
  transition: transform .41s cubic-bezier(.62, 0, .41, 1.03);
  transform: translateX(-105vw);
  box-shadow: 0 4px 44px #00FFD055;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.35rem;
  color: var(--neon);
  background: none;
  border: none;
  padding: 18px 32px 6px 0;
  cursor: pointer;
  z-index: 1002;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--accent); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100vw;
  margin-top: 42px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding: 14px 54px;
  border-radius: 13px;
  background: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222f2a36;
  color: var(--neon);
}

@media (max-width: 1023px) {
  .main-nav .cta-btn {
    display: none; /* bring it into mobile nav instead */
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
  .main-nav .logo { margin-right: 32px; }
}
@media (max-width: 820px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav { gap: 6px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 10px;
  }
  .section, .about, .services, .testimonials, .privacy-policy, .rodo, .cookie-policy, .terms {
    padding: 32px 8px;
    margin-bottom: 38px;
  }
  .feature-grid, .content-grid, .card-container, .tip-boxes, .expert-tips {
    flex-direction: column;
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .company-info {
    flex-direction: column;
    text-align: center;
  }
  .footer-nav, .footer-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero {
    min-height: unset;
    padding: 34px 0 16px 0;
  }
  .feature-grid > div, .card, .map-snippet, .thank-you {
    min-width: 0; width: 100%;
  }
}
/* Ensure mobile menu covers everything */
@media (max-width: 768px) {
  .mobile-menu {
    padding-top: 18px;
    font-size: 1.20rem;
  }
}

/* ============== COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #212B29 80%, #182623 100%);
  color: var(--secondary);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 -3px 20px #00FFD077;
  z-index: 2100;
  border-radius: 20px 20px 0 0;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.35s var(--transition), transform 0.35s var(--transition);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 0%;
  align-items: center;
}
.cookie-banner__btns {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--accent);
  color: #1b2920;
  padding: 10px 23px;
  border-radius: 30px;
  box-shadow: 0 1px 6px #00ffd0bb;
  border: none;
  cursor: pointer;
  margin-right: 2px;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--neon);
  color: #23272A;
  box-shadow: 0 2px 14px #00ffd0cc;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-btn.settings:hover {
  border-color: var(--neon);
  color: var(--neon);
}

/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,31,41,0.62);
  z-index: 3100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.27s var(--transition);
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #181d18;
  color: var(--secondary);
  min-width: 0;
  width: 97vw;
  max-width: 430px;
  margin: 0 auto 0 auto;
  padding: 32px 25px 23px 25px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 30px #00FFD099;
  z-index: 3200;
  position: relative;
  animation: cookie-slideup 0.43s cubic-bezier(0.8, 0.04, 0.31, 1.10) 1;
}
@keyframes cookie-slideup {
  from { transform: translateY(120%); }
  to { transform: translateY(0%); }
}
.cookie-modal h3 {
  color: var(--neon);
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.cookie-pref-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 13px 0 13px 0;
  border-bottom: 1px solid #313B3c;
}
.cookie-pref-row:last-child{ border-bottom: none; }
.cookie-pref-label {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: var(--secondary);
}
.cookie-pref-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  top: 2px; left: 2px;
  right: 2px; bottom: 2px;
  background: #374d44;
  border-radius: 14px;
  transition: background .24s cubic-bezier(.71,0,.26,1);
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--accent);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  background: var(--neon);
  border-radius: 50%;
  transition: transform .23s var(--transition);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(21px);
  background: var(--accent);
}
.cookie-modal .cookie-btn {
  width: 100%; margin-top: 28px; font-size:1.1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  color: var(--accent);
  font-size: 2.2rem;
  background: none; border: none; cursor: pointer;
  transition: color var(--transition);
  z-index: 3260;
}
.cookie-modal-close:hover{ color: var(--neon); }
.cookie-modal .cookie-category-essential {
  opacity: .78; color: var(--gray);
}

/* ========== MICRO-INTERACTIONS =========== */
a, button {
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* ========== SCROLLBAR & SELECTION ===========  */
::-webkit-scrollbar { width: 9px; background: #121618; }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--neon); color: #212B29; }

/* ================ END OF ALL =================== */
