/*! 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;
  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;
  background: #10172A;
  color: #D5E6FA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0.5em;
  color: #F7B500;
  letter-spacing: 0.01em;
  font-weight: 700;
}


/*! FONTS */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold');
}

/*! BRAND COLORS */
:root {
  --primary: #233E74;
  --secondary: #D5E6FA;
  --accent: #F7B500;
  --bg: #10172A;
  --hero-bg: #182444;
  --card-bg: #1E2C50;
  --neon: #43F9DF;
  --error: #FC4349;
}

/*! LAYOUT: .container and structural paddings */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/*! SECTION SPACING & MANDATORY PATTERNS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 #13204e70;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover, .feature-item:hover, .cta-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 4px 32px 0 #09f0bd85, 0 0 0 2px var(--accent);
}
.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;
  background: #F8FAFE;
  border-radius: 16px;
  color: #233E74;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #16336C22;
  flex: 1 0 300px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 24px;
  min-width: 180px;
  box-shadow: 0 2px 12px #097a5d25;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
}
.feature-item:hover {
  border: 1.5px solid var(--neon);
  box-shadow: 0 8px 28px #43f9df38;
}

/*! HERO SECTION */
.hero {
  background: var(--hero-bg);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 10px 30px -10px #1c3763a8;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: var(--neon);
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 0 12px var(--neon), 0 2px 8px #000a;
  margin-bottom: 18px;
}
.hero p {
  color: var(--secondary);
  font-size: 1.18rem;
  margin-bottom: 22px;
  line-height: 1.55;
}

/*! CTA BUTTONS */
.cta, .cta.primary {
  display: inline-block;
  padding: 14px 38px;
  color: #10172A;
  background: var(--accent);
  border-radius: 8px;
  box-shadow: 0 4px 18px -8px #F7B50088;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, color 0.18s;
  outline: none;
  margin-top: 10px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD933;
  color: var(--primary);
  box-shadow: 0 6px 24px -5px #f7b500bb, 0 0 0 2.5px var(--neon);
}
.cta.secondary {
  background: var(--neon);
  color: #182444;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #82FFE2;
  color: #233E74;
}

/*! MAIN NAVIGATION */
header {
  width: 100%;
  background: #151C36;
  box-shadow: 0 2px 16px #222b4e10;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 12px #43f9df41);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--secondary);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  padding: 0 2px;
  transition: color 0.17s, border-bottom 0.15s;
  border-bottom: 2px solid transparent;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon);
  border-bottom: 2px solid var(--neon);
}

/*! MOBILE NAVIGATION (BURGER MENU) */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--neon);
  cursor: pointer;
  outline: none;
  margin-left: 18px;
  transition: color 0.13s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #10172Ae6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 24px 24px 24px;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.5,.01,0,1);
  z-index: 2001;
  box-shadow: 2px 0 28px #18244458;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: var(--accent);
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 22px;
  transition: color 0.1s;
  line-height: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: var(--neon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.16s;
  font-weight: 600;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #182444;
  color: var(--accent);
}
/*! RESPONSIVE NAV */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .cta.primary {
    display: none;
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/*! FEATURES GRID / ITEM */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 24px;
}
.features-grid .feature-item {
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 340px;
}
.features-grid .feature-item img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 4px var(--neon));
}

/*! TESTIMONIALS SLIDER/CARD */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 1.09rem;
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233E74;
}
.testimonial-card .testimonial-details strong {
  color: var(--primary);
  font-weight: 700;
}

/*! CTA BOX */
.cta-box {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 18px #43f9df33;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  border: 1.5px solid transparent;
  transition: box-shadow 0.2s, border 0.2s;
}
.cta-box h2 {
  color: var(--neon);
  font-size: 2rem;
  text-shadow: 0 0 8px var(--neon44);
  margin-bottom: 14px;
}
.cta-box:hover {
  border: 1.5px solid var(--neon);
  box-shadow: 0 6px 24px 0 #43f9df51;
}

/*! ABOUT PAGE VALUES/TIMELINE */
.about-values ul,
.about-timeline ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #a5c7ed;
  font-size: 1.08rem;
}
.about-values ul strong,
.about-timeline ul strong {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/*! FOOTER */
footer {
  width: 100%;
  background: #1A2540;
  color: var(--secondary);
  padding: 28px 0 8px 0;
  box-shadow: 0 -1px 18px #233e7488;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  min-height: 100px;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.footer-nav a {
  color: var(--secondary);
  font-size: 1.03rem;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--neon);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}

/*! TABLES */
.pricing-table {
  width: 100%;
  border-radius: 14px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: 0 2px 12px #43f9df22;
  margin-bottom: 30px;
}
.pricing-table th {
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}
.pricing-table td {
  color: var(--secondary);
  background: transparent;
  border-bottom: 1px solid #233E7444;
  font-size: 1.04rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/*! DL */
dt {
  color: var(--accent);
  font-size: 1.14rem;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 3px;
}
dd {
  color: var(--secondary);
  margin-bottom: 10px;
}

/*! TYPOGRAPHY */
h1 { font-size: 2.2rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.21rem; }
h4, h5, h6 { font-size: 1.02rem; }
p, ul, ol, li {
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #dbeafe;
}
strong { color: var(--accent); }
blockquote {
  color: #233E74;
  background: #eef5fa;
  padding: 14px 18px;
  border-left: 4px solid var(--neon);
  border-radius: 9px;
}
.text-section h2, .text-section h3, .text-section h4 {
  color: var(--accent);
}
.text-section p, .text-section ul, .text-section li {
  color: var(--secondary);
}

/*! CONTACT DETAILS */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li {
  color: #D5E6FA;
  font-size: 1.09rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details img {
  width: 21px;
  height: 21px;
}
.location-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  margin-top: 10px;
}

/*! THANKYOU BOX */
.thankyou-box {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 2px 16px #43f9df13;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.next-steps {
  background: #F8FAFE;
  color: #233E74;
  border-radius: 10px;
  padding: 10px 18px;
  margin: 8px 0 0 0;
  font-size: 1rem;
}

/*! UTILITY CLASSES */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }

/*! COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #111930fc;
  color: #D5E6FA;
  box-shadow: 0 -2px 22px #43f9df23;
  padding: 22px 12px 22px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1.04rem;
  transition: transform 0.3s;
}
.cookie-banner.closed {
  transform: translateY(140%);
}
.cookie-banner p {
  flex: 1 1 auto;
  margin-right: 12px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.cookie-btn,
.cookie-btn-primary,
.cookie-btn-secondary {
  display: inline-block;
  border-radius: 8px;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.16s;
  margin-left: 0;
}
.cookie-btn-primary {
  background: var(--accent);
  color: #21355f;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #FFD933;
}
.cookie-btn-secondary {
  background: var(--neon);
  color: #0e233f;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #82FFE2;
}
.cookie-btn {
  background: transparent;
  color: var(--neon);
  border: 1.5px solid var(--neon);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #43F9DF11;
  color: var(--accent);
}

/*! COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #15213cde;
  z-index: 3006;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #141d36;
  color: #D5E6FA;
  border-radius: 16px;
  padding: 34px 26px 26px 26px;
  min-width: 330px;
  max-width: 96vw;
  box-shadow: 0 8px 44px #43f9df33, 0 0 0 2px var(--neon);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 3010;
}
.cookie-modal h3 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1.27rem;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--neon);
  width: 18px;
  height: 18px;
}
.cookie-close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2.0rem;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.14s;
  z-index: 10;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  color: var(--neon);
}
.cookie-modal .cookie-save-btn {
  margin-top: 16px;
  background: var(--accent);
  color: #21355f;
  border-radius: 7px;
  border: none;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.17s;
}
.cookie-modal .cookie-save-btn:hover { background: #FFD933; }

/*! FORMS (if forms added) */
input[type="text"], input[type="email"], textarea {
  background: #162346;
  color: var(--secondary);
  border: 1.5px solid var(--neon);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 1em;
  transition: border 0.19s, box-shadow 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px #F7B50060;
}
button, input[type="submit"] {
  cursor: pointer;
}

/*! SCROLLBAR */
::-webkit-scrollbar {
  width: 11px;
  background: #171c34;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #233e74aa;
  border-radius: 9px;
}

/*! ANIMATIONS */
@keyframes neonGlow {
  0%, 100% { box-shadow: 0 0 12px var(--neon), 0 0 24px #09f0bd44 inset; }
  50% { box-shadow: 0 0 24px var(--neon), 0 0 30px #09f0bdd0 inset; }
}
.cta.primary, .cookie-btn-primary {
  animation: neonGlow 2.2s infinite alternate;
}

/*! RESPONSIVE & MOBILE-FIRST */
@media (max-width: 1024px) {
  .container, .content-wrapper {
    padding: 0 12px;
  }
  .features-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    gap: 0;
  }
  .footer-contact {
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 7px;
    margin-bottom: 39px;
  }
  .testimonials-slider {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact {
    width: 100%;
    font-size: 0.99rem;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .thankyou-box, .cta-box {
    padding: 20px 12px;
    font-size: 0.99rem;
  }
  .logo img {
    height: 30px;
  }
}

@media (max-width: 600px) {
  h1    { font-size: 1.5rem; }
  h2    { font-size: 1.18rem; }
  .hero {
    border-radius: 0 0 22px 22px;
    padding-bottom: 38px;
  }
  .footer-nav a {
    font-size: 0.99rem;
  }
  .cta.primary, .cta.secondary, .cookie-btn-primary, .cookie-btn-secondary {
    padding: 10px 17px;
    font-size: 1rem;
  }
}

/*! Z-INDEX LAYERS */
header { z-index: 50; }
.mobile-menu { z-index: 2001; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 3006; }

/*! PREVENT OVERLAP */
.card, .testimonial-card, .feature-item, .cta-box, .thankyou-box {
  margin-bottom: 20px;
}

/*! VISUAL ENHANCEMENT (NEON BORDER) */
.feature-item,
.card,
.cta-box {
  border: 1.5px solid transparent;
  box-shadow: 0 2px 12px #43f9df13;
}
.feature-item:focus-within,
.card:focus-within,
.cta-box:focus-within {
  border: 1.5px solid var(--neon);
}

/*! ERROR STATE */
.error {
  color: #FC4349;
  background: #251323;
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* END */
