/* ========================================================================== */
/*                     CSS RESET & NORMALIZATION (Mobile First)                */
/* ========================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #171B22;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #202936 0%, #171B22 100%);
  color: #F5F8FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: .01em;
  transition: background 0.5s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #49F6E2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #34A1F5;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, .btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  background: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
:focus {
  outline: 2px solid #34A853;
  outline-offset: 2px;
}

/* ========================================================================== */
/*                     BRAND COLORS & DESIGN TOKENS                            */
/* ========================================================================== */
:root {
  --color-primary: #26547C;
  --color-secondary: #E8E1EF;
  --color-accent: #188635;
  --color-neon: #49F6E2;
  --color-dark: #171B22;
  --color-bg-card: #222A35;
  --color-border: #394566;
  --color-text: #F5F8FA;
  --color-muted: #B7C6DB;
  --color-warning: #FBC245;
  --color-error: #EA5287;

  --shadow-neon: 0 0 28px 0 #49F6E244;
  --shadow-card: 0 4px 24px 0 #0B1727aa;
  --shadow-glow: 0 0 16px #18863577;

  --radius-card: 18px;
  --radius-btn: 8px;
  --font-display: 'Montserrat', 'Open Sans', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;

  --transition-main: 0.28s cubic-bezier(.34,1.56,.64,1);
}

/* ========================================================================== */
/*                          TYPHO, HEADINGS, TEXT                             */
/* ========================================================================== */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(115deg, #222a35 0%, #171b22 90%);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .02em;
  font-weight: 700;
  text-shadow: 0 2px 18px #34a1f520;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.09rem;
}
p, li {
  font-size: 1rem;
  color: var(--color-text);
}
p {
  margin-bottom: 1.2em;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 32px;
  }
}

/* ========================================================================== */
/*                            STRUCTURE & CONTAINER                           */
/* ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================================================== */
/*                                HEADER/NAV                                  */
/* ========================================================================== */
header {
  background: rgba(20,27,40,0.91);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 3px 26px #26547c11;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #e8e1ef;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 4px;
  transition: color .2s, background .24s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-neon);
  background: #2a3351cc;
}
.btn.btn-primary {
  padding: 11px 28px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  box-shadow: 0 0 16px #18863555, var(--shadow-card);
  transition: box-shadow var(--transition-main), background var(--transition-main);
  outline: none;
  border: none;
  margin-left: 24px;
  position: relative;
  overflow: hidden;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #49F6E2;
  color: #111b2a;
  box-shadow: 0 2px 34px #49f6e2aa;
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  padding: 5px 14px;
  border-radius: 8px;
  margin-left: 16px;
  transition: background .15s, color .2s;
  z-index: 133;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #17213A;
  color: #fff;
}

/* Mobile MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: linear-gradient(115deg, #192336 0, #26547c 75%, #26547C 100%);
  box-shadow: 0 0 32px #34a1f580;
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.8,.13,.37,1.23);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 22px 18px 0;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  border-radius: 8px;
  width: 56px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
  background: #222a3566;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 32px;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #fff;
  border-radius: 5px;
  padding: 16px 0 10px 2px;
  transition: color .1s, background .2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-neon);
  background: #272B39;
}
/* Show/hide NAV for breakpoints */
@media (max-width: 1020px) {
  .main-nav, .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================================================================== */
/*                        HERO SECTIONS & PAGE SECTIONS                      */
/* ========================================================================== */
.hero, .cta {
  background: linear-gradient(108deg, #222a35 0 80%, #188635 100%);
  border-radius: var(--radius-card);
  margin-top: 26px;
  box-shadow: 0 7px 36px #1886350d, 0 2px 30px #171B2238;
  padding: 48px 0 48px 0;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 2.3rem;
  color: var(--color-neon);
  text-shadow: 0 2px 26px #49f6e260, 0 5px 48px #18863542;
}
.hero p {
  font-size: 1.2rem;
  max-width: 620px;
  color: #e0e4ec;
}
@media (max-width: 768px) {
  .hero, .cta {
    padding: 24px 0;
    margin-top: 12px;
  }
  .hero h1 {
    font-size: 1.25rem;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-card);
  background: rgba(34, 42, 53, 0.96);
  box-shadow: var(--shadow-card);
}

.features .content-wrapper,
.benefits .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  background: var(--color-bg-card);
  box-shadow: 0 3px 18px #49f6e205;
  border-radius: var(--radius-card);
  padding: 28px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.3px solid #2E3455;
  position: relative;
  transition: box-shadow var(--transition-main), border-color .23s;
}
.feature-grid li img {
  height: 36px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border-color: var(--color-neon);
  box-shadow: 0 6px 44px #49f6e275, 0 2px 18px #1886354c;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-list li {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 310px;
  background: #1A2232;
  border-radius: var(--radius-card);
  padding: 24px 16px 20px 16px;
  box-shadow: 0 4px 28px #34A85312, 0 2px 15px #26547c17;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  border: 1px solid #23284C;
  transition: box-shadow var(--transition-main), border-color .23s;
}
.service-list li h3 {
  color: var(--color-neon);
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.service-list li a {
  margin-top: 10px;
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  border-radius: 4px;
  background: #232B4F;
  padding: 5px 12px;
  font-size: 0.97rem;
  transition: background .18s, color .15s;
}
.service-list li a:hover {
  color: #fff;
  background: var(--color-accent);
}
.service-list li:hover,
.service-list li:focus-within {
  border-color: var(--color-neon);
  box-shadow: var(--shadow-neon);
}

/* Testimonials */
.testimonials .content-wrapper,
.testimonial-preview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 20px 18px 18px;
  background: #fff;
  color: #171B22;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 32px #34A8530E, 0 2px 16px #49F6E220;
  min-width: 250px;
  max-width: 440px;
  flex: 1 1 280px;
  margin-bottom: 22px;
  border: 1px solid #dce8de;
  position: relative;
  z-index: 1;
  transition: box-shadow .21s, border-color .18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 35px #34A85333, 0 2px 32px #34a1f51c;
  border-color: #b7efde;
}
.testimonial-card p {
  color: #222A35;
  font-size: 1.1rem;
  line-height: 1.5;
}
.testimonial-card span {
  font-size: 0.96em;
  color: #188635;
}
.testimonial-card strong {
  color: #111b23;
}

@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .testimonials .content-wrapper,
  .testimonial-preview .content-wrapper {
    flex-direction: column;
  }
}

/* ========================================================================== */
/*                             FAQ ACCORDION/QUESTIONS                        */
/* ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion div {
  background: var(--color-bg-card);
  border: 1.2px solid #34A85344;
  border-radius: var(--radius-card);
  padding: 20px 18px;
  box-shadow: 0 2px 18px #18863508;
  margin-bottom: 20px;
  transition: box-shadow .22s, border-color .19s;
}
.faq-accordion div:hover,
.faq-accordion div:focus-within {
  border-color: var(--color-neon);
  box-shadow: 0 4px 36px #34A85334;
}
.faq-accordion h2 {
  color: var(--color-neon);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.faq-accordion p {
  color: #E8E1EF;
}

/* ========================================================================== */
/*                                 CARD/GRID LAYOUTS                          */
/* ========================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 16px;
  transition: box-shadow var(--transition-main), border-color .2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 5px 42px #34A85324, 0 1px 9px #18863510;
  border-color: var(--color-neon);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
  }
}

/* ========================================================================== */
/*                                PRICING TABLE                               */
/* ========================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 12px;
  text-align: left;
  border-bottom: 1.3px solid #2E3455;
  font-size: 1rem;
}
.pricing-table th {
  background: #192336;
  color: var(--color-neon);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.pricing-table tr:last-child td,
.pricing-table tr:last-child th {
  border-bottom: none;
}
.price-disclaimer {
  color: var(--color-warning);
  font-size: 0.95em;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .pricing-table th,
  .pricing-table td {
    font-size: 0.90rem;
    padding: 12px 6px;
  }
}

/* ========================================================================== */
/*                              FOOTER DESIGN                                 */
/* ========================================================================== */
footer {
  background: #181f2a;
  border-top: 1.3px solid #202936;
  box-shadow: 0 -4px 24px #34A85301;
  margin-top: 78px;
  padding: 38px 0 20px 0;
}
footer .container {
  flex-direction: column;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-neon);
  font-size: 1rem;
  transition: color .22s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  text-decoration: underline;
  color: #34A853;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 0.97em;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  margin-bottom: 0;
}
footer p {
  color: #6f8baa;
  font-size: 0.92em;
}
@media (max-width: 700px) {
  .footer-nav {
    flex-direction: column;
    gap: 11px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================================================== */
/*                           Cookie Consent Banner & Modal                    */
/* ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #181F2A;
  color: #fff;
  padding: 18px 24px 18px 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -5px 32px #49F6E210, 0 0 4px #18863533;
  z-index: 10000;
  font-size: 1rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transition: transform 0.35s var(--transition-main), opacity .19s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(180%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: .96rem;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 0 8px #18863522;
  background: #222a35;
  color: #fff;
  border: 1px solid #171B22;
  transition: background .18s, color .15s, box-shadow .14s;
}
.cookie-banner button:hover {
  background: var(--color-neon);
  color: #171B22;
  box-shadow: var(--shadow-glow);
}
.cookie-banner .btn-accept {
  background: var(--color-accent);
  color: #fff;
  font-weight: bold;
  border-color: #188635;
}
.cookie-banner .btn-accept:hover {
  background: var(--color-neon);
  color: #171B22;
}
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #171B22e6;
  z-index: 14000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #1A2232;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 66px #222a353c, 0 2px 22px #18863533;
  padding: 38px 32px 26px 32px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalShow .35s cubic-bezier(.4,1.2,.7,1.2);
}
@keyframes modalShow {
  from { transform: scale(.92) translateY(24px); opacity: 0.12; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  color: var(--color-neon);
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.01rem;
  color: #eafaf0;
  background: #232C40;
  border-radius: 8px;
  padding: 10px 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 21px;
  height: 21px;
  margin-right: 7px;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  width: 100%;
  margin-top: 19px;
}
.cookie-modal-buttons button {
  flex: 1 1 auto;
  font-size: 1rem;
  padding: 10px 0;
}
.cookie-modal .close {
  position: absolute;
  top: 18px;
  right: 15px;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: 8px;
  width: 46px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  color: #fff;
  background: #18863533;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px 12px 10px;
    gap: 12px;
    font-size: .97rem;
  }
  .cookie-modal-content {
    padding: 28px 11px 14px 11px;
  }
}

/* ========================================================================== */
/*                                 MISC & UTILITY                             */
/* ========================================================================== */
strong {
  color: #34A853;
}
hr {
  border: none;
  border-bottom: 1.3px solid #222a35;
  margin: 24px 0;
}
::-webkit-scrollbar {
  width: 11px;
  background: #1a2232;
}
::-webkit-scrollbar-thumb {
  background: #222a35;
  border-radius: 6px;
}

/* Tables: alternate row color for better reading */
.pricing-table tbody tr:nth-child(even) {
  background: #202936;
}

/* Table: highlight on hover row */
.pricing-table tbody tr:hover {
  background: #2e4460ee;
  color: #fff;
}

/* Legal Pages Sections */
.legal .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #242e45e3;
  border-radius: var(--radius-card);
  padding: 25px 18px 24px 18px;
}
.legal ul {
  margin-left: 20px;
  list-style: disc;
}
.legal li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* About Page - Differentiators */
.differentiators .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.differentiators .content-wrapper ul li {
  background: #232B43;
  border-left: 6px solid #49F6E2;
  padding: 12px 18px;
  border-radius: 7px;
  color: #dbeeff;
  font-size: 1.06rem;
}

/* Contact Info Card */
.contact-details {
  background: #202936;
  border-radius: var(--radius-card);
  padding: 18px 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 18px #18863508;
}
.contact-details h2 {
  color: var(--color-neon);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 9px 0 11px 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E8E1EF;
  font-size: 1.02rem;
}
.map-location {
  background: #232C40;
  border-radius: 7px;
  padding: 11px 13px;
  color: #A4C5CC;
  font-size: 1.02rem;
  margin-top: 12px;
}

/* Confirmation/thank you page */
.confirmation ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  margin-left: 13px;
  list-style: disc;
}

/* Responsive tweaks for cards/lists on small screens */
@media (max-width: 600px) {
  .feature-grid li, .service-list li, .card, .testimonial-card {
    min-width: 90vw;
    max-width: 99vw;
    padding: 19px 7px 17px 7px;
  }
}

/* Animation for hover fx on interactive elements */
a, .btn, button {
  transition: color .18s, background .18s, box-shadow .19s, transform .18s cubic-bezier(.34,1.56,.64,1);
}
a:active, .btn:active {
  transform: scale(.98);
}
/* Micro-interactions for cards/lists */
.card:active, .feature-grid li:active, .service-list li:active, .testimonial-card:active {
  transform: scale(.98);
}

/* ======================= Responsive Spacing Consistency ================== */
@media (max-width: 950px) {
  .container {
    max-width: 99vw;
    padding: 0 7vw;
  }
}
@media (max-width: 650px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw !important;
  }
}
/* END CSS */