/* ------------------------------------
   CSS RESET / NORMALIZE (mobile first)
---------------------------------------*/
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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #111619;
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 8px 12px;
  text-align: left;
}

/* -------------------------------
   BRAND COLORS AND FONTS
---------------------------------*/
:root {
  --color-primary: #005B4C;
  --color-secondary: #F6EADA;
  --color-accent: #E4A84E;
  --color-accent-secondary: #BB7A17;
  --color-bg-dark: #111619;
  --color-bg-medium: #232B2F;
  --color-bg-light: #F6EADA;
  --color-surface: #162021;
  --color-border: #24423d;
  --color-error: #e24c4b;
  --color-success: #86e57f;
  --font-display: 'Lato', 'Roboto', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow-big: 0 6px 32px 0 rgba(0,32,48,0.15);
  --shadow-base: 0 2px 8px 0 rgba(0,32,48,0.09);
  --shadow-hover: 0 4px 12px 0 rgba(84, 210, 181, 0.22);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;
}

/* --------------------------------------
   TYPOGRAPHY
----------------------------------------*/
h1, .display {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #00fac5;
  text-shadow: 0 2px 18px rgba(0,255,200,0.18);
}
h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(228, 168, 78, 0.12);
}
h4 {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-accent-secondary);
}
p, li, td, th, a, small {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #f3faf9;
}
p {
  margin-bottom: 16px;
}
small {
  color: #97aba7;
  font-size: 0.93rem;
}
strong, b {
  font-weight: 700;
  color: var(--color-accent);
}

/* --------------------------------------
   LAYOUT STRUCTURE
----------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
main {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 36px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-dark);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-base);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-base);
  padding: 30px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  color: #242828;
  padding: 20px;
  border-radius: var(--radius-m);
  margin-bottom: 20px;
  box-shadow: var(--shadow-hover);
  border-left: 5px solid var(--color-accent);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card p,
.testimonial-card strong {
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .content-grid,
  .card-container {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card {
    padding: 18px 12px 16px 12px;
    min-width: 180px;
  }
  .testimonial-card {
    padding: 16px 6px;
  }
}

/* --------------------------------------
   HEADER / NAVIGATION
----------------------------------------*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(92deg, #0b3230 90%, #14181A 100%);
  padding: 18px 3vw 16px 3vw;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  box-shadow: 0 4px 18px 0 rgba(0,95,78,0.095);
}
header img {
  width: 42px;
  height: 42px;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #eafffa;
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
}
.cta-btn {
  font-family: var(--font-display);
  background: linear-gradient(90deg, var(--color-accent) 60%, var(--color-accent-secondary) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-s);
  padding: 10px 22px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 30px;
  margin-right: 14px;
  box-shadow: 0 4px 24px 0 rgba(228, 168, 78, .09);
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
  transition: background 0.24s, transform 0.16s, box-shadow 0.17s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #ffd04c 10%, var(--color-accent) 90%);
  color: #181c19;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(228, 168, 78, .18);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 960px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: var(--color-accent);
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 205;
    transition: background 0.2s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: rgba(184, 122, 23, 0.13);
  }
}
/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 23, 27, 0.97);
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.6,.03,.28,.92);
  box-shadow: 0 4px 48px 0 rgba(0,32,48,0.13);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  padding: 14px 22px 2px 18px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 3101;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffd04c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin-left: 28px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  padding: 8px 0 8px 4px;
  border-radius: var(--radius-s);
  transition: color 0.2s, background 0.22s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--color-accent);
  background: #1a2420;
}

@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------------------
   MAIN CONTENT
--------------------------------------*/
ul {
  margin-left: 1em;
  margin-bottom: 12px;
  list-style-position: inside;
  color: #f6eada;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
ul li img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  filter: drop-shadow(0 2px 9px #005b4c33);
}
.pricing-table {
  background: var(--color-bg-medium);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-base);
  margin-bottom: 14px;
  width: 100%;
  overflow-x: auto;
  padding: 11px 0 16px 0;
  display: block;
}
.pricing-table table {
  width: 100%;
  border-radius: var(--radius-s);
  min-width: 400px;
}
.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 6px;
  border-bottom: 2px solid var(--color-accent);
}
.pricing-table td {
  background: var(--color-surface);
  color: #d8e4e2;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .pricing-table table {
    min-width: 320px;
    font-size: .96rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-bg-medium);
  border-radius: var(--radius-m);
  padding: 18px 18px 10px 18px;
  box-shadow: var(--shadow-base);
  margin-bottom: 12px;
  color: #f7fefd;
  transition: box-shadow 0.22s;
}
.faq-item strong {
  color: var(--color-accent);
  font-weight: 700;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-info img {
  width: 19px;
  height: 19px;
  margin-right: 6px;
  filter: drop-shadow(0 1px 5px #e4a84e44);
  vertical-align: middle;
}

.service-list {
  background: var(--color-bg-medium);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-base);
  padding: 22px 16px 14px 16px;
  margin-bottom: 18px;
}
.service-list h3 {
  color: var(--color-accent-secondary);
  margin-bottom: 4px;
}

/* -----------------------------
   FOOTER
------------------------------*/
footer {
  background: linear-gradient(92deg, #0b3230 50%, #1e2324 100%);
  color: #eafffa;
  padding: 32px 0 24px 0;
  width: 100%;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
}
.footer-wrapper img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  color: #C7F3E9;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover,footer nav a:active {
  color: var(--color-accent);
  text-decoration: underline;
}
footer .contact-info p, footer .contact-info a {
  color: #eef9f6;
  font-size: .98rem;
}
footer .contact-info a:hover { color: var(--color-accent); }
@media (max-width: 768px) {
  .footer-wrapper {
    gap: 10px;
  }
  footer nav {
    gap: 9px;
    flex-wrap: wrap;
  }
}

/* ------------------------------
   MICRO-INTERACTIONS & EFFECTS
-------------------------------*/
.card,
.faq-item,
.testimonial-card,
.pricing-table,
.service-list {
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover,
.faq-item:hover,
.service-list:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 251, 245, 0.19);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px #E4A84E33;
  transform: scale(1.022);
}

/* Neon Accent Borders */
.card, .pricing-table, .service-list {
  border: 1.5px solid #163e2e;
  position: relative;
}
.card:before, .service-list:before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 16px 3px #00fac566, 0 0 0 2.5px #00fac5;
  opacity: 0.24;
}

.cta-btn:after {
  content: '';
  display: block;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 16px 3px #FFD04C99;
  transition: opacity 0.17s;
  z-index: -1;
  opacity: 0.38;
}
.cta-btn:hover:after,
.cta-btn:focus:after {
  opacity: 0.89;
}

/* -------------------------------
   SCROLLBARS
-------------------------------*/
::-webkit-scrollbar {
  width: 9px;
  background: #232f27;
}
::-webkit-scrollbar-thumb {
  background: #005B4C;
  border-radius: 6px;
}

/* ------------------------------
   COOKIE CONSENT BANNER
-------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #162021 90%, #282c26 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 18px 10px 14px 10px;
  z-index: 5000;
  box-shadow: 0 -2px 18px rgba(0,32,48,0.13), 0 0 0 2px var(--color-accent-secondary);
  animation: cookiebanner-slidein 0.44s cubic-bezier(.5,1.6,.45,.97);
  font-family: var(--font-body);
  font-size: 1rem;
}
@keyframes cookiebanner-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .btn {
  background: linear-gradient(90deg, var(--color-accent) 80%, var(--color-accent-secondary) 100%);
  color: #21281a;
  border: none;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 19px;
  margin-left: 10px;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 2px 12px #e4a84e26;
}
.cookie-banner .btn.settings {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  margin-left: 0;
}
.cookie-banner .btn:hover {
  background: #FFD04C;
  color: #181c19;
}
.cookie-banner .btn.settings:hover {
  background: #232b2f;
  color: #FFD04C;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(0,32,48,0.66);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodal-fadein 0.31s cubic-bezier(.49,1.3,.36,.99);
}
@keyframes cookiemodal-fadein {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: linear-gradient(90deg, #1b2623 90%, #3a381c 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 36px 32px 26px 32px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 7px 34px #00fac560;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: cookiemodal-scalein 0.38s cubic-bezier(.39,1.9,.45,.92);
}
@keyframes cookiemodal-scalein{
  from{transform:scale(.84);opacity:.44;}to{transform:scale(1);opacity:1;}
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-bottom: 18px;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #f4dec4;
  margin-right: 18px;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: var(--color-accent-secondary);
  width: 20px;
  height: 20px;
}
.cookie-modal .btn {
  margin-top: 14px;
}
.cookie-modal .close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.35rem;
  padding: 2px 0 9px 0;
  cursor: pointer;
}
.cookie-modal .close:hover {
  color: #ffd04c;
}

@media (max-width: 540px) {
  .cookie-modal {
    padding: 20px 6vw 16px 6vw;
    font-size: .98rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 6px 16px 6px;
    font-size: .99rem;
    gap: 8px;
  }
  .cookie-banner .btn {
    margin-left: 0;
    margin-top: 5px;
    width: 100%;
  }
}
/* -------------------------------
   NEON EFFECTS (Cursors & Focus)
--------------------------------*/
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2.5px solid #00fac5;
  outline-offset: 3px;
  box-shadow: 0 0 6px 2px #00fac57a;
}

/* -------------------------------
   MISC FORMATTING
--------------------------------*/
::-moz-selection { background: #005B4C; color: #fff; }
::selection      { background: #005B4C; color: #fff; }

/* ---------------------------------
   ICON ACCENTS
---------------------------------*/
.card img, .feature-item img, .faq-item img {
  filter: drop-shadow(0 0 11px #00fac580) drop-shadow(0 1px 5px #e4a84e44);
}

/* ----------------------------------
   ANIMATIONS
-----------------------------------*/
@media (prefers-reduced-motion: no-preference) {
  *, *:before, *:after {
    transition: color 0.15s, background 0.26s, box-shadow 0.18s, border 0.16s, transform 0.15s;
  }
}

/* ----------------------------------
   END CSS
-----------------------------------*/
