/*========================
  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, 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;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  background: #101223;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #F3D232;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #29d8fc;
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: #1A64CE;
  color: #fff;
}

/*==============================
  TYPOGRAPHY & BRAND FONTS
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Open Sans', Arial, sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1;
}
p, li, strong, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.13rem;
  color: #F3D232;
  margin-bottom: 24px;
  font-weight: 500;
}
strong {
  color: #F3D232;
}

/*========================
  LAYOUT CONTAINERS
========================*/
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section:last-child {
  margin-bottom: 0;
}

/*=======================================
  TECH FUTURISTIC BACKGROUNDS/NEONS
=======================================*/
.hero {
  background: linear-gradient(135deg, #1A64CE 0%, #131334 100%);
  box-shadow: 0 8px 36px 0 rgba(26,100,206,0.09);
  border-radius: 0 0 32px 32px;
  padding-top: 32px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  text-shadow: 0 0 16px #1A64CE99;
}
.hero .cta-btn {
  margin-top: 16px;
}

body {
  background-color: #131334;
  background-image: linear-gradient(120deg, #171955 0%, #1A64CE 80%);
}

/**************************************************
  HEADER & NAV STYLES
***************************************************/
header {
  background: rgba(19,19,52,0.98);
  box-shadow: 0 2px 20px 0 rgba(26,100,206,0.13);
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px #29d8fc55);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F3D232;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.02em;
  transition: color .18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #1A64CE;
  border-radius: 2px;
  width: 0%;
  transition: width .30s cubic-bezier(.22,.61,.36,1);
  margin-top: 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #29d8fc;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

.cta-btn {
  background: #1A64CE;
  color: #fff;
  font-family: 'Baloo 2', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 12px #29d8fc44, 0 0 0 0 #1A64CE00;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .22s, color .14s, box-shadow .18s;
  margin-left: 18px;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #29d8fc;
  color: #131334;
  box-shadow: 0 2px 18px #29d8fc88, 0 0 8px #1A64CE66;
}

.cta-link {
  color: #29d8fc;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.09rem;
}
.cta-link:hover, .cta-link:focus {
  color: #F3D232;
}

/********************
  FLEX LAYOUT UTILS
 *******************/
.feature-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.feature-grid > div {
  background: #171b35;
  border-radius: 18px;
  box-shadow: 0 4px 28px #1A64CE23, 0 1px 0 #29d8fc12;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 22px 20px 22px;
  transition: box-shadow .22s, border-color .18s, transform .16s;
  min-width: 220px;
}
.feature-grid > div img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 0 8px #29d8fc91);
  margin-bottom: 10px;
}
.feature-grid > div h3 {
  color: #F3D232;
  font-size: 1.18rem;
  margin-bottom: 2px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 8px 40px #1A64CE66, 0 0 0 3px #29d8fc45;
  transform: translateY(-2px) scale(1.022);
  border-color: #29d8fc;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #1B2140;
  border-radius: 15px;
  box-shadow: 0 4px 18px #29d8fc1a;
  position: relative;
  padding: 24px;
  transition: box-shadow .2s, transform .14s;
  min-width: 220px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px #1A64CE33, 0 0 0 3px #29d8fc40;
  transform: translateY(-2px) scale(1.018);
}

.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-badges, .brand-ratings, .brand-logos, .highlight-stats, .fashion-highlights {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.trust-badges img, .brand-ratings img, .brand-logos img, .highlight-stats img, .fashion-highlights img {
  height: 28px;
  width: 28px;
  filter: drop-shadow(0 0 6px #F3D232aa);
}
.trust-badges span, .brand-logos, .brand-ratings span {
  font-size: 0.99rem;
  font-weight: 500;
  color: #F3D232;
}

/****************************************
  TESTIMONIALS SECTION - HIGH CONTRAST
*****************************************/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #171955;
  border-radius: 16px;
  box-shadow: 0 2px 18px #1A64CE19, 0 0 0 3px #F3D23233;
  min-width: 230px;
  flex: 1 1 250px;
  transition: box-shadow .21s, transform .19s;
}
.testimonial-card strong {
  color: #1A64CE;
  font-size: 1.02rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px #F3D23255, 0 0 0 4px #1A64CE33;
  transform: translateY(-1px) scale(1.019);
}

/*************************************
  SERVICES & FEATURE ITEMS
*************************************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 30px 0 30px 0;
}
.service-item, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #1B2140;
  border-radius: 13px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px #1A64CE19;
  flex: 1 1 260px;
  min-width: 215px;
  transition: box-shadow .2s, transform .14s;
  margin-bottom: 20px;
}
.service-item:hover, .feature-item:hover, .service-item:focus-within, .feature-item:focus-within {
  box-shadow: 0 12px 36px #1A64CE33, 0 0 0 3px #F3D23240;
  transform: translateY(-2px) scale(1.013);
}

/*************************
  TABLE STYLING
**************************/
.service-pricing {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #181C35;
  border-radius: 10px;
  overflow: hidden;
  margin: 30px 0 22px 0;
  box-shadow: 0 2px 12px #1A64CE15;
}
.service-pricing th, .service-pricing td {
  padding: 14px 16px;
  text-align: left;
}
.service-pricing th {
  background: #1A64CE;
  color: #fff;
  font-weight: 700;
}
.service-pricing tr:nth-child(even) td {
  background: #1B2140;
}
.service-pricing tr td {
  border-bottom: 1px solid #232860;
  font-size: 1.02rem;
  color: #F3D232;
}
.service-pricing tr:last-child td {
  border-bottom: none;
}

/**********************
  BRAND RATINGS
**********************/
.brand-ratings ul, .highlight-stats ul, .fashion-highlights ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.brand-ratings li, .highlight-stats li, .fashion-highlights li {
  background: #1A64CE33;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 0.97rem;
  color: #F3D232;
  display: flex;
  align-items: center;
  gap: 7px;
}

/**********************
  PROFILE CARDS
**********************/
.consultant-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.profile-card {
  background: #1A64CE12;
  border-radius: 13px;
  padding: 16px 18px;
  color: #F3D232;
  font-size: 0.99rem;
  font-weight: 500;
  box-shadow: 0 2px 10px #29d8fc11;
}

/************************
  FOOTER STYLES
*************************/
footer {
  background: linear-gradient(90deg, #1A64CE 0%, #131334 100%);
  color: #F3D232;
  padding-top: 28px;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 38px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #F3D232;
  font-size: 1rem;
  opacity: 0.87;
  transition: color .15s, opacity .14s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-contact strong {
  color: #F3D232;
}
.footer-bottom {
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  background: #15163b;
  padding: 12px 0 12px 0;
  letter-spacing: 0.02em;
}

/************************
  MOBILE NAVIGATION
*************************/
.mobile-menu-toggle {
  display: none;
  background: #1A64CE;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 8px 20px 8px 14px;
  font-size: 1.35rem;
  box-shadow: 0 4px 22px #1A64CE30;
  margin-left: 18px;
  transition: background .22s;
  z-index: 1501;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #29d8fc;
  color: #131334;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 340px;
  max-width: 96vw;
  background: linear-gradient(105deg, #131334 85%, #1A64CE 100%);
  box-shadow: 3px 0 50px #29d8fc11, 0 2px 30px #1A64CE33;
  z-index: 1500;
  transform: translateX(-120%);
  transition: transform .33s cubic-bezier(.77,0,.21,1);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F3D232;
  color: #131334;
  border: none;
  font-size: 1.4rem;
  border-radius: 12px;
  padding: 5px 14px;
  cursor: pointer;
  margin-bottom: 14px;
  box-shadow: 0 2px 11px #29d8fc26;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1A64CE;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: #F3D232;
  font-size: 1.15rem;
  font-family: 'Baloo 2', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 10px;
  transition: background .14s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1A64CE;
  color: #fff;
}
.mobile-menu:after {
  /* Neon accent */
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  top: 12px;
  width: 5px;
  height: 85%;
  background: #29d8fc;
  border-radius: 10px;
  filter: blur(2px) brightness(1.5);
  opacity: 0.7;
}

/*****************************
  COOKIE CONSENT BANNER
******************************/
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1A64CE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 18px 18px 18px;
  z-index: 1800;
  box-shadow: 0 -4px 24px #1A64CE55;
  font-size: 1rem;
  animation: cookieSlideUp .5s cubic-bezier(.17,.67,.53,1.15);
}
@keyframes cookieSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
#cookie-banner p {
  margin-right: 20px;
  font-size: 1rem;
  color: #fff;
}
#cookie-banner .cookie-btn {
  background: #fff;
  color: #1A64CE;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  margin-right: 9px;
  font-family: 'Baloo 2', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 10px #fff2, 0 0 0 #0000;
  transition: background .2s, color .16s, box-shadow .2s;
}
#cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
#cookie-banner .cookie-btn:hover, #cookie-banner .cookie-btn:focus {
  background: #29d8fc;
  color: #fff;
  box-shadow: 0 2px 18px #1A64CE44;
}
#cookie-banner .cookie-settings-btn {
  background: #F3D232;
  color: #131334;
}
#cookie-banner .cookie-settings-btn:hover, #cookie-banner .cookie-settings-btn:focus {
  background: #1A64CE;
  color: #fff;
}

/************************************
  COOKIE SETTINGS MODAL/POPUP
*************************************/
#cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgba(19,19,52,0.92);
  z-index: 1900;
  transition: opacity .2s;
}
#cookie-modal.open {
  display: flex;
  animation: modalFadeIn .32s cubic-bezier(.22,.74,.33,1.2);
}
@keyframes modalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
#cookie-modal .modal-content {
  background: #fff;
  color: #131334;
  border-radius: 18px;
  box-shadow: 0 4px 32px #1A64CE33;
  max-width: 340px;
  width: 95vw;
  padding: 28px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
#cookie-modal .modal-content h3 {
  color: #1A64CE;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 13px 0;
}
#cookie-modal .cookie-category label {
  font-family: 'Open Sans', sans-serif;
  color: #171955;
  font-size: 1rem;
}
#cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: #1A64CE;
  width: 21px;
  height: 21px;
}
#cookie-modal .cookie-category .always-on {
  color: #29d8fc;
  font-size: 0.98rem;
  margin-left: 9px;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 14px;
}
#cookie-modal .cookie-btn {
  background: #1A64CE;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-family: 'Baloo 2', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .13s;
}
#cookie-modal .cookie-btn:hover, #cookie-modal .cookie-btn:focus {
  background: #29d8fc;
  color: #131334;
}
#cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #F3D232;
  color: #131334;
  border: none;
  border-radius: 13px;
  padding: 4px 12px;
  font-size: 1.1rem;
  cursor: pointer;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  background: #1A64CE;
  color: #fff;
}

/****************
  MISC ELEMENTS
*****************/
.location-map {
  margin-top: 16px;
  font-style: italic;
  font-size: 1.02rem;
  color: #29d8fc;
}
.product-category-description {
  margin-top: 14px;
  margin-bottom: 22px;
}
.fashion-highlights ul {
  margin-top: 0;
  margin-bottom: 0;
}

/******************************************************
  RESPONSIVE DESIGN - MOBILE FIRST APPROACH
*******************************************************/
@media (max-width: 1100px) {
  .feature-grid, .service-list, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 26px;
  }
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 66px;
    height: auto;
    gap: 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 10px;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-list, .testimonial-list, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-grid > div, .service-item, .card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    padding: 16px 4vw;
    margin-bottom: 24px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
  .container {
    padding: 0 4vw;
  }
  body, html {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.10rem;
  }
  .hero {
    padding-top: 15px;
    padding-bottom: 16px;
    border-radius: 0 0 22px 22px;
  }
  .main-nav {
    display: none !important;
  }
  .container {
    padding: 0 2vw;
  }
}

/*=======================*
  UTILITIES & OVERRIDES
*========================*/
.gap-16 {
  gap: 16px !important;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.hide { display: none !important; }

/*==========
 Spacing for bullet lists and ul/ol/strong  
 ==========*/
ul, ol {
  margin: 12px 0 12px 22px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/*****************************************
  MICRO-INTERACTIONS & TRANSITIONS
*****************************************/
button, .cta-btn, .card, .feature-grid > div, .testimonial-card, .service-item, .feature-item {
  transition: box-shadow .19s, background .17s, color .15s, transform .16s;
}

/*********************************************/