/* ========================================
   DESIGN SYSTEM — Mobisol Limited
   Clean & Organized
   ======================================== */

/* === VARIABLES === */
:root {
  --max: 1120px;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-dark: #5b21b6;
  --border: rgba(124, 58, 237, 0.3);
  --border-glow: rgba(124, 58, 237, 0.5);
  --text: #0f172a;
  --muted: #64748b;
  --radius: 24px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --header-height: 74px;
  --footer-height: 74px;
  --border-width: 2.5px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { 
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; 
  color: var(--text); 
  background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 50%, #fff 100%);
  min-height: 100vh; 
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: var(--footer-height);
}

/* === BACKGROUND SHAPES === */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}
body::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, rgba(167,139,250,0.08) 40%, transparent 70%);
  top: -200px; left: -150px;
  animation: float 20s ease-in-out infinite;
}
body::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, rgba(124,58,237,0.05) 50%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.bg-blob {
  position: fixed;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 60%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
.bg-shape { position: fixed; z-index: -1; pointer-events: none; }
.bg-shape--diamond {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(167,139,250,0.04) 100%);
  transform: rotate(45deg);
  top: 20%; right: 5%;
  border-radius: 40px;
}
.bg-shape--circle {
  width: 200px; height: 200px;
  border: 2px solid rgba(124,58,237,0.1);
  border-radius: 50%;
  bottom: 15%; left: 5%;
}

/* === LAYOUT === */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }

/* === HEADER === */
header {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); z-index: 100;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(124,58,237,0.1); display: flex; align-items: center;
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand-title { font-weight: 800; font-size: 20px; color: var(--text); line-height: 1.1; }
.brand-sub { font-size: 14px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.logo {
  width: 42px; height: 42px; 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); 
  border-radius: 12px;
  display: grid; place-items: center; color: white; font-weight: 900; font-size: 20px;
  box-shadow: 0 8px 24px rgba(124,58,237,0.25);
  transition: all 0.3s var(--ease);
}
.brand:hover .logo { transform: scale(1.05); }
nav.desktop { display: flex; gap: 8px; }
nav.desktop a {
  padding: 8px 14px; font-size: 15px; font-weight: 500; color: #475569;
  text-decoration: none; transition: all 0.2s var(--ease); border-radius: 10px;
}
nav.desktop a:hover { color: var(--accent); background: rgba(124,58,237,0.06); }
nav.desktop a.active { color: var(--accent); background: rgba(124,58,237,0.1); }

/* === TYPOGRAPHY === */
h1 { 
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; 
  margin-bottom: 28px; letter-spacing: -0.02em; text-align: center;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
h1 .h1-sub {
  display: block; font-size: 0.85em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
h1.h1-compact { font-size: clamp(30px, 4vw, 44px); margin-bottom: 20px; }
h1.h1-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.2; margin-bottom: 24px; text-align: center; color: var(--text); }
h3 { font-size: clamp(22px, 3.5vw, 28px); font-weight: 600; line-height: 1.3; margin-bottom: 20px; text-align: center; color: var(--text); }
h4 { font-size: 18px; font-weight: 500; line-height: 1.4; margin-bottom: 16px; text-align: center; color: var(--text); }
p { margin-bottom: 16px; text-align: center; color: var(--muted); }

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero-description { margin-bottom: 28px; }
.hero-lead { font-size: 18px; line-height: 1.75; max-width: 900px; margin: 0 auto; text-align: center; }

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

/* === FEATURE CARDS === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.feature-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,245,255,0.95) 100%);
  border: calc(var(--border-width)) solid var(--border-glow);
  border-radius: 22px;
  padding: 30px 28px;
  text-align: center;
  transition: all 0.35s var(--ease);
  box-shadow: 0 0 40px rgba(124,58,237,0.08), 0 8px 32px rgba(124,58,237,0.06);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 20px 0 0 20px;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.feature-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.feature-card p { font-size: 16px; line-height: 1.6; margin: 0; }

/* === LOGO STRIP === */
.logo-strip {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 2rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(167,139,250,0.02) 100%);
  border-top: 1px solid rgba(124,58,237,0.08);
  border-bottom: 1px solid rgba(124,58,237,0.08);
}
.logo-strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 8%;
  gap: 3rem;
}
.logo-strip-content img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}
.logo-strip-content img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.08); }
.logo-strip-content img.logo-soc { height: 95px; max-width: 200px; }

/* === EXCELLENCE SECTION === */
.excellence-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(250, 245, 255, 0.3) 100%);
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* === ABOUT PAGE === */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.about-text { text-align: left; }
.about-text p { font-size: 18px; line-height: 1.8; color: #1e1b4b; margin-bottom: 20px; text-align: left; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,245,255,0.95) 100%);
  border: 1.5px solid rgba(124,58,237,0.25); border-radius: 20px; padding: 28px 24px;
  text-align: center; transition: all 0.3s ease;
}
.stat-box:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 40px rgba(124,58,237,0.12); }
.stat-number {
  font-size: 40px; font-weight: 900; line-height: 1.1; margin-bottom: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }
.capabilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.capability-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(250,245,255,0.9) 100%);
  border: 1.5px solid rgba(124,58,237,0.2); border-radius: 16px; padding: 20px 16px;
  text-align: center; transition: all 0.3s ease; position: relative;
}
.capability-item::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0 0 3px 3px;
}
.capability-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.capability-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }

/* === SERVICES PAGE === */
.services-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; max-width: 900px; margin-left: auto; margin-right: auto; }
.service-block {
  display: flex; gap: 20px; padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,245,255,0.95) 100%);
  border: calc(var(--border-width)) solid var(--border);
  border-radius: 22px;
  transition: all 0.3s var(--ease); position: relative;
}
.service-block:hover { border-color: var(--border-glow); transform: translateX(8px); box-shadow: -8px 0 40px rgba(124,58,237,0.1); }
.service-icon {
  min-width: 72px; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,245,255,0.98) 100%);
  border: 1.5px solid rgba(124,58,237,0.2); border-radius: 16px; padding: 14px; flex-shrink: 0;
}
.service-icon img { width: 44px; height: 44px; object-fit: contain; }
.service-content { flex: 1; text-align: left; }
.service-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.service-header h3 { font-size: 18px; margin: 0; text-align: left; }
.service-tag {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent); background: rgba(124,58,237,0.1); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 99px;
}
.service-features { list-style: none; padding: 0; margin: 0; }
.service-features li { font-size: 15px; line-height: 1.5; color: var(--muted); padding-left: 20px; position: relative; margin-bottom: 6px; text-align: left; }
.service-features li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* === PARTNERSHIP PAGE === */
.partners-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  margin-top: 48px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.partner-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,245,255,0.95) 100%);
  border: calc(var(--border-width)) solid var(--border);
  border-radius: 26px;
  padding: 36px 24px 32px;
  text-align: center; transition: all 0.35s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 0 40px rgba(124,58,237,0.08), 0 8px 32px rgba(124,58,237,0.06);
}
.partner-card::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50px; height: 4px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0 0 4px 4px;
}
.partner-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 0 50px rgba(124,58,237,0.15), 0 20px 50px rgba(124,58,237,0.12); }
.partner-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 18px;
  transition: all 0.3s ease;
}
.partner-card:hover .partner-logo { transform: scale(1.08); }
.partner-card h4 { font-size: 18px; font-weight: 800; color: var(--text); margin: 0 0 8px 0; }
.partner-subtitle { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--accent); margin: 0 0 12px 0; }
.partner-card p { font-size: 14px; color: var(--text); line-height: 1.5; margin: 0; font-weight: 500; }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px; max-width: 920px; margin-left: auto; margin-right: auto;
}
.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,245,255,0.95) 100%);
  border: calc(var(--border-width)) solid var(--border-glow); border-radius: 20px; padding: 36px 32px;
  text-align: center; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 0 40px rgba(124,58,237,0.08), 0 8px 32px rgba(124,58,237,0.06);
}
.contact-card::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0 0 4px 4px;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.contact-card h4 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; margin-top: 8px; }
.contact-card p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0 0 16px 0; flex-grow: 1; }
.contact-email {
  font-size: 14px; font-weight: 700; color: var(--accent); text-decoration: none;
  padding: 10px 20px; border: 2px solid var(--border-glow); border-radius: 99px;
  transition: all 0.3s var(--ease); margin-top: auto;
}
.contact-email:hover { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); color: white; border-color: transparent; }

/* === CTA BLOCKS === */
.cta-block {
  text-align: center; padding: 36px 32px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(167,139,250,0.05) 100%);
  border: 1.5px solid var(--border); border-radius: var(--radius); position: relative; overflow: hidden;
}
.cta-block::before { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%); }
.cta-block:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: 0 0 40px rgba(124,58,237,0.12); }
.cta-block h2 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 12px; }
.cta-block p { font-size: 16px; margin-bottom: 0; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-label {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); background: rgba(124,58,237,0.12); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 99px; margin-bottom: 16px;
}
.cta-small {
  text-align: center; padding: 28px;
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(167,139,250,0.03) 100%);
  border: 1px solid rgba(124,58,237,0.2); border-radius: 18px; margin-top: 40px;
}
.cta-inline { text-align: center; margin-top: 32px; }

/* === BUTTONS === */
.badge-btn--cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border: none;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(124,58,237,0.35);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.badge-btn--cta:hover, .badge-btn--cta:active {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  transform: translateY(-4px);
  color: white;
}
.badge-btn--outline {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--border-glow);
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.badge-btn--outline:hover, .badge-btn--outline:active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}

/* === CARDS === */
.card-minimal {
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(250,245,255,0.9) 100%);
  border: calc(var(--border-width)) solid var(--border-glow);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}
.card-minimal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0 0 4px 4px;
}
.card-minimal:hover { border-color: var(--accent); transform: translateY(-6px); }
.card-minimal h3 { font-size: 22px; margin-bottom: 14px; margin-top: 10px; }
.card-minimal p { font-size: 17px; flex-grow: 1; margin: 0; line-height: 1.65; }

/* === LEGAL PAGES === */
.legal-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,245,255,0.95) 100%);
  border: 2px solid var(--border-glow); border-radius: 20px; padding: 28px 32px;
  margin-bottom: 20px; position: relative;
}
.legal-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 20px 0 0 20px;
}
.legal-card:hover { border-color: var(--accent); transform: translateX(4px); }
.legal-card h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; text-align: left; }
.legal-card p { font-size: 16px; line-height: 1.7; margin: 0; text-align: left; }
.legal-card a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* === FOOTER === */
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-height);
  padding: 16px 0;
  border-top: 1px solid rgba(124,58,237,0.12);
  color: var(--muted);
  font-size: 13px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(167,139,250,0.04) 100%);
  backdrop-filter: blur(10px);
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(124,58,237,0.06);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.footer-address {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(124,58,237,0.12);
  background: rgba(124,58,237,0.04);
  transition: all 0.18s ease;
}
.footer-links a:hover {
  color: var(--accent);
  border-color: rgba(124,58,237,0.24);
  background: rgba(124,58,237,0.08);
  transform: translateY(-2px);
}

/* === MOBILE MENU === */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--accent);
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s var(--ease);
}
.mobile-menu-btn:hover { transform: scale(1.1); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  flex-direction: column;
  gap: 0;
  z-index: 99;
  backdrop-filter: blur(20px);
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 58, 237, 0.05);
  transition: all 0.2s var(--ease);
}
.mobile-nav a:hover { background: rgba(124, 58, 237, 0.06); color: var(--accent); }
.mobile-nav a.active { color: var(--accent); background: rgba(124, 58, 237, 0.1); }

html.menu-open, body.menu-open { overflow: hidden; height: 100%; touch-action: none; }

.mobile-menu-btn {
  padding: 12px 14px; min-width: 48px; min-height: 48px;
}
.mobile-nav a {
  padding: 12px 18px; min-height: 44px; display: flex; align-items: center; gap: 8px;
}
.mobile-nav a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 40%, white);
  outline-offset: 2px;
  border-radius: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  nav.desktop { display: none; }
  .mobile-menu-btn { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  header { height: 60px; }
  .brand-title { font-size: 18px; }
  .brand-sub { display: none; }
  
  footer { height: 64px; padding: 10px 0; box-shadow: 0 -1px 8px rgba(124,58,237,0.03); }
  
  .feature-card, .partner-card, .contact-card, .card-minimal, .service-block {
    box-shadow: none;
    transition: none;
  }
  
  .badge-btn--cta, .badge-btn--outline, .contact-email {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  html, body { padding-bottom: 110px; }
  
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  
  .hero h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
  .hero-lead { font-size: 15px; line-height: 1.6; }
  
  .feature-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
  .feature-card { padding: 16px 16px; }
  .feature-card h4 { font-size: 15px; margin-bottom: 6px; font-weight: 700; }
  .feature-card p { font-size: 13px; line-height: 1.5; }
  
  .grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .card-minimal { padding: 20px 16px; }
  .card-minimal h3 { font-size: 18px; margin-bottom: 10px; margin-top: 6px; }
  .card-minimal p { font-size: 13px; line-height: 1.5; }
  
  .logo-strip { margin-top: 16px; padding: 0.8rem 0; }
  .logo-strip-content { flex-wrap: wrap; gap: 1.2rem; justify-content: center; padding: 0 5%; }
  .logo-strip-content img { height: 32px; max-width: 80px; }
  .logo-strip-content img.logo-soc { height: 48px; max-width: 100px; }
  
  .excellence-section { padding: 40px 0 50px; }
  .section-title { margin-bottom: 32px; }
  .section-title h2 { font-size: clamp(24px, 3vw, 32px); }
  .section-title p { font-size: 14px; }
  
  .about-text p { font-size: 16px; }
  .stat-box { padding: 16px 12px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 12px; }
  
  .capabilities-grid { gap: 12px; }
  .capability-item { padding: 16px 12px; }
  .capability-item h4 { font-size: 13px; }
  
  .service-block { padding: 14px 12px; gap: 10px; }
  .service-icon { width: 50px; height: 50px; }
  .service-icon img { width: 32px; height: 32px; }
  
  .partners-grid { gap: 12px; }
  .partner-card { padding: 16px 12px 12px; }
  .partner-card h4 { font-size: 14px; }
  .partner-logo { width: 60px; height: 60px; margin-bottom: 10px; }
  .partner-subtitle { font-size: 10px; margin-bottom: 6px; }
  .partner-card p { font-size: 12px; }
  
  .contact-card { padding: 20px 16px; }
  .contact-card h4 { font-size: 16px; margin-bottom: 8px; }
  .contact-card p { font-size: 13px; margin-bottom: 12px; }
  .contact-email { padding: 8px 14px; font-size: 12px; }
  
  .footer-content { flex-direction: column; text-align: center; gap: 8px; }
  .footer-address { font-size: 12px; white-space: normal; width: 100%; }
  .footer-links { width: 100%; justify-content: center; gap: 8px; }
  .footer-links a { padding: 5px 10px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
