/* =======================================
   CSS RESET & BASE STYLES
   ======================================= */
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, menu, 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 {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #161925;
  color: #F7F2EB;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(120deg, #22313F 0%, #161925 100%); /* slight tech gradient */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #13E4A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A9775D;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

:root {
  --primary: #22313F;
  --dark: #161925;
  --secondary: #F7F2EB;
  --accent: #A9775D;
  --neon: #13E4A8;
  --cardbg: #18202d;
  --shadow: 0 6px 28px rgba(34, 49, 63, 0.20), 0 2px 8px rgba(23, 255, 235, 0.07);
  --font-display: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 24px;
  letter-spacing: 1.2px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: #FFF;
}
.subtitle {
  color: var(--neon);
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #F7F2EB;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}

/* SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--cardbg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 240px;
  transition: box-shadow 0.24s, transform 0.24s;
}
.card:hover {
  box-shadow: 0 0 0 3px var(--neon), var(--shadow);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #95ccbc;
  color: #161925;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 #13e4a821;
  border: 1.5px solid #22313F33;
  position: relative;
  font-size: 1rem;
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 0 0 2px var(--neon), 0 8px 36px -6px #06013155, 0 4px 16px #13E4A811;
  z-index: 1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* == CUSTOM LAYOUTS FOR SPECIFIC UL/GRIDS == */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.feature-grid li, .service-list li {
  flex: 1 1 260px;
  background: var(--cardbg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  position: relative;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.20s;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 0 0 2.5px var(--neon), var(--shadow);
  transform: translateY(-3px) scale(1.017);
}
.service-list .price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neon);
  font-size: 1.1rem;
  margin-top: 10px;
  letter-spacing: 0.8px;
}

.service-accordion {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-accordion > li {
  background: var(--cardbg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 24px 0 24px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.service-accordion > li h2 {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.service-accordion .price {
  color: var(--neon);
  background: #22313F25;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 10px;
}
.service-accordion .accordion-content {
  margin-bottom: 13px;
}

.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.case-study {
  flex: 1 1 260px;
  background: var(--cardbg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 18px 15px 18px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.case-study:hover {
  box-shadow: 0 0 0 2.5px var(--neon), var(--shadow);
  transform: translateY(-2px) scale(1.0125);
}
.case-study .outcome {
  margin-top: 10px;
  font-weight: 600;
  color: var(--neon);
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.testimonial-list .testimonial-card {
  min-width: 260px;
  flex: 1 1 330px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--cardbg);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 24px 0;
  box-shadow: var(--shadow);
  font-size: 1rem;
}
.pricing-table th {
  font-family: var(--font-display);
  background: #22313Faa;
  color: #FFF;
  padding: 18px 12px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1.5px solid #434D60;
}
.pricing-table td {
  color: var(--secondary);
  padding: 14px 12px;
  border-bottom: 1px solid #22313F44;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.notes {
  background: #a9775d15;
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 20px;
  color: #ffefd7;
  font-size: 0.99rem;
}

/* == BUTTONS == */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  background: var(--neon);
  color: #161925;
  box-shadow: 0 0 12px 0 #13E4A866;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.09s;
  position: relative;
  z-index: 1;
  outline: none;
}
.btn-primary:hover, .btn-secondary:hover, .btn-primary:focus, .btn-secondary:focus {
  background: var(--accent);
  color: #FFF;
  box-shadow: 0 0 0 2px #a9775d80,0 2px 8px #13E4A844;
  transform: translateY(-2px) scale(1.018);
}
.btn-secondary {
  background: var(--accent);
  color: #FFF;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--neon);
  color: #161925;
}

/* == HEADER & NAV == */
header {
  position: sticky;
  top: 0;
  background: rgba(22,25,37,0.98);
  backdrop-filter: blur(6px);
  z-index: 20;
  box-shadow: 0 2px 24px 0 #13e4a833;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: var(--font-body);
  color: #F7F2EB;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.active, .main-nav a:focus {
  background: #22313F;
  color: var(--neon);
}
.main-nav .btn-primary {
  margin-left: 16px;
}

/* == MOBILE MENU == */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--neon);
  cursor: pointer;
  margin-left: 10px;
  z-index: 31;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(115deg, #0f1721 72%, var(--neon) 160%);
  box-shadow: -6px 0 50px #13e4a835;
  transition: transform 0.36s cubic-bezier(.49,.33,.47,1.13), right 0.32s linear;
  transform: translateX(100%);
  z-index: 8888;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  justify-content: flex-start;
}
.mobile-menu.open {
  right: 0;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 0 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--neon);
  cursor: pointer;
  transition: color 0.18s;
  z-index: 9999;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.2rem;
  padding: 12px 0 12px 0;
  font-family: var(--font-display);
  letter-spacing: 0.7px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon);
  background: #22313F55;
}

/* == FOOTER == */
footer {
  background: #10141e;
  color: #F7F2EB;
  padding: 46px 0 22px 0;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #A9775D;
  font-family: var(--font-display);
  font-size: 1rem;
  text-decoration: underline 0.13em rgba(169,119,93,0.2);
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
  opacity: 0.92;
}
.footer-branding img {
  height: 28px;
}

/* == CONTACT INFO + MISC == */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.additional-channels {
  margin-top: 16px;
  font-size: 1.04rem;
}
.google-map-embed {
  background: #11202e;
  border-radius: 8px;
  padding: 15px;
  color: #FFF;
  margin-top: 20px;
  font-size: 0.98rem;
}

/* == ACCORDION OVERRIDES == */
.service-accordion > li {
  cursor: pointer;
}
.service-accordion > li.active h2::after {
  content: '–';
  float: right;
  color: var(--neon);
  font-size: 1.4em;
  margin-left: 12px;
  transition: color 0.14s;
}
.service-accordion > li h2::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-size: 1.4em;
  margin-left: 14px;
  transition: color 0.14s;
}
.service-accordion > li.active h2::after {
  color: var(--neon);
}
.service-accordion > li:not(.active) .accordion-content {
  display: none;
}
/* == UTILITIES == */
.text-section {
  background: none;
  color: #FFF;
  border-radius: 14px;
  padding: 18px 5px 5px 5px;
  max-width: 760px;
  margin: 0 auto 28px auto;
}
.text-section a {
  color: var(--neon);
  text-decoration: underline;
}
.text-section ul {
  margin: 16px 0 18px 18px;
  padding-left: 0;
}
.text-section li {
  margin-bottom: 7px;
}

/* == RESPONSIVE (MOBILE FIRST) == */
@media (max-width: 1000px) {
  .feature-grid li, .service-list li, .case-study, .testimonial-card, .card {
    flex: 1 1 65vw;
    min-width: 170px;
  }
  .testimonial-list .testimonial-card {
    min-width: 180px;
  }
  .case-study {
    padding: 18px 8px 14px 8px;
  }
  .footer-nav, .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .service-list, .case-study-grid, .testimonial-list, .card-container {
    flex-direction: column !important;
    gap: 18px;
  }
  .feature-grid li, .service-list li, .case-study, .testimonial-card, .card {
    min-width: 88vw;
    margin-bottom: 16px;
  }
  .testimonial-list .testimonial-card {
    min-width: 88vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    gap: 6px;
    padding: 12px 8px 10px 8px;
  }
  footer .container {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 28px 4px;
    margin-bottom: 26px;
  }
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.24rem;
  }
  .feature-grid li, .service-list li, .case-study, .testimonial-card, .card {
    padding: 13px 6px 11px 7px;
    font-size: 0.98rem;
  }
}

/* == MICRO-INTERACTIONS == */
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a, .testimonial-card, .card, .feature-grid li, .service-list li {
  transition: background .18s, color .18s, transform .18s, box-shadow 0.17s;
}

/* == COOKIE CONSENT BANNER == */
.cookie-consent-banner {
  position: fixed;
  z-index: 9910;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #18202d;
  color: #FFF;
  padding: 24px 12px 20px 12px;
  box-shadow: 0 -8px 32px -12px #13E4A845;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: cookieSlideIn 0.99s cubic-bezier(.64,.07,.69,1.08);
}
@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 5px;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 25px;
  padding: 8px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.15s, color 0.11s, box-shadow 0.17s;
  outline: none;
}
.cookie-consent-banner .btn-accept {
  background: var(--neon);
  color: #161925;
  box-shadow: 0 2px 10px #13E4A822;
}
.cookie-consent-banner .btn-accept:hover {
  background: var(--accent);
  color: #FFF;
}
.cookie-consent-banner .btn-reject {
  background: #10171e;
  color: var(--accent);
  border: 1.3px solid var(--accent);
}
.cookie-consent-banner .btn-reject:hover {
  background: var(--accent);
  color: #FFF;
}
.cookie-consent-banner .btn-settings {
  background: transparent;
  color: var(--neon);
  border: 1.3px solid var(--neon);
}
.cookie-consent-banner .btn-settings:hover {
  background: var(--neon);
  color: #22313F;
}

/* == COOKIE MODAL == */
.cookie-modal {
  position: fixed;
  z-index: 9911;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #18202dc9;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.31s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #F7F2EB;
  color: #22313F;
  border-radius: 18px;
  padding: 38px 32px 26px 32px;
  min-width: 288px;
  max-width: 90vw;
  box-shadow: 0 6px 54px #13e4a866;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPopIn 0.29s cubic-bezier(.59,.84,.48,1.35);
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.85) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h3 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
  font-size: 1.05rem;
}
.cookie-modal-content input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--neon);
  border-radius: 8px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-content .cookie-modal-close:hover {
  color: var(--neon);
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal-content .btn-save {
  background: var(--neon);
  color: #161925;
}
.cookie-modal-content .btn-save:hover {
  background: var(--accent);
  color: #FFF;
}
.cookie-modal-content .btn-cancel {
  background: transparent;
  color: var(--accent);
  border: 1.2px solid var(--accent);
}
.cookie-modal-content .btn-cancel:hover {
  background: var(--accent);
  color: #FFF;
}

/* =======================================
   END OF CSS
   ======================================= */
