/* ======================
   CSS 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;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  background: #181C2C;
  color: #F7F7FA;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #181C2C;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #9DAAF2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF6A3D;
}
strong {
  font-weight: 700;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
input, button, textarea {
  font-family: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F7F7FA;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(36,98,223,.13);
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; margin-bottom: 10px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; }
.subheadline {
  color: #9DAAF2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

/* ===========================
   LAYOUT STRUCTURE & SECTION 
   =========================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #21283B;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(20,40,90,0.13);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* =========================
   HEADER & MAIN NAVIGATION
   ========================= */
header {
  background: #181C2C;
  box-shadow: 0 2px 16px rgba(26,34,56,0.09);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 44px;
  filter: drop-shadow(0 4px 14px #22284350);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #D4DCFF;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 10px 0;
  letter-spacing: 0.06em;
  position: relative;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FF6A3D;
  border-color: #FF6A3D;
}
.cta.primary {
  color: #fff;
  background: linear-gradient(90deg, #FF6A3D 77%, #EE3953 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 22px 0 #ff6a3d45;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-left: 16px;
  text-shadow: 0 2px 12px #181c2c88;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #EE3953 65%, #FF6A3D 100%);
  transform: translateY(-2px) scale(1.03);
}

/* =======================
   MOBILE NAVIGATION MENU
   ======================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FF6A3D;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FF6A3D;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(15,18,36,0.98);
  z-index: 4000;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 18px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideMobileMenuIn 0.45s cubic-bezier(.7,0,.36,1) 1;
}
@keyframes slideMobileMenuIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FF6A3D;
  font-size: 2.2rem;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  color: #EEF2FF;
  font-size: 1.35rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 0 10px 2px;
  border-left: 4px solid #191F35;
  border-radius: 4px;
  letter-spacing: 0.08em;
  transition: border-color 0.23s, color 0.19s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF6A3D;
  border-color: #FF6A3D;
  background: #21283B;
}

/* ===============
   HERO SECTION
   =============== */
main > section:first-child {
  background: linear-gradient(120deg, #1A2238 85%, #FF6A3D11 100%);
  min-height: 320px;
  margin-top: 0;
}
main > section:first-child .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}

/* ================
   SECTION SPACING
   ================ */
section:not(:last-child) {
  margin-bottom: 60px;
}

/* ================
   FLEX CONTAINERS
   ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  background: #222843;
  box-shadow: 0 2px 18px 0 #1a22386b;
  overflow: hidden;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 42px 0 #FF6A3D44, 0 2px 18px 0 #1a22386b;
  transform: translateY(-3px) scale(1.02);
}
.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;
  margin-top: 18px;
}
.testimonial-card {
  background: #F3F7FF;
  color: #1A2238;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 44px 0 #9DAAF21e, 0 2px 12px #181C2C14;
  font-size: 1.1rem;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 390px;
  margin-bottom: 20px;
  border-left: 4px solid #9DAAF2;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: #FF6A3D;
  box-shadow: 0 6px 56px 0 #FF6A3D33, 0 2px 16px #1A223814;
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 600;
  color: #586285;
}

/* Feature List Styles */
.features-list, .feature-descriptions, .services-preview-list, .ai-types-list, .advantage-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 16px;
}
.features-list li, .feature-descriptions li, .services-preview-list li, .ai-types-list li,
.advantage-points li, .icon-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.06rem;
  line-height: 1.5;
  color: #B4BDF7;
}
.features-list strong, .icon-list strong {
  color: #FF6A3D;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.icon-list img, .features-list img, .ai-types-list img, .advantage-points img, .footer-contact li img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 6px #FF6A3D25);
}
.features-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 22px 0 16px 0;
}
.features-icons img {
  width: 52px;
  height: 52px;
}

/* ============
   CARDS & BOXES
   ============ */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-card {
  background: #191F35;
  border-radius: 14px;
  box-shadow: 0 4px 22px #9DAAF217;
  padding: 28px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.19s;
}
.service-card img {
  width: 38px; height: 38px; margin-bottom: 12px;
}
.service-card h2 {
  color: #9DAAF2;
  font-size: 1.19rem;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 4px 32px #FF6A3D30, 0 2px 12px #181C2C20;
  transform: scale(1.022);
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-list li {
  font-size: 1.08rem;
  color: #B4BDF7;
}

.cta-banner {
  background: linear-gradient(90deg, #1A2238 80%, #FF6A3D12 100%);
  border-radius: 14px;
  box-shadow: 0 3px 22px #9DAAF218;
  padding: 34px 16px 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cta-banner h2 {
  color: #FF6A3D;
}

/* ================
   INDUSTRY SECTION
   ================ */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.industry-box {
  background: #191F35;
  border-radius: 14px;
  box-shadow: 0 4px 22px #9DAAF217;
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 240px;
  max-width: 340px;
  transition: box-shadow 0.16s, transform 0.17s;
  margin-bottom: 20px;
}
.industry-box img {
  width: 38px; height: 38px; margin-bottom: 10px;
}
.industry-box h2 {
  color: #9DAAF2;
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.industry-box:hover, .industry-box:focus-within {
  box-shadow: 0 6px 36px #FF6A3D25, 0 2px 12px #181C2C15;
  transform: scale(1.025);
}

.case-use-snippets {
  margin-top: 24px;
  background: #222843;
  border-radius: 10px;
  padding: 20px 16px;
}
.case-use-snippets h3 {
  color: #FF6A3D;
  margin-bottom: 7px;
}
.case-use-snippets ul {
  color: #9DAAF2;
  gap: 8px;
  flex-wrap: wrap;
}

.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.case-study-preview {
  background: #21283B;
  border-radius: 10px;
  padding: 18px 14px;
  color: #B4BDF7;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 20px;
}
.case-study-preview h3 {
  color: #9DAAF2;
}

/* ============
   FAQ SECTION
   ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #232C43;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 16px #1A223814;
}
.faq-item h3 {
  color: #FF6A3D;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: #B4BDF7;
  margin-left: 8px;
}

/* ============
   BLOG LISTS
   ============ */
.blog-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  justify-content: space-between;
}
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-tags li {
  background: #222843;
  color: #9DAAF2;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 18px;
  box-shadow: 0 2px 8px #1A22381a;
}
.search {
  display: flex;
  align-items: center;
  background: #222843;
  padding: 6px 14px;
  border-radius: 18px;
  gap: 6px;
}
.search input[type=search] {
  border: none;
  background: transparent;
  color: #B4BDF7;
  font-size: 1rem;
  outline: none;
  padding: 4px;
  min-width: 130px;
}
.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.blog-post-preview {
  background: #21283B;
  border-radius: 11px;
  padding: 20px 16px;
  flex: 1 1 250px;
  min-width: 220px;
  box-shadow: 0 3px 22px #9DAAF210;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.blog-post-preview h2 { color: #9DAAF2; font-size: 1.18rem; }
.blog-post-preview:hover {
  box-shadow: 0 5px 30px #FF6A3D22, 0 2px 12px #1A223814;
  transform: scale(1.018);
}
.blog-post-preview a {
  color: #FF6A3D;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
  transition: text-decoration 0.1s;
}
.blog-post-preview a:hover { text-decoration: underline; }

/* ================
   NEWSLETTER BLOCK
   ================ */
.newsletter {
  margin-top: 30px;
  background: #191F35;
  border-radius: 11px;
  padding: 22px 18px 14px 18px;
  color: #B4BDF7;
  width: 100%;
}
.newsletter h3 {
  color: #FF6A3D;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: #181C2C;
  color: #B4BDF7;
  padding: 40px 0 24px 0;
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.logo-footer img {
  height: 46px;
  filter: drop-shadow(0 4px 13px #22284335);
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B4BDF7;
  font-size: 0.97rem;
  padding: 6px 0;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF6A3D;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.98rem;
  color: #A9BDF2;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  filter: drop-shadow(0 3px 8px #FF6A3D31);
  transition: filter 0.14s, transform 0.19s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: drop-shadow(0 4px 14px #FF6A3Dcc) brightness(1.15);
  transform: scale(1.13);
}

/* ===============
   BUTTONS & CTA
   =============== */
.cta, .btn {
  background: none;
  border: 2px solid #9DAAF2;
  color: #9DAAF2;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.19s, color 0.14s, border-color 0.12s, box-shadow 0.16s, transform 0.14s;
  cursor: pointer;
  box-shadow: 0 2px 10px #9DAAF20a;
  margin-right: 8px;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #FF6A3D;
  color: #fff;
  border-color: #FF6A3D;
  box-shadow: 0 4px 22px #FF6A3D26;
  transform: scale(1.04);
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #191F35;
  color: #EEF2FF;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 -4px 30px #1A223839;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px 20px 22px 28px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  animation: cookieBannerIn .5s cubic-bezier(.66,0,.35,1) 1;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto;
}
.cookie-btn {
  background: none;
  border: 2px solid #9DAAF2;
  color: #9DAAF2;
  border-radius: 7px;
  padding: 8px 22px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.14s, color 0.11s, border-color 0.15s, box-shadow 0.16s, transform 0.12s;
}
.cookie-btn.accept {
  background: #FF6A3D;
  color: #fff;
  border-color: #FF6A3D;
  margin-right: 8px;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #bf391a;
  color: #fff;
  border-color: #FF6A3D;
  box-shadow: 0 2px 12px #FF6A3Dcc;
}
.cookie-btn.reject {
  background: none;
  color: #ff6a3d;
  border-color: #FF6A3D;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #232C43;
  color: #fff;
  border-color: #FF6A3D;
}
.cookie-btn.settings {
  background: #21283B;
  color: #9DAAF2;
  border-color: #9DAAF2;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #313C5F;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #191F35;
  box-shadow: 0 8px 54px #1A223880;
  color: #EEF2FF;
  z-index: 10001;
  border-radius: 15px;
  padding: 38px 28px 26px 28px;
  width: 96%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn .33s cubic-bezier(.7,0,.4,1) 1;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%, 18%) scale(.98); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #FF6A3D;
  font-size: 2rem;
  position: absolute;
  top: 16px; right: 16px;
  cursor: pointer;
  z-index: 10002;
}
.cookie-modal h2 {
  color: #FF6A3D;
  font-size: 1.28rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1 1 auto;
  color: #B4BDF7;
}
.cookie-toggle {
  accent-color: #9DAAF2;
  width: 20px; height: 20px;
}
.cookie-category.essential label, 
.cookie-category.essential input[type=checkbox] {
  cursor: not-allowed;
  color: #8a97cb;
}

/* ============
   TYPOGRAPHY
   ============ */
p, ul, ol, li, label, .footer-contact ul, .newsletter p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #C2C6DD;
  font-size: 1rem;
  line-height: 1.7;
}

/* Confirmation Messages */
.confirmation-message {
  color: #9DAAF2;
  margin-bottom: 24px;
  font-size: 1.13rem;
}

/* ===========
   RESPONSIVE
   =========== */
@media (max-width: 1024px) {
  .container {
    max-width: 968px;
    padding: 0 10px;
  }
  .footer-meta, .service-cards, .industry-grid, .case-studies, .testimonial-grid, .featured-posts, .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .service-card, .industry-box, .testimonial-card, .case-study-preview, .blog-post-preview {
    min-width: 90%; max-width: 100%; width: 100%;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .cta.primary {
    padding: 10px 12px;
    font-size: 1rem;
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-meta, .footer-social, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .newsletter {
    margin-top: 20px;
    padding: 14px 9px 10px 9px;
  }
  .content-wrapper, .blog-header, .service-cards, .industry-grid, .testimonial-grid, .featured-posts, .case-studies {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }
  .case-study-preview, .industry-box, .service-card, .testimonial-card, .blog-post-preview {
    min-width: 100%; max-width: 100%;
  }
  .card-container {
    gap: 14px;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 36px;
  }
  .cookie-banner {
    font-size: 0.98rem;
    padding: 14px 8px 14px 12px;
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner-buttons {
    margin-left: 0;
  }
  .cookie-modal {
    width: 98%;
    padding: 20px 8px 12px 8px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 0.99rem; }
  .cta.primary, .cta, .btn {
    font-size: 0.93rem;
    padding: 9px 10px;
  }
}

/* ===============
   MISC
   =============== */
::-webkit-scrollbar { width: 9px; background: #21283B; }
::-webkit-scrollbar-thumb {
  background: #9DAAF255;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF6A3DBB;
}
