/* =====================================
   ROOT & RESET
   ===================================== */
:root {
  --bg: #020617;
  --bg-soft: #000814;
  --bg-elevated: rgba(15, 23, 42, 0.96);
  --bg-glass: rgba(15, 23, 42, 0.85);
  --accent: #00e1ff;
  --accent-soft: rgba(0, 225, 255, 0.2);
  --accent-strong: rgba(0, 225, 255, 0.7);
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.4);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.95);
  --shadow-glow: 0 0 40px rgba(0, 225, 255, 0.38);
  --focus-ring: 0 0 0 2px #020617, 0 0 0 4px rgba(0, 225, 255, 0.85);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Lenis will handle smoothness */
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #020617 0, #000 40%, #020617 100%);
  color: var(--text);
}

/* Fallback when JS disabled > ensure AOS not hiding content */
body:not(.js-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 0.75em;
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

/* Focus */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 999px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #020617;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  z-index: 1000;
  transition: top 0.2s ease;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 16px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85) 0, #020617 40%, #000 100%);
}

.slim {
  padding: 3rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.7rem;
}

.section-header h2 {
  font-size: 1.9rem;
}

.section-header p {
  font-size: 0.98rem;
}

/* =====================================
   HEADER & NAV
   ===================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.98),
    rgba(2, 6, 23, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.4rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px; /* space between logo and text */
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 15%, #00e1ff, transparent),
    radial-gradient(circle at 70% 80%, #22d3ee, transparent);
  box-shadow: 0 0 24px rgba(0, 225, 255, 0.9);
  position: relative;
}

.logo-img {
  justify-content: center;
  border-radius: 50%;
  width: 40px; /* adjust size as needed */
  height: auto;
  object-fit: cover;
}

.hero-visual {
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px; /* perfect size */
  height: auto;
  z-index: 8; /* must be highest */
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(0, 225, 255, 0.8));
}



.logo-orb {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e5e7eb;
  top: 7px;
  right: 6px;
  box-shadow: 0 0 6px rgba(226, 232, 240, 0.9);
}

.logo-title {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.logo-subtitle {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-desktop a {
  color: var(--text-muted);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #22c1c3);
  transition: width 0.18s ease-out;
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: none;
}

/* Mobile nav toggle */
.nav-toggle {
  width: 40px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open .nav-toggle-line:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 58px 0 auto;
  background: radial-gradient(circle at top, #020617, #000);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  padding: 1rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 40;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-link {
  padding: 0.35rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.nav-mobile-cta {
  margin-top: 0.9rem;
}

/* =====================================
   HERO
   ===================================== */
.hero {
  padding: 4.5rem 0 5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 540px;
}

.text-neon {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(0, 225, 255, 0.8);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 1.4rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(0, 225, 255, 0.16), transparent);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.kpi {
  min-width: 90px;
}

.kpi-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.kpi-value {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-liquid {
  width: 100%;
  filter: drop-shadow(0 0 32px rgba(0, 225, 255, 0.8));
}

.hero-orbit {
  position: absolute;
  inset: 8% 6%;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  box-shadow: 0 0 24px rgba(15, 23, 42, 0.95);
}

.hero-orbit-inner {
  inset: 19% 18%;
  border-style: solid;
  border-color: rgba(0, 225, 255, 0.6);
}

.hero-stats {
  position: absolute;
  inset: auto 0 2%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-card {
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
  font-size: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, rgba(0, 225, 255, 0.2), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(16px);
}

.stat-label {
  display: block;
  color: var(--text-muted);
}

.stat-value {
  font-weight: 600;
}

/* =====================================
   BUTTONS
   ===================================== */
.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  color: var(--text);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: radial-gradient(circle at 15% 0, rgba(34, 211, 238, 0.9), #00e1ff);
  color: #020617;
  box-shadow: 0 12px 35px rgba(0, 225, 255, 0.38);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(0, 225, 255, 0.55);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.98);
  border-color: var(--border-subtle);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(0, 225, 255, 0.5);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.4);
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--accent);
  color: var(--text);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(0, 225, 255, 0.5);
}

/* Link-style CTA */
.link-cta {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.86rem;
  color: var(--accent);
  cursor: pointer;
}

.link-cta:hover {
  text-decoration: underline;
}

/* =====================================
   GLASS CARDS
   ===================================== */
.glass-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(0, 225, 255, 0.16), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 1.45rem 1.5rem 1.55rem;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(0, 225, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  z-index: -1;
}

.glass-card:hover::before {
  opacity: 1;
  transform: translateY(-4%);
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  border-color: rgba(0, 225, 255, 0.7);
}

/* =====================================
   TRUST
   ===================================== */
.trust-grid {
  display: grid;
  gap: 1.2rem;
}

.trust-card h3 {
  font-size: 1.05rem;
}

.trust-pill {
  font-size: 0.78rem;
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
}

/* =====================================
   ABOUT
   ===================================== */
.about-grid {
  display: grid;
  gap: 1.2rem;
}

/* =====================================
   ECOSYSTEM
   ===================================== */
.ecosystem-layout {
  display: grid;
  gap: 1.4rem;
}

.ecosystem-center {
  text-align: center;
}

.ecosystem-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ecosystem-node {
  flex: 1 1 calc(50% - 0.6rem);
  min-width: 140px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.7rem 0.8rem;
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ecosystem-node:hover,
.ecosystem-node.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(0, 225, 255, 0.5);
}

.eco-title {
  font-weight: 500;
}

.eco-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ecosystem-detail h3 {
  font-size: 1.05rem;
}

.ecosystem-detail-list {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.88rem;
}

/* =====================================
   SERVICES / CASES / STORES
   ===================================== */
.services-grid,
.cases-grid,
.stores-grid,
.courses-grid,
.testimonials-grid,
.blog-grid,
.team-grid,
.pricing-grid {
  display: grid;
  gap: 1.2rem;
}

.service-list,
.case-metrics,
.course-points,
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
}

.service-list li::before,
.course-points li::before,
.pricing-list li::before {
  content: "• ";
  color: var(--accent);
}

.case-tag,
.portfolio-tag,
.blog-meta,
.pricing-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.case-metrics li {
  font-size: 0.83rem;
}

/* =====================================
   SLA
   ===================================== */
.sla-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sla-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
}

/* =====================================
   PORTFOLIO
   ===================================== */
.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.pill-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text-muted);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.pill-btn.is-active {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 18px rgba(0, 225, 255, 0.6);
}

.portfolio-grid {
  display: grid;
  gap: 1.2rem;
}

.portfolio-card h3 {
  font-size: 1.05rem;
}

/* =====================================
   TEAM / TIMELINE / PARTNERS / BLOG
   ===================================== */
.team-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.timeline-item h3 {
  font-size: 1.02rem;
}

.partners-layout {
  display: grid;
  gap: 1.2rem;
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
}

.blog-card h3 {
  font-size: 1.02rem;
}

/* =====================================
   TESTIMONIALS
   ===================================== */
.testimonial blockquote {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
}

.testimonial-name {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonial-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================
   PRICING
   ===================================== */
.pricing-price {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

/* =====================================
   FAQ
   ===================================== */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1rem;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease-out;
  font-size: 0.86rem;
  padding-top: 0.2rem;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* =====================================
   CTA
   ===================================== */
.cta-banner {
  padding: 3.3rem 0;
}

.cta-inner {
  border-radius: var(--radius-xl);
  padding: 1.9rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(0, 225, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.cta-text h2 {
  font-size: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* =====================================
   CONTACT
   ===================================== */
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.contact-note {
  font-size: 0.8rem;
}

.field {
  margin-bottom: 0.9rem;
}

.field label,
.field legend {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
  color: #e5e7eb;
}

.field-group {
  display: grid;
  gap: 0.8rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text);
  padding: 0.5rem 0.9rem;
  font-size: 0.86rem;
  font-family: inherit;
}

textarea {
  border-radius: var(--radius-lg);
  resize: vertical;
  min-height: 90px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================
   MODAL
   ===================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  max-width: 540px;
  width: 100%;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(0, 225, 255, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  position: relative;
  transform: scale(0.96) translateY(10px);
  opacity: 0;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  overflow: hidden;
}

.modal-backdrop.is-open .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at top left, rgba(0, 225, 255, 0.25), transparent 55%);
  opacity: 0.6;
  filter: blur(28px);
}

.modal-inner {
  position: relative;
  padding: 1.6rem 1.5rem 1.6rem;
  z-index: 1;
}

.modal-header h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.modal-header p {
  font-size: 0.86rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 2;
}

.modal-close:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.modal-form .field-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.budget-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
}

/* =====================================
   WHATSAPP FLOAT
   ===================================== */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(0, 225, 255, 0.8);
  background: radial-gradient(circle at 30% 0, rgba(0, 225, 255, 0.9), rgba(15, 23, 42, 0.98));
  box-shadow: 0 14px 35px rgba(0, 225, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 70;
  color: #020617;
  font-size: 1.3rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 55px rgba(0, 225, 255, 0.85);
}

/* =====================================
   FOOTER
   ===================================== */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 2.3rem 0 2.6rem;
  background: radial-gradient(circle at bottom, #020617, #000);
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.85rem;
}

.footer-links h3 {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-small {
  margin-top: 0.3rem;
}

/* =====================================
   MEDIA QUERIES
   ===================================== */
@media (min-width: 640px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }

  .about-grid,
  .services-grid,
  .cases-grid,
  .stores-grid,
  .courses-grid,
  .testimonials-grid,
  .blog-grid,
  .team-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-stats {
    inset: auto 4% 4%;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-logo {
    top: 63%; /* adjust if needed */
    width: 450px; /* smaller for big screens */
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .ecosystem-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: flex-start;
  }

  .sla-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .sla-list {
    text-align: right;
  }
}

@media (min-width: 960px) {
  .section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1.1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@keyframes floatLogo {
  0%, 100% { transform: translate(-50%, -51%); }
  50% { transform: translate(-50%, -54%); }
}

.hero-logo {
  animation: floatLogo 5s ease-in-out infinite;
}



@media (min-width: 1200px) {
  .hero-logo {
    top: 63%; /* perfect center on wide screens */
    width: 450px;
  }
}

@media (min-width: 650px) and (max-width: 950px) {
  .hero-logo {
    top: 64%;  /* adjust what you want */
    width: 360px; /* adjust what you want */
  }
}

@media (min-width: 250px) and (max-width: 400px) {
  .hero-logo {
    top: 64%;  /* adjust what you want */
    width: 310px; /* adjust what you want */
  }
}

/* =====================================
   TEAM MEMBERS
   ===================================== */
/* 
.team-card {
  text-align: center;
  padding: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(0, 225, 255, 0.15);
  border-radius: 16px;
} */



.team-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 3px solid rgba(0, 225, 255, 0.45);
  filter: drop-shadow(0 0 10px rgba(0, 225, 255, 0.3));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.team-img:hover  {
  transform: scale(1.07);
  filter: drop-shadow(0 0 26px rgba(0, 225, 255, 0.9));
}
