/*
Theme Name: My Custom Theme
Theme URI: https://yoursite.com
Author: Your Name
Author URI: https://yoursite.com
Description: Custom theme converted from HTML
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/* ================================================
   Paste your existing CSS from style.css below
   ================================================ */
/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a2332;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== TOKENS ========== */
:root {
  --blue-900: #0D47A1;
  --blue-800: #1565C0;
  --blue-700: #1976D2;
  --blue-100: #E3F2FD;
  --blue-50: #f0f7ff;
  --hero-bg: hsl(212, 85%, 15%);
  --hero-fg: #ffffff;
  --hero-muted: hsl(212, 40%, 75%);
  --hero-glow: hsl(212, 80%, 55%);
  --text-primary: #1a2332;
  --text-muted: hsl(214, 10%, 46%);
  --border: hsl(214, 20%, 90%);
  --surface: hsl(214, 20%, 96%);
  --radius: 0.625rem;
}

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-left { text-align: left; }
.text-gradient {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.logo-sub { color: var(--hero-muted); font-size: 0.75rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 0.75rem; font-size: 0.875rem;
  color: var(--hero-muted); background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: #fff; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 0.25rem;
  min-width: 220px; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 0.5rem 0;
  animation: dropdownIn 0.15s ease-out;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.625rem 1rem; font-size: 0.875rem; color: var(--text-primary);
  transition: background 0.15s;
}
.dropdown-menu a:hover { background: var(--blue-100); color: var(--blue-900); }
@keyframes dropdownIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.nav-ctas { display: flex; align-items: center; gap: 0.75rem; }
.btn-ghost {
  padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--hero-muted);
  background: none; border: none; border-radius: var(--radius); cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,0.05); }
.btn-primary-sm {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 600;
  color: #fff; background: var(--blue-900); border: none; border-radius: var(--radius);
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.btn-primary-sm:hover { background: var(--blue-800); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; font-size: 1rem; font-weight: 600;
  color: #fff; background: var(--blue-900); border: none; border-radius: var(--radius);
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-800); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: radial-gradient(ellipse at 30% 20%, hsl(212, 85%, 34%) 0%, var(--hero-bg) 70%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: 25%; left: 33%; width: 24rem; height: 24rem;
  border-radius: 50%; background: radial-gradient(circle, rgba(25,118,210,0.15) 0%, transparent 70%);
  filter: blur(120px); pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 25%; right: 25%; width: 18rem; height: 18rem;
  border-radius: 50%; background: rgba(13,71,161,0.05);
  filter: blur(100px); pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-lines {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.hero-lines line { stroke: var(--hero-glow); stroke-width: 0.5; opacity: 0.15; }
.floating-node {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; color: var(--hero-muted);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
  opacity: 0; transform: scale(0.8); transition: opacity 0.5s, transform 0.5s;
}
.floating-node.visible { opacity: 1; transform: scale(1); }
.node-1 { left: 12%; top: 25%; }
.node-2 { left: 78%; top: 18%; }
.node-3 { left: 85%; top: 55%; }
.node-4 { left: 8%; top: 60%; }
.node-5 { left: 65%; top: 75%; }
.node-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hero-glow); animation: pulseGlow 3s ease-in-out infinite; }
@keyframes pulseGlow { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes floatY { 0%, 100% { transform: scale(1) translateY(0); } 50% { transform: scale(1) translateY(-12px); } }
.floating-node.visible { animation: floatY 6s ease-in-out infinite; }
.node-2.visible { animation-delay: 0.5s; }
.node-3.visible { animation-delay: 1s; }
.node-4.visible { animation-delay: 1.5s; }
.node-5.visible { animation-delay: 0.8s; }

.hero-content { position: relative; z-index: 10; padding-top: 6rem; text-align: center; max-width: 48rem; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; margin-bottom: 2rem;
  font-size: 0.875rem; color: var(--hero-muted);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hero-glow); animation: pulseGlow 3s ease-in-out infinite; }
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 700; color: #fff;
  line-height: 1.08; letter-spacing: -0.02em;
}
.hero-subtitle {
  margin-top: 1.5rem; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--hero-muted);
  max-width: 40rem; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
  color: var(--blue-900); background: #fff; border: none; border-radius: var(--radius);
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.2s;
}
.btn-hero:hover { background: #f0f0f0; transform: translateY(-1px); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-size: 1rem; font-weight: 500;
  color: #fff; background: transparent; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--hero-muted); font-size: 0.75rem;
}
.scroll-mouse {
  width: 20px; height: 32px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: flex-start; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 6px; border-radius: 999px; background: #fff;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-light { background: #fff; }
.section-muted { background: var(--surface); }
.section-dark {
  background: radial-gradient(ellipse at 30% 20%, hsl(212, 85%, 34%) 0%, var(--hero-bg) 70%);
  color: #fff;
}
.section-header { text-align: center; max-width: 40rem; margin: 0 auto 4rem; }
.section-label {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600;
  color: var(--blue-900); text-transform: uppercase; letter-spacing: 0.08em;
}
.section-dark .section-label { color: var(--blue-700); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--text-primary); margin-top: 0.75rem; }
.section-dark .section-title { color: #fff; }
.section-desc { margin-top: 1rem; font-size: 1.125rem; color: var(--text-muted); }
.section-dark .section-desc { color: var(--hero-muted); }

/* ========== GRID ========== */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ========== CARDS ========== */
.card {
  padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: #fff; transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: rgba(13,71,161,0.2); box-shadow: 0 8px 30px rgba(13,71,161,0.06); }
.card-link { display: block; }
.card-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--blue-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  color: var(--blue-900); transition: background 0.3s, color 0.3s;
}
.card:hover .card-icon { background: var(--blue-900); color: #fff; }
.card h3 { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); }
.card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ========== PLATFORM SPLIT ========== */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.check-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; }
.check-icon {
  width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--blue-900);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff;
}
.modules-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.module-card {
  padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: #fff; transition: border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.module-card:hover { border-color: rgba(13,71,161,0.3); box-shadow: 0 8px 24px rgba(13,71,161,0.08); }
.module-card.span-2 { grid-column: span 2; }
.module-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--blue-900); }
.module-desc { font-size: 0.875rem; color: var(--text-muted); }
.modules-center-node {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.modules-center-node span {
  width: 5rem; height: 5rem; border-radius: 50%; background: rgba(13,71,161,0.1);
  border: 2px solid rgba(13,71,161,0.2); display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--blue-900);
}

/* ========== SOCIAL PROOF ========== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 4rem; }
.stat { text-align: center; }
.stat-value {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; margin-top: 0.5rem; font-size: 0.875rem; color: var(--hero-muted); }
.logos-section { text-align: center; }
.logos-label { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem; color: var(--hero-muted); margin-bottom: 2rem; }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.logos-row span {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 500;
  color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.logos-row span:hover { color: #fff; }

/* ========== FINAL CTA ========== */
.cta-card {
  position: relative; border-radius: 1rem; background: var(--blue-900); overflow: hidden;
  padding: 3rem 4rem; text-align: center;
}
.cta-glow-1 {
  position: absolute; top: 0; right: 0; width: 18rem; height: 18rem;
  border-radius: 50%; background: rgba(21,101,192,0.3); filter: blur(100px);
}
.cta-glow-2 {
  position: absolute; bottom: 0; left: 0; width: 24rem; height: 24rem;
  border-radius: 50%; background: rgba(25,118,210,0.2); filter: blur(120px);
}
.cta-inner { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: #fff; }
.cta-card p { margin-top: 1rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

/* ========== FOOTER ========== */
.footer { background: var(--hero-bg); color: #fff; }
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 3rem 0;
}
.footer-newsletter h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600; }
.footer-newsletter p { color: var(--hero-muted); font-size: 0.875rem; margin-top: 0.25rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 0.625rem 1rem; font-size: 0.875rem;
  color: #fff; font-family: 'DM Sans', sans-serif; width: 18rem; outline: none;
}
.newsletter-form input::placeholder { color: var(--hero-muted); }
.newsletter-form input:focus { border-color: var(--hero-glow); }
.footer-links {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0;
}
.footer-brand p { color: var(--hero-muted); font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.65; }
.social-icons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icons a { color: var(--hero-muted); transition: color 0.2s; }
.social-icons a:hover { color: #fff; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--hero-muted); padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: 0.75rem; color: var(--hero-muted);
}
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: var(--hero-muted); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* ========== ANIMATIONS ========== */
.fade-element { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-element.visible { opacity: 1; transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: rgba(11,15,25,0.97);
    backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
  }
  .nav-links.open .nav-dropdown { width: 100%; }
  .nav-links.open .dropdown-menu {
    display: none; position: static; background: rgba(255,255,255,0.05);
    border: none; box-shadow: none; margin-top: 0;
  }
  .nav-links.open .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-links.open .dropdown-menu a { color: var(--hero-muted); }
  .nav-links.open .dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }

  .grid-3 { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.25rem; }
  .hero-content { padding-top: 5rem; }
  .floating-node { display: none !important; }
  .hero-lines { display: none; }
  .section { padding: 3.5rem 0; }
  .cta-card { padding: 2rem 1.5rem; }
  .footer-newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; width: auto; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ========== MEGA DROPDOWN MENU ========== */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.25rem;
  min-width: 480px;
  background: rgba(11, 15, 25, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: dropdownIn 0.15s ease-out;
  z-index: 200;
}

/* Single-column dropdowns stay left-aligned */
.nav-dropdown:first-child .mega-menu,
.nav-dropdown:nth-child(2) .mega-menu {
  left: 0;
  transform: none;
}

.nav-dropdown:hover .mega-menu { display: block; }

.mega-menu-inner {
  display: flex;
  gap: 0;
  padding: 1.5rem;
}

.mega-col {
  flex: 1;
  min-width: 160px;
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { padding-right: 0; border-right: none; }

.mega-col-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hero-glow);
  margin-bottom: 0.875rem;
}

.mega-link {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--hero-muted);
  transition: color 0.15s;
  white-space: nowrap;
}
.mega-link:hover { color: #fff; }

/* Single-column (no group headers): tighter panel */
.mega-menu-inner:has(.mega-col:only-child) {
  min-width: 220px;
}

/* ========== MOBILE MEGA MENU ========== */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    transform: none;
    min-width: 100%;
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    border-radius: 0;
    animation: none;
  }
  .mega-menu-inner { flex-direction: column; padding: 0.5rem 0 0.5rem 1rem; gap: 0; }
  .mega-col { padding: 0; border-right: none; min-width: unset; }
  .mega-col-label { margin-top: 0.75rem; }
  .mega-link { color: rgba(255,255,255,0.6); }
  .nav-dropdown:hover .mega-menu { display: none; }
  .nav-dropdown.open .mega-menu { display: block; }
}

/* ========== FOOTER DYNAMIC MENU COLUMNS ========== */
.footer-col-menu-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li a {
  display: block;
  font-size: 0.875rem;
  color: var(--hero-muted);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

/* ========== ELEMENTOR HERO WIDGET FIX ========== */
.elementor-widget-koios_hero,
.elementor-widget-koios_hero > .elementor-widget-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.elementor-widget-koios_hero .hero {
    width: 100%;
}

/* ========== LOGO TICKER (Social Proof) ========== */
.logo-ticker {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-ticker-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    will-change: transform;
}

.logo-ticker-pause-hover:hover .logo-ticker-track {
    animation-play-state: paused;
}

.logo-ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.logo-ticker-item img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s;
    filter: brightness(0) invert(1); /* Makes logos white — remove if using colour logos */
}

.logo-fallback {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    transition: color 0.2s;
}

.logo-fallback:hover { color: #fff; }
