/* =========================================================
   Clear Sails Exchange – ELEGANT_CLASSIC FLEXBOX CSS
   Author: Senior CSS Developer & UI Designer
   ========================================================= */

/* ================= BASIC RESET & NORMALIZE ================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F6F9;
  color: #232138;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s;
}
:focus {
  outline: 2px solid #6F43DF;
  outline-offset: 2px;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #6F43DF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:active {
  color: #24C8FF;
  text-decoration: underline;
}
button, .btn-primary {
  font-family: inherit;
  cursor: pointer;
}
ul, ol {
  padding-left: 1.4em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #E5E5EE;
}


/* =================== BRAND FONTS & DISPLAY ===================== */
@font-face {
  font-family: 'Orbitron';
  font-weight: 700;
  src: local('Orbitron Bold'), local('Orbitron-Bold');
}
h1, .hero h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #181640;
}
h1, .hero h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

/* ========================= SPACING ========================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(90,80,120,0.07);
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.16s;
  flex: 1 1 300px;
  min-width: 270px;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(70,52,99,0.15);
  transform: translateY(-2px) scale(1.005);
  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-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #232138;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(60,52,99,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  min-width: 280px;
  max-width: 400px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  position: relative;
}
.user-quote {
  font-style: italic;
  font-size: 1.12rem;
  color: #414066;
  flex: 1 1 100%;
}
.user-info {
  margin-top: 12px;
  font-size: 0.97rem;
  font-weight: 500;
  color: #6F43DF;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  justify-content: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div {
  background: #FAFAFD;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 2px 7px 0 rgba(70,52,99,0.06);
  flex: 1 1 250px;
  min-width: 200px;
  transition: box-shadow 0.25s;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 16px 0 rgba(39,24,84,0.13);
}
.feature-grid img {
  height: 36px;
  margin-bottom: 18px;
}

/* ========== CTA SECTION ========== */
.cta {
  background: #f2f2f8;
  border-radius: 18px;
  margin: 80px 0 0 0;
  box-shadow: 0 2px 20px 0 rgba(60,52,99,0.06);
  padding: 50px 0 45px 0;
}
.cta .content-wrapper {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta h2 {
  margin-bottom: 12px;
  color: #19181f;
}
.cta ul {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
  color: #564ac8;
  font-weight: 500;
  font-size: 1.1rem;
  list-style: disc inside;
}
/* ========== SERVICE CARD ========== */
.service-card {
  background: #f7f7fa;
  border: 1px solid #ebeaf6;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(70,43,99,0.07);
  flex: 1 1 270px;
  padding: 30px 22px 22px 22px;
  transition: box-shadow 0.18s, border 0.18s;
  margin-bottom: 20px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  box-shadow: 0 4px 20px 0 rgba(60,52,99,0.13);
  border-color: #b2a7f0;
}

/* ========== CARDS INSIDE GRIDS ========== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(96deg, #F8F8FE 46%, #ECECF5 100%);
  border-radius: 0 0 32px 32px;
  padding: 60px 0 40px 0;
  min-height: 300px;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero p {
  font-size: 1.19rem;
  color: #463f72;
  margin-bottom: 12px;
  max-width: 500px;
}
.hero .btn-primary {
  margin-top: 12px;
}

/* ========== ANIMATED / DECORATIVE EFFECTS ========== */
.animated-bg-effect,
.animated-graph,
.market-trends-infographic {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 180px;
  opacity: 0.16;
  z-index: 1;
}
.animated-bg-effect { background: radial-gradient(ellipse at 80% 40%, #6F43DF 0%, rgba(111,67,223,0.12) 80%);  }
.animated-graph { background: linear-gradient(120deg, #6F43DF 50%, #fff0 100%); bottom: 0; }
.market-trends-infographic { background: linear-gradient(120deg, #24C8FF 40%, #fff0 100%); bottom: 0; top: auto; }

@media (max-width:600px) {
  .animated-bg-effect,
  .animated-graph,
  .market-trends-infographic {
    display:none;
  }
}

/* ========== TABLES, PRICING ========== */
.pricing-table {
  background: #F8F8FD;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(70,52,99,0.07);
  padding: 30px 18px;
  flex: 1 1 340px;
  min-width: 290px;
  margin-bottom: 24px;
  overflow-x: auto;
}
.pricing-table table thead th {
  background: #e7e6f7;
  border-radius: 2px 2px 0 0;
  color: #4b2e98;
  font-weight: 600;
  font-size: 1.1em;
}
.fee-comparison {
  background: #F7F7FA;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(111,67,223,0.04);
  margin-top: 20px;
  padding: 18px 22px;
  flex: 1 1 220px;
  min-width: 210px;
}
.fee-comparison li {
  color: #5540bb;
}
.feature-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
}


/* ========== ADDRESS, CONTACT, SUPPORT ========== */
.address-info, .phone-email-info, .support-hours, .service-pledge {
  background: #F7F7FA;
  border-radius: 10px;
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 210px;
  box-shadow: 0 1px 4px rgba(111,67,223,0.05);
  margin-bottom: 20px;
}
.address-info h3, .phone-email-info h3, .support-hours h3, .service-pledge h3 {
  margin-bottom: 9px;
}


/* ========== FOOTER ========== */
footer {
  background: #EFF0F7;
  padding: 40px 0 30px 0;
  margin-top: 70px;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-navigation a {
  color: #4b2e98;
  font-weight: 600;
  transition: color .18s;
}
.footer-navigation a:hover {
  color: #24C8FF;
}
.contact-brief-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  color: #18153b;
  font-size: 1rem;
}
.contact-brief-info img {
  width: 32px;
  margin-right: 10px;
  vertical-align: middle;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.legal-mentions {
  font-size: 0.86rem;
  color: #4b2e98;
  opacity: 0.84;
  letter-spacing: 0.02em;
  margin-top: 10px;
}


/* ============================================================
                       BUTTONS, LINKS, FORM
   ========================================================== */
.btn-primary {
  background: #6F43DF;
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 12px 28px;
  font-size: 1.11rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(111,67,223,0.12);
  transition: background 0.17s, box-shadow 0.17s, transform 0.14s;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 4px;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #24C8FF;
  color: #fff;
  box-shadow: 0 4px 15px rgba(36,200,255,0.17);
  transform: translateY(-2px) scale(1.03);
}
button {
  border: none;
  background: none;
  padding: 0;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #CEC7F6;
  background: #FAFAFD;
  color: #232138;
  padding: 10px 13px;
  margin-bottom: 12px;
  transition: border-color .18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #6F43DF;
}
form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #3d3866;
}
.form-field {
  margin: 0 0 20px 0;
}
.registration-form {
  background: #fafafd;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(63,45,100,0.06);
  padding: 36px 28px 24px 28px;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.registration-form button[type='submit'] {
  margin-top: 16px;
}

/* ===================== BLOCKQUOTES, FAQ ===================== */
blockquote {
  border-left: 3.5px solid #6F43DF;
  color: #45358c;
  background: #f5f3fd;
  font-style: italic;
  padding: 18px 20px 18px 24px;
  margin-bottom: 16px;
  margin-right: 0;
  border-radius: 8px;
}
.explainer-callout {
  background: #e1f5fa;
  color: #213555;
  border-radius: 8px;
  padding: 20px 22px;
  font-size: 1.08rem;
  font-style: italic;
  box-shadow: 0 1px 5px rgba(36,200,255,0.10);
  margin-bottom: 20px;
}
.faq-list {
  background: #f8f7fd;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(70,52,99,0.08);
  padding: 22px 18px;
  flex: 1 1 320px;
  min-width: 250px;
  margin-bottom: 24px;
}
.faq-list h3 {
  color: #6F43DF;
  margin-bottom: 8px;
}
.faq-list li {
  margin-bottom: 12px;
  color: #41397b;
}

/* ===================== TIMELINE & MISSIONS ================== */
.timeline {
  background: #F7F7FA;
  border-radius: 10px;
  padding: 18px 18px;
  box-shadow: 0 1px 5px #d7d4ec44;
  margin-bottom: 20px;
  color: #41397a;
  font-size: 1.06em;
}
.mission-statement {
  background: #F2F6F8;
  border-radius: 10px;
  padding: 18px 18px;
  box-shadow: 0 1px 5px #d7d4ec44;
  color: #3d4162;
  margin-bottom: 20px;
}
.founders-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

/* ===================== MISCELLANEOUS ======================= */
.info-box {
  background: #E8F1FA;
  border-left: 4px solid #24C8FF;
  padding: 23px 20px;
  border-radius: 11px;
  margin: 18px 0 30px 0;
  color: #3a478e;
  font-size: 1.11em;
  box-shadow: 0 2px 9px rgba(36,200,255,0.10);
}
.text-section {
  flex: 1 1 320px;
  background: #f9f9fd;
  border-radius: 12px;
  box-shadow: 0 1px 6px #d7d4ec25;
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
}
.live-market-table {
  background: #f8f8fd;
  border-radius: 10px;
  box-shadow: 0 1px 6px #d7d4ec22;
  padding: 22px 18px;
  min-width: 240px;
  flex: 1 1 350px;
}
.live-market-table h3 {
  margin-bottom: 9px;
}
.price-tickers {
  display: flex;
  gap: 14px;
  font-weight: 600;
  color: #191853;
  margin-top: 10px;
  flex-wrap: wrap;
}
.filter-options {
  background: #f7f7fd;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.98em;
  color: #484678;
  margin-bottom: 8px;
}

/* ===================== MOBILE MENU ========================= */
.mobile-menu-toggle {
  display: none;
  background: #6F43DF;
  border-radius: 7px;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 1px 8px rgba(111,67,223,0.15);
  margin-left: auto;
  z-index: 1001;
  transition: background 0.2s;
  position: relative;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #24C8FF;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #f7f8fc;
  z-index: 9900;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.44,.15,.39,.97);
  box-shadow: -2px 0 18px 0 rgba(22,13,53,0.19);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #181640;
  background: none;
  padding: 21px 22px 14px 18px;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  z-index: 9902;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 38px 36px;
  flex:1;
}
.mobile-nav a {
  color: #6F43DF;
  background: none;
  font-size: 1.37rem;
  padding: 12px 6px;
  border-radius: 7px;
  font-weight: 600;
  transition: background .16s, color .16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ece9fa;
  color: #232151;
}
@media (max-width:1000px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width:1000px) {
  header .container {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (min-width:1001px) {
  .mobile-menu {
    display: none !important;
  }
  nav {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .mobile-menu-toggle {
    display:none !important;
  }
}

/* =========== HEADER, NAV, LOGO ============ */
header {
  background: #F8F7FC;
  border-bottom: 1px solid #e6e1f3;
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 20px;
}
header img[alt='Clear Sails Exchange'] {
  height: 37px;
}
nav a {
  color: #4b2e98;
  font-weight: 600;
  margin-right: 12px;
  font-size: 1.09em;
  border-radius: 7px;
  padding: 6px 18px;
  transition: background .16s, color .16s;
  display: inline-block;
}
nav a:last-child {
  margin-right: 0;
}
nav a:hover, nav a:focus {
  background: #ece9fa;
  color: #232151;
}
nav .btn-primary {
  margin-left: 15px;
}


/* =========== RESPONSIVE FLEX DIRECTION ADJUSTMENTS =========== */
@media (max-width: 900px) {
  .content-wrapper,
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 32px 5px;
  }
  .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .client-logos {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .content-wrapper,
  .feature-grid,
  .card-container,
  .content-grid,
  .testimonial-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 3vw;
  }
  .card, .service-card, .feature-grid>div, .testimonial-card,
  .pricing-table, .faq-list, .fee-comparison, .live-market-table, .info-box, .mission-statement, .timeline {
    min-width: unset;
    max-width: 100vw;
  }
  .client-logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cta {
    padding: 30px 0 28px 0;
  }
}

/* ======= REMOVE SCROLL on BODY when mobile menu/cookie open ======= */
body.mobile-menu-open,
body.modal-open {
  overflow: hidden;
}

/* =============== COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fffbe4;
  box-shadow: 0 -2px 28px rgba(60,42,99,0.09);
  border-top: 1.8px solid #e6e1c7;
  color: #453A15;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 18px 24px;
  font-size: 1.07rem;
  flex-wrap: wrap;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.4,1.21,.54,1) 0s 1;
  transition: bottom 0.2s;
}
@keyframes cookieBannerSlideIn {
  0% {transform: translateY(90px); opacity: 0;}
  80% {transform: translateY(-12px);}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner button, .cookie-banner .btn-primary {
  margin-left: 8px;
  margin-right: 2px;
  font-size: 1rem;
  box-shadow: none;
  padding: 8px 20px;
  border-radius: 7px;
  font-weight: 600;
  background: #6F43DF;
  color: #fff;
  border: none;
  transition: background 0.15s;
}
.cookie-banner button[aria-current],
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #24C8FF;
  color: #232138;
}
.cookie-banner .cookie-settings-btn {
  background: #ece9fa;
  color: #463e82;
  border: 1px solid #c9bee7;
  margin-left: 8px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #e4f9fd;
  color: #232138;
}
@media (max-width:480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 13px 7px;
    gap: 13px;
  }
}

/* =============== COOKIE SETTINGS MODAL ================ */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 35, 64, 0.47);
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .35s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 50px 6px rgba(111,67,223,0.10);
  width: 95vw;
  max-width: 410px;
  padding: 32px 24px 26px 26px;
  position: relative;
  z-index: 10030;
  animation: modalPopIn 0.36s cubic-bezier(.52,.13,.63,1.18);
}
@keyframes modalPopIn {
  0% { transform: scale(0.95); opacity: 0; }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 16px 0;
}
.cookie-modal-category {
  background: #f5f3fd;
  border-radius: 7px;
  padding: 13px 9px 11px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: #232138;
  font-weight: 500;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #6F43DF;
  width: 18px; height: 18px;
  margin-right: 0;
}
.cookie-modal-category label {
  margin: 0;
  font-weight: 500;
  color: #44397e;
}
.cookie-modal-category.essential label {
  color: #c18e09;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 8px;
  padding: 9px 18px;
  border: none;
  font-weight: 600;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal-actions .btn-primary {
  background: #6F43DF;
  color: #fff;
}
.cookie-modal-actions .btn-primary:hover {
  background: #24C8FF;
  color: #232138;
}
.cookie-modal-actions .btn-secondary {
  background: #ece9fa;
  color: #463e82;
  border: 1px solid #c9bee7;
}
.cookie-modal-actions .btn-secondary:hover {
  background: #e4f9fd;
  color: #232138;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 14px;
  background: none;
  color: #373472;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 7px;
  z-index: 10031;
  line-height: 1;
}

@media (max-width:540px) {
  .cookie-modal {
    padding: 16px 6px 12px 8px;
  }
}

/* ================== ACCESSIBILITY: HIDDEN FOR ARIA ================== */
[aria-hidden="true"] {
  pointer-events: none;
  user-select: none;
}

/* ========== CARD/SECTION MINIMUM SPACING RULES ========== */
.card-container > *, .feature-grid > *, .content-grid > *, .testimonial-grid > *, .service-card {
  margin-bottom: 20px;
}

/* =================== PRINT ======================= */
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .mobile-menu-toggle {
    display: none !important;
  }
  header, footer, .hero, .cta, .btn-primary {
    background: none !important;
    box-shadow: none !important;
  }
}
