/* --- CSS RESET & FOUNDATION --- */
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;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #181B38;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  background-attachment: fixed;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #15E2FD;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(.55,0,.1,1);
}
a:hover, a:focus {
  color: #F9C846;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #F9C846;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(21,226,253,0.12);
  margin-bottom: 18px;
  letter-spacing: 0.025em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.18rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.72;
  color: #fff;
}
strong {
  color: #15E2FD;
  font-weight: 700;
}

/* --- MAIN STRUCTURE & ARTISTIC LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(24, 27, 56, 0.97);
  border-radius: 32px;
  box-shadow: 0 6px 48px 0 rgba(21,226,253,0.07), 0 0px 1.5px 0 #15E2FD11;
  position: relative;
  overflow: visible;
}
@media (max-width: 900px){
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* =============== HEADER & NAVIGATION =============== */
header {
  width: 100%;
  background: #181B38;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 28px 0 #181b3888;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 11px 0;
  gap: 16px;
}
nav > a > img {
  height: 44px;
  aspect-ratio: 2.2 / 1;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 11px;
  border-radius: 14px;
  transition: background 0.22s, color 0.14s;
  position: relative;
}
nav ul li a:hover, nav ul li a.active {
  background: #15E2FD;
  color: #181B38;
  box-shadow: 0 2px 18px 0 #15E2FD55;
}
.cta-nav {
  margin-left: 20px;
  padding: 10px 28px;
  background: #F9C846;
  color: #181B38;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 28px;
  box-shadow: 0 2px 24px #F9C84655;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  text-transform: uppercase;
  transition: background 0.22s, color 0.14s, box-shadow 0.18s;
}
.cta-nav:hover, .cta-nav:focus {
  background: #15E2FD;
  color: #181B38;
  box-shadow: 0 4px 32px 0 #15E2FD55;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 205;
  font-size: 2.2rem;
  color: #F9C846;
  background: #181B38;
  padding: 8px 12px;
  border-radius: 9px;
  border: none;
  margin-left: 10px;
  transition: box-shadow 0.22s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  box-shadow: 0 0 10px #F9C846AA;
  background: #222553;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #181B38f0;
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(-120vw);
  transition: transform 0.34s cubic-bezier(.39,.37,.42,1.07);
  box-shadow: 0 0 68px 0 #15E2FD18;
}
.mobile-menu.open {
  transform: translateX(0);
  animation: slideIn-Menu 0.3s cubic-bezier(.39,.37,.42,1.07);
}
@keyframes slideIn-Menu {
  from { transform: translateX(-120vw); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 30px 18px 0;
  color: #F9C846;
  font-size: 2.3rem;
  background: none;
  border: none;
  padding: 0 6px;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #181B38bb;
  color: #15E2FD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 10vh;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 14px 38px;
  border-radius: 18px;
  background: rgba(21,226,253, 0.07);
  margin: 0 0 6px 0;
  text-align: center;
  transition: background 0.18s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9C846;
  color: #181B38;
}

@media (max-width: 960px) {
  nav ul,
  .cta-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px){
  .mobile-menu { display: none !important; }
}

/* ============= HERO & CREATIVE CTA ============== */
.cta,
.cta-nav {
  display: inline-block;
  background: #15E2FD;
  color: #181B38;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 32px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  box-shadow: 0 4px 28px #15E2FD33, 0 1px 2px #F9C84611;
  padding: 15px 38px;
  margin: 0 0 3px 0;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s, transform 0.1s;
  position: relative;
  overflow: hidden;
}
.cta:hover, .cta:focus {
  background: #F9C846;
  color: #181B38;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 38px #F9C84644, 0 2px 8px #15E2FD33;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
  margin-bottom: 8px;
  align-items: stretch;
}
.feature-grid > div {
  background: #181B38ee;
  border-radius: 24px;
  box-shadow: 0 2px 22px #15E2FD13;
  padding: 32px 22px 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid #15E2FD11;
  transition: transform 0.18s, background 0.18s, box-shadow 0.2s;
  margin-bottom: 12px;
  position: relative;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  transform: translateY(-4px) scale(1.025);
  background: #232756;
  box-shadow: 0 8px 44px #F9C84633;
  border-color: #F9C84699;
}
.feature-grid img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px #15E2FD55);
  margin-bottom: 4px;
}
.price {
  color: #F9C846;
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  color: #181B38;
  border-radius: 18px;
  box-shadow: 0 1.5px 18px #181B3880;
  border-left: 8px solid #15E2FD;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.7;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #15E2FD;
}
.testimonial-card span {
  color: #181B38;
  font-weight: 700;
  opacity: 0.68;
  margin-left: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 3px 28px #F9C84644;
  border-left: 8px solid #F9C846;
}
.testimonial-summary,
.progress-snapshot {
  color: #15E2FD;
  background: #181B38cc;
  border-radius: 12px;
  padding: 14px 22px;
  margin-top: 9px;
  font-size: 1.06rem;
  font-weight: 700;
  box-shadow: 0 6px 28px #15E2FD22;
}

/* --- CARDS (for future extensibility) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232756ee;
  border-radius: 18px;
  box-shadow: 0 2px 19px #F9C84613;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
}
.card:hover {
  box-shadow: 0 8px 44px #15E2FD33;
  transform: translateY(-3px) scale(1.019);
}

/* --- FLEX LAYOUTS & TEXT-IMAGE PAIRS --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 768px){
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TEXT SECTIONS & LINKS --- */
.text-section {
  background: #181B38e8;
  border-radius: 18px;
  padding: 24px 18px 20px 18px;
  box-shadow: 0 1.5px 9px #15E2FD19;
  margin-bottom: 18px;
}
.text-section h2,h3 {
  color: #F9C846;
}
.text-section p, .text-section ul, .text-section ol {
  color: #fff;
  margin-bottom: 0.5em;
}
.text-section a { color: #15E2FD; }
.text-section a:hover { color: #F9C846; }

/* ============== FOOTER ============== */
footer {
  width: 100vw;
  background: #181B38fa;
  padding: 36px 0 18px 0;
  color: #fff;
  border-top: 4px solid #15E2FD44;
  box-shadow: 0 -2px 22px #23275666;
  margin-top: 60px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
footer ul li a {
  color: #15E2FD;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 14px;
  transition: background 0.2s, color 0.12s;
}
footer ul li a:hover {
  background: #F9C846;
  color: #181B38;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.99rem;
}
.footer-contact strong {
  color: #F9C846;
  font-size: 1.05em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-right: 2px;
}
footer a > img {
  height: 40px;
  margin-bottom: 9px;
}
@media (max-width: 900px){
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
}

/* ============== RESPONSIVE DESIGN ============== */
@media (max-width: 700px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.08rem; }
  .content-wrapper { gap: 14px; }
  .section { margin-bottom: 32px; padding: 18px 3vw; }
  .feature-grid { gap: 15px; }
  .feature-grid > div, .card {
    min-width: 136px; max-width: 100%; padding: 17px 10px 17px 10px;
  }
  .testimonial-card { padding: 13px; gap: 10px; font-size: 1rem; }
  .testimonial-card span { margin-left: 3px; }
  .content-grid { gap: 8px; }
}

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-consent-banner {
  position: fixed;
  z-index: 501;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 16px 16px 16px;
  background: #232756ea;
  color: #fff;
  box-shadow: 0 -4px 38px #15E2FD33, 0 -1px 2px #F9C84611;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieIn 0.4s cubic-bezier(.23,.99,.39,1.18);
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0 }
  to   { transform: translateY(0); opacity: 1 }
}
.cookie-message {
  flex: 2 1 340px;
  line-height: 1.7;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: #F9C846;
  color: #181B38;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.03em;
  border: none;
  border-radius: 20px;
  padding: 9px 27px;
  margin: 0 10px 0 0;
  cursor: pointer;
  box-shadow: 0 2px 12px #F9C84633;
  transition: background 0.22s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.settings {
  background: #15E2FD;
  color: #181B38;
  font-weight: 700;
  font-size: 0.99em;
}
.cookie-btn.reject {
  background: transparent;
  border: 2px solid #15E2FD;
  color: #15E2FD;
  font-weight: 700;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #181B38;
  color: #F9C846;
  box-shadow: 0 4px 24px #15E2FD22;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #181B38;
  color: #15E2FD;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9C846;
  color: #181B38;
  border-color: #F9C846;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 502;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #181B38d3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.35s cubic-bezier(.27,.86,.48,1.17);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #181B38;
  border-radius: 22px;
  box-shadow: 0 6px 44px #15E2FD22, 0 1.5px 2.5px #F9C84633;
  padding: 38px 22px 26px 28px;
  min-width: 330px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: dropInCookieModal 0.29s cubic-bezier(.1,.81,.53,1.12);
}
@keyframes dropInCookieModal {
  from { transform: translateY(-60px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.cookie-modal-content h2 {
  color: #15E2FD;
  font-size: 1.3rem;
}
.cookie-modal-close {
  align-self: flex-end;
  background: #F9C846;
  color: #181B38;
  border: none;
  border-radius: 16px;
  font-size: 1.4em;
  padding: 6px 14px;
  margin-bottom: -16px;
  cursor: pointer;
  margin-top: -26px;
  transition: background 0.19s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #181B38;
  color: #F9C846;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 19px 0 8px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f4f7fa;
  border-radius: 12px;
  padding: 13px 18px;
}
.cookie-category.essential label {
  color: #181B38;
  font-weight: 700;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  margin-right: 2px;
  accent-color: #15E2FD;
}
.cookie-category .essential-badge {
  background: #15E2FD;
  color: #fff;
  font-size: 0.89em;
  letter-spacing: 0.02em;
  padding: 2px 9px 2px 9px;
  border-radius: 12px;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-top: 18px;
  margin-bottom: 2px;
}

@media (max-width: 600px){
  .cookie-modal-content { min-width: 0; padding: 17px 4vw 17px 5vw; }
  .cookie-modal-categories { gap: 10px; }
}

/* ============== MICRO-ANIMATIONS / ARTISTIC EFFECTS ============== */
.cta, .cta-nav, .feature-grid > div, .card, .testimonial-card, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.2s, color 0.16s, box-shadow 0.19s, transform 0.11s, border-color 0.2s;
}
.cta:active, .cta-nav:active {
  transform: scale(0.97);
}
.feature-grid > div:active { transform: scale(0.98); }

/* --- Artistic Decorative --- */
.section:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -40px;
  left: 3vw;
  width: 90px;
  height: 22px;
  background: #15E2FD;
  filter: blur(20px) opacity(0.23);
  border-radius: 20px;
  pointer-events: none;
}
.section:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -40px;
  right: 2vw;
  width: 44px;
  height: 14px;
  background: #F9C846;
  filter: blur(14px) opacity(0.12);
  border-radius: 30px;
  pointer-events: none;
}

/* --- Artistic Font Alternates for Highlight (example on hero) --- */
main h1 span, main h2 span, .highlight {
  color: #15E2FD;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
}

/* --- MISCELLANEOUS & UTILITY CLASSES --- */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }
.bold { font-weight: 700; }

/* --- Ensure all space / gaps are present --- */
section:not(:last-child) { margin-bottom: 60px; }

/* --- Accessibility: highlight focus --- */
a, button, .cta:focus, .cta-nav:focus, .cookie-btn:focus {
  outline: 2px solid #15E2FD80;
  outline-offset: 1px;
}

/* --- Scrollbar Styling (Webkit) for Neon look --- */
body::-webkit-scrollbar { width: 10px; background: #181B38; }
body::-webkit-scrollbar-thumb {
  background: #15E2FD80;
  border-radius: 18px;
  border: 2px solid #181B38;
}
body::-webkit-scrollbar-thumb:hover { background: #F9C846B8; }

/* --- Hide elements until display is enabled --- */
.cookie-modal, .mobile-menu { display: none; }
.mobile-menu.open, .cookie-modal.open { display: flex !important; }

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