/* ANGORA one-page site — Enterprise/Telco style
   Notes:
   - One accent color only.
   - Strong typography, clear structure, lots of whitespace.
*/
:root{
  /* Core palette (clean navy + white) */
  --brand-blue: #0B1B34;
  --brand-blue-2: #081429;
  --brand-blue-3: #10254A;

  --bg-dark: var(--brand-blue);
  --bg-dark-2: var(--brand-blue-2);
  --bg-light: #FFFFFF;
  --surface: #FFFFFF;
  --text: #0B1220;
  --muted: #5B6475;
  --border: rgba(15, 23, 42, 0.12);
  --accent: #3B82F6; /* blue */
  --accent-2: rgba(59, 130, 246, 0.18);

  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --max: 1240px;

  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* Global dark canvas (single background across the whole site) */
  color: #E5E7EB;
  background: radial-gradient(1200px 620px at 20% -10%, rgba(59,130,246,0.20), transparent 60%),
              radial-gradient(900px 520px at 85% 0%, rgba(59,130,246,0.12), transparent 60%),
              linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-2) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* -----------------------------
   v56 (Corporate / Image): premium motion + typography polish
   - gentle, low-frequency animations
   - respects prefers-reduced-motion
------------------------------ */

:root{
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* Typography polish */
body{
  font-feature-settings: "ss01" 1, "ss02" 1, "cv02" 1;
}

.hero-eyebrow, .eyebrow{
  letter-spacing: 0.16em;
}

.hero-eyebrow{
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(229,231,235,0.74);
  margin: 0 0 10px;
}

.hero-title{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-subtitle{
  margin: 0;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
  color: rgba(229,231,235,0.86);
  max-width: 62ch;
}

.section h2{
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.section-subtitle{
  line-height: 1.7;
}

/* Premium scroll reveal */
.reveal{
  opacity: 1;
  transform: none;
}
html.js .reveal{
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 560ms var(--ease-out),
    transform 560ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
html.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Hero background motion (subtle) */
.hero{
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after{
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  filter: blur(22px);
  opacity: 0.55;
  transform: translate3d(0,0,0);
}
.hero::before{
  background:
    radial-gradient(600px 420px at 18% 30%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(520px 360px at 78% 16%, rgba(59,130,246,0.14), transparent 62%);
  animation: heroFloatA 18s var(--ease-out) infinite alternate;
}
.hero::after{
  background:
    radial-gradient(520px 380px at 72% 78%, rgba(59,130,246,0.16), transparent 64%),
    radial-gradient(520px 380px at 26% 86%, rgba(59,130,246,0.10), transparent 66%);
  animation: heroFloatB 24s var(--ease-out) infinite alternate;
}

/* Keep hero content above the animated background */
.hero .container,
.hero .hero-container,
.hero .hero-grid,
.hero .hero-inner{
  position: relative;
  z-index: 1;
}


/* Hero spacing + mobile polish */
.hero-container{
  padding: clamp(72px, 10vh, 110px) 0 64px;
}

@media (max-width: 900px){
  .hero-container{ padding: 84px 0 44px; }
  .hero-title{ font-size: clamp(30px, 8vw, 40px); line-height: 1.12; }
  .hero-subtitle{ max-width: 48ch; }
  .hero-ops{ margin-top: 18px; }
}
@media (max-width: 520px){
  .hero-container{ padding: 78px 0 36px; }
  .hero-eyebrow{ font-size: 11px; }
}


@keyframes heroFloatA{
  0%{ transform: translate3d(-1.2%, -0.8%, 0) scale(1); }
  100%{ transform: translate3d(1.0%, 0.9%, 0) scale(1.02); }
}
@keyframes heroFloatB{
  0%{ transform: translate3d(1.0%, 1.1%, 0) scale(1.01); }
  100%{ transform: translate3d(-0.9%, -0.7%, 0) scale(1.03); }
}

/* Additional glow accents (corporate, restrained) */
.btn-primary{
  position: relative;
  overflow: hidden;
}
.btn-primary::after{
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(340px 120px at 30% 0%, rgba(255,255,255,0.28), transparent 55%);
  opacity: 0.55;
  transition: opacity 220ms var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after{ opacity: 0.85; }

/* Slightly richer card glow only on key areas */
.hero .hero-ops,
#solutions .card,
#about .card{
  box-shadow:
    0 18px 46px rgba(2, 6, 23, 0.46),
    0 0 0 1px rgba(59,130,246,0.10),
    0 0 42px rgba(59,130,246,0.10);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after{ animation: none; }
  .btn, .card, .nav-link{ transition: none; }
}

a{ color: inherit; }
img{ max-width: 100%; display: block; }

/* Offset anchor scroll for sticky header */
section{ scroll-margin-top: calc(var(--header-h) + 18px); }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus{ left: 20px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  /* Same visual background as HERO */
  background: radial-gradient(1200px 600px at 20% -10%, rgba(59,130,246,0.22), transparent 60%),
              linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-2) 100%);
  border-bottom: 1px solid rgba(229,231,235,0.10);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.35);
}
.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(59,130,246,0.70));
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}
.brand-name{
  color: #E5E7EB;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Nav */
.nav{ display: flex; align-items: center; }
.nav-toggle{
  display: none;
  border: 1px solid rgba(229,231,235,0.18);
  background: rgba(2,6,23,0.25);
  color: rgba(229,231,235,0.90);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle-bars{
  width: 20px; height: 2px; background: rgba(229,231,235,0.90);
  display: inline-block;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left: 0;
  width: 20px; height: 2px; background: rgba(229,231,235,0.90);
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }

.nav-menu{
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-link{
  color: rgba(229,231,235,0.78);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  outline: none;
}
.nav-link:hover{
  background: rgba(255,255,255,0.08);
  color: rgba(229,231,235,0.94);
}
.nav-link.active{
  background: rgba(59,130,246,0.22);
  color: rgba(229,231,235,0.98);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.34);
}
.nav-cta{ margin-left: 6px; }

/* Hero */
.hero{
  background: radial-gradient(1200px 520px at 20% 10%, rgba(59,130,246,0.22), transparent 60%),
              radial-gradient(900px 480px at 80% 0%, rgba(59,130,246,0.14), transparent 60%),
              linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  color: #E5E7EB;
  padding: 44px 0 26px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(229,231,235,0.72);
  margin: 0 0 10px;
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 18px;
  font-size: 18px;
  color: rgba(229,231,235,0.86);
  max-width: 58ch;
}
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
}
.hero-trust{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.trust-item{
  border: 1px solid rgba(229,231,235,0.12);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(2, 6, 23, 0.22);
}
.trust-kpi{
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.trust-text{
  font-size: 13px;
  color: rgba(229,231,235,0.78);
}
.hero-visual{
  display: grid;
  gap: 14px;
}
.grid-card{
  border: 1px solid rgba(229,231,235,0.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(2, 6, 23, 0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}
.grid-card-title{
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}
.mini-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(229,231,235,0.82);
  font-size: 14px;
}
.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(229,231,235,0.08);
  border: 1px solid rgba(229,231,235,0.12);
  font-size: 13px;
}

/* Sections */
.section{
  /* tighter vertical rhythm (requested) */
  padding: 40px 0;
}
.section.alt{
  /* Keep a single background across the whole page */
  background: transparent;
}
.section-head{
  margin-bottom: 12px;
}
.section h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: rgba(229,231,235,0.96);
}
.section-subtitle{
  margin: 0;
  color: rgba(229,231,235,0.78);
  max-width: 80ch;
}

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.cards-grid .card{
  grid-column: span 6;
}
.cards-grid .card:nth-child(1){ grid-column: span 12; }
@media (min-width: 980px){
  .cards-grid .card:nth-child(1){ grid-column: span 6; }
}

.card{
  background: rgba(2, 6, 23, 0.22);
  border: 1px solid rgba(229,231,235,0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.35);
  position: relative;
  overflow: hidden;
  /* Subtle glow + lift */
  transition: transform 160ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card::before{
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(520px 220px at 18% 12%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(520px 220px at 82% 88%, rgba(59,130,246,0.12), transparent 60%);
  opacity: 0.55;
  transition: opacity 200ms ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.26);
  box-shadow:
    0 18px 46px rgba(2, 6, 23, 0.45),
    0 0 0 1px rgba(59,130,246,0.10),
    0 0 34px rgba(59,130,246,0.10);
}
.card:hover::before{ opacity: 0.9; }
.card:focus-within{
  border-color: rgba(59,130,246,0.32);
  box-shadow:
    0 18px 46px rgba(2, 6, 23, 0.45),
    0 0 0 4px rgba(59,130,246,0.14);
}
.card h3{
  margin: 0 0 10px;
  font-size: 18px;
  color: rgba(229,231,235,0.96);
}
.card p{ margin: 0 0 12px; }
.muted{ color: rgba(229,231,235,0.72); }
.small-title{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(229,231,235,0.70);
  margin: 12px 0 8px;
}
.card-icon{
  width: 34px; height: 34px;
  border-radius: 14px;
  background: rgba(229,231,235,0.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(229,231,235,0.12);
  margin-bottom: 10px;
}

.checklist, .bullets{
  margin: 0;
  padding-left: 18px;
}
.checklist li{ margin: 8px 0; }
.bullets li{ margin: 7px 0; }

.note{
  margin-top: 14px;
  background: rgba(2,6,23,0.18);
  border: 1px solid rgba(229,231,235,0.12);
  border-radius: 14px;
  padding: 12px 12px;
  color: rgba(229,231,235,0.82);
  font-size: 14px;
}

.steps{
  margin: 0;
  padding-left: 18px;
}
.steps li{ margin: 10px 0; }

.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size: 0.95em; }

/* Logos */
.logos{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.logo{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  color: rgba(15,23,42,0.82);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: #081429;
  border-color: rgba(0,0,0,0.08);
}
.btn-primary:hover{
  background: rgba(59,130,246,0.92);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2,6,23,0.35), 0 0 28px rgba(59,130,246,0.24);
}
.btn-secondary{
  background: rgba(229,231,235,0.10);
  color: #E5E7EB;
  border-color: rgba(229,231,235,0.16);
}
.section .btn-secondary{
  background: rgba(229,231,235,0.10);
  color: rgba(229,231,235,0.92);
  border-color: rgba(229,231,235,0.16);
}
.btn-secondary:hover{
  border-color: rgba(59,130,246,0.40);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(2,6,23,0.30), 0 0 24px rgba(59,130,246,0.14);
}

/* Mobile nav overlay + burger -> X */
body.nav-open{ overflow: hidden; }
body.nav-open::after{
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.55);
  backdrop-filter: blur(2px);
  z-index: 40;
}
.site-header{ z-index: 50; }
@media (max-width: 860px){
  .nav-menu{ z-index: 60; }
}

.nav-toggle{ transition: transform 140ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.nav-toggle:hover{ border-color: rgba(59,130,246,0.32); box-shadow: 0 0 18px rgba(59,130,246,0.14); }
.nav-toggle.open{ border-color: rgba(59,130,246,0.34); box-shadow: 0 0 22px rgba(59,130,246,0.18); }
.nav-toggle.open .nav-toggle-bars{ background: transparent; }
.nav-toggle.open .nav-toggle-bars::before,
.nav-toggle.open .nav-toggle-bars::after{
  top: 0;
}
.nav-toggle.open .nav-toggle-bars::before{ transform: rotate(45deg); }
.nav-toggle.open .nav-toggle-bars::after{ transform: rotate(-45deg); }
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  transition: transform 160ms ease, top 160ms ease, background 160ms ease, opacity 160ms ease;
}
.link{
  color: rgba(229,231,235,0.92);
  text-decoration: none;
  font-weight: 600;
}
.link:hover{ text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Form */
.form{ margin-top: 10px; }
.field{ margin-bottom: 12px; }
label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
input, textarea{
  width: 100%;
  border: 1px solid rgba(229,231,235,0.14);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: rgba(2,6,23,0.22);
  color: rgba(229,231,235,0.92);
}
input:focus, textarea:focus{
  border-color: rgba(59,130,246,0.55);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.14);
}
.form-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-hint{
  color: rgba(229,231,235,0.70);
  font-size: 13px;
}
.form-status{
  margin-top: 12px;
  font-size: 14px;
}
.form-status.ok{ color: rgba(5, 122, 92, 0.98); }
.form-status.err{ color: rgba(160, 20, 20, 0.92); }

.hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contacts list */
.contact-list{ margin-top: 10px; }
.contact-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(229,231,235,0.10);
}
.contact-row:last-child{ border-bottom: none; }
.contact-label{ color: rgba(229,231,235,0.70); font-size: 13px; }
.contact-value{ font-weight: 600; }

/* Footer */
.footer{
  background: var(--bg-dark);
  color: rgba(229,231,235,0.86);
  padding: 28px 0;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: start;
}
.footer-brand{
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer-text{ color: rgba(229,231,235,0.74); font-size: 14px; margin-top: 6px; }
.footer-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a{
  color: rgba(229,231,235,0.78);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 10px;
}
.footer-links a:hover{
  background: rgba(229,231,235,0.08);
  color: #FFFFFF;
}
.footer-legal{
  margin-top: 10px;
  color: rgba(229,231,235,0.62);
  font-size: 13px;
  text-align: right;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
  .two-col{ grid-template-columns: 1fr; }
  .cards-grid .card{ grid-column: span 12; }
  .logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    position: absolute;
    right: 20px;
    top: calc(var(--header-h) - 6px);
    width: min(420px, calc(100vw - 40px));
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(229,231,235,0.10);
    border-radius: 18px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  }
  .nav-menu.open{ display: flex; }
  .nav-link{ padding: 12px 12px; }
  .nav-cta{ margin-left: 0; }
  .nav-cta .btn{ width: 100%; }
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Partners premium tiles */
.logos{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .logos{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.logo{
  min-height: 76px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(15,23,42,0.76);
  box-shadow: 0 10px 26px rgba(2,6,23,0.06);
  transition: transform 140ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.logo:hover{
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 18px 40px rgba(2,6,23,0.10);
  background: linear-gradient(180deg, rgba(59,130,246,0.08), rgba(255,255,255,1));
  color: rgba(15,23,42,0.90);
}

/* Brand SVG */
.brand-svg{width:34px;height:34px;display:block;flex-shrink:0;}


/* Trust line */
.trust-line{margin:10px 0 14px;color:rgba(229,231,235,0.78);font-size:14px;}

/* Language switcher */
.lang-switch{
  /* Remove outer oval container: keep only individual pills */
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0;
  border-radius:0;
  border:none;
  background: transparent;
  box-shadow: none;
}
.lang-btn{
  appearance:none;
  border:1px solid transparent;
  background:transparent;
  color: rgba(15,23,42,0.72);
  font-weight:800;
  font-size:12px;
  letter-spacing:0.10em;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  transition:background 160ms ease,color 160ms ease,border-color 160ms ease;
}
.lang-btn:hover{background:rgba(15,23,42,0.05);color:rgba(15,23,42,0.92);}
.lang-btn[aria-pressed="true"]{background:rgba(59,130,246,0.14);border-color:rgba(59,130,246,0.28);color:rgba(15,23,42,0.94);}

/* Differentiators */
.diff-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:18px;}
@media (max-width:980px){.diff-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){.diff-grid{grid-template-columns:1fr;}}
.diff-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:18px;box-shadow:0 10px 26px rgba(2,6,23,0.06);transition:transform 140ms ease,border-color 160ms ease,box-shadow 160ms ease;}
.diff-card:hover{transform:translateY(-2px);border-color:rgba(59,130,246,0.35);box-shadow:0 18px 40px rgba(2,6,23,0.10);}
.diff-title{font-weight:800;letter-spacing:-0.01em;margin-bottom:6px;}
.diff-text{color:var(--muted);font-size:14px;}

/* How we engage */
.engage{margin-top:22px;padding:18px;border-radius:var(--radius);border:1px solid var(--border);background:rgba(255,255,255,0.86);box-shadow:0 10px 26px rgba(2,6,23,0.06);}
.engage-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:10px;}
.engage-sub{color:var(--muted);font-size:14px;margin:0;}
.engage-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
@media (max-width:980px){.engage-steps{grid-template-columns:1fr;}}
.engage-step{padding:14px;border-radius:16px;border:1px solid var(--border);background:#fff;}
.engage-step-t{font-weight:800;letter-spacing:-0.01em;margin-bottom:4px;}
.engage-step-b{color:var(--muted);font-size:14px;}

/* Elastic capability */
.elastic-cap{margin-top:10px;padding:10px 12px;border-radius:14px;border:1px solid rgba(59,130,246,0.28);background:rgba(59,130,246,0.08);color:rgba(15,23,42,0.86);font-size:14px;}

/* Footer company */
.footer-company{color:rgba(229,231,235,0.78);}


/* Language links */
.lang-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(229,231,235,0.82);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.lang-link:hover{ background: rgba(255,255,255,0.08); color: rgba(229,231,235,0.96); }
.lang-link[aria-current="page"]{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: rgba(229,231,235,0.98);
}

/* Dark sections (Grok-like services layout) */
.section-dark{
  background: radial-gradient(1200px 600px at 20% -10%, rgba(59,130,246,0.16), transparent 60%),
              linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-2) 100%);
  color: #E5E7EB;
}
.section-dark .section-subtitle{ color: rgba(229,231,235,0.78); }
.section-dark h2{ color: #E5E7EB; }

#solutions.section-dark .cards-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#solutions.section-dark .cards-grid .card{
  grid-column: auto;
  background: rgba(2,6,23,0.22);
  border: 1px solid rgba(229,231,235,0.12);
  box-shadow: 0 18px 50px rgba(2,6,23,0.35);
}
#solutions.section-dark .cards-grid .card:nth-child(1){ grid-column: auto; }
#solutions.section-dark .card h3{ color: rgba(229,231,235,0.96); }
#solutions.section-dark .card p{ color: rgba(229,231,235,0.78); }
#solutions.section-dark .card p.muted{ color: rgba(229,231,235,0.68); }
#solutions.section-dark .small-title{ color: rgba(229,231,235,0.70); }
#solutions.section-dark .bullets{ color: rgba(229,231,235,0.78); }
#solutions.section-dark .card-icon{ color: rgba(255,255,255,0.92); }

@media (max-width: 980px){
  #solutions.section-dark .cards-grid{ grid-template-columns: 1fr; }
}

/* --- Requested visual rules (TBD) --- */
/* Section titles on white, in the same navy as header */
.section:not(.section-dark) h2,
.section:not(.section-dark) .section-subtitle{
  color: var(--brand-blue);
}
.section:not(.section-dark) .section-subtitle{ opacity: 0.92; }

/* Blue inner blocks (cards) with white text for About + Solutions */
#about .card,
#about .note-block,
#solutions .card{
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-2) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(2,6,23,0.25);
  color: rgba(229,231,235,0.92);
}

#about .card .section-subtitle,
#about .card p,
#about .card li,
#about .note-block p,
#solutions .card p,
#solutions .card li{
  color: rgba(229,231,235,0.84);
}

#about .note-block h3,
#solutions .card h3{ color: rgba(229,231,235,0.98); }
#solutions .small-title{ color: rgba(229,231,235,0.72); }

/* Icons readable on dark cards */
#solutions .card-icon{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}

/* Why section without header spacing */
#why .diff-grid{ margin-top: 0; }


/* Nav images (labels as SVG) */
.nav-img{display:block;height:28px;width:auto;max-width:110px;}
@media (max-width: 640px){
  .nav-img{height:26px;max-width:100px;}
}


/* Prevent nav wrapping */
.nav ul{flex-wrap:nowrap;}
.nav li{flex:0 0 auto;}


/* Premium nav labels (SVG) */
.nav-img{display:block;height:28px;width:auto;max-width:104px;transition:transform 140ms ease, filter 160ms ease, opacity 160ms ease;}
.nav-link:hover .nav-img{transform:translateY(-1px);filter:drop-shadow(0 10px 18px rgba(2,6,23,0.22));opacity:0.98;}
.nav-link:active .nav-img{transform:translateY(0px);opacity:0.92;}
.nav ul{flex-wrap:nowrap;gap:8px;}
@media (max-width: 860px){
  .nav ul{gap:6px;}
  .nav-img{height:26px;max-width:98px;}
}


/* Outcome line under solutions */
.outcome{margin-top:10px;padding:10px 12px;border-radius:14px;border:1px solid rgba(229,231,235,0.12);background:rgba(2,6,23,0.08);color:rgba(229,231,235,0.84);font-size:13.5px;}
.section.alt .outcome{background:rgba(255,255,255,0.7);color:rgba(15,23,42,0.82);border-color:rgba(15,23,42,0.08);}

.hidden{display:none !important;}


/* --- Responsive layout hardening --- */
.container{max-width:1280px;margin:0 auto;padding-left:20px;padding-right:20px;}
@media (max-width: 420px){
  .container{padding-left:16px;padding-right:16px;}
}

/* Keep top nav in one line without ugly wraps; allow horizontal scroll if needed */
.nav ul{flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;gap:8px;}
.nav ul::-webkit-scrollbar{height:0px;}
.nav li{flex:0 0 auto;}
.nav-img{height:28px;max-width:104px;}
@media (max-width: 860px){
  .nav-img{height:26px;max-width:98px;}
}
@media (max-width: 520px){
  .nav-img{height:24px;max-width:92px;}
}

/* Solutions grid responsive */



/* Prevent long words from breaking layout */
.solution-card, .about-card, .contact-card{word-break:break-word;overflow-wrap:anywhere;}


/* Solutions cards grid responsive */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px;}

/* Force Grok-like 3-up layout for Solutions on desktop */
#solutions .cards-grid{grid-template-columns: repeat(3, minmax(0, 1fr));}
@media (max-width: 980px){
  #solutions .cards-grid{grid-template-columns: 1fr;}
}
@media (max-width: 520px){
  .cards-grid{grid-template-columns:1fr;gap:14px;}
}


/* Partners premium grid */
.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-top:18px;
}
.partner-tile{
  min-height:72px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 18px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 160ms ease, border-color 180ms ease, box-shadow 200ms ease, color 180ms ease;
}
.partner-name{
  font-weight:700;
  letter-spacing:0.10em;
  font-size:14px;
  text-transform:uppercase;
  color:rgba(17,24,39,0.82);
}
.partner-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.25);
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.18),
    0 0 22px rgba(37,99,235,0.14),
    0 14px 34px rgba(0,0,0,0.10);
}

.partner-tile:hover .partner-name{color:#2563eb;}

/* Vendor logos inside partner tiles */
.partner-logo{
  max-height:34px;
  max-width:160px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:1;
  filter:none;
  transform: translateZ(0);
  transition: transform 160ms ease, filter 180ms ease;
}
.partner-tile:hover .partner-logo{
  transform: scale(1.04);
  /* Keep logos in full color, add a gentle glow */
  filter: drop-shadow(0 0 14px rgba(59,130,246,0.22));
}
@media (max-width:520px){
  .partner-tile{min-height:64px;border-radius:16px;}
  .partner-logo{max-height:30px;max-width:150px;}
}


/* Brand (triangle mark + wordmark) */
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;}
.brand-mark{display:block;width:36px;height:36px;}
.brand-name{font-weight:900;letter-spacing:0.06em;text-transform:uppercase;color:#E5E7EB;}
.brand-suffix{font-weight:700;letter-spacing:0.10em;text-transform:uppercase;color:rgba(229,231,235,0.70);margin-left:2px;}

/* Header: 3-zone layout */
header .header-inner{display:grid;grid-template-columns: 1fr auto 1fr;align-items:center;gap:16px;}
header .brand-zone{justify-self:start;}
header .nav-centered-zone{justify-self:center;}
header .lang-zone{justify-self:end;}
@media (max-width: 720px){
  header .header-inner{grid-template-columns: 1fr;}
  header .brand-zone, header .nav-centered-zone, header .lang-zone{justify-self:start;}
}

/* Nav images */
.nav ul{flex-wrap:nowrap;gap:8px;justify-content:center;}
.nav li{flex:0 0 auto;}
.nav-img{display:block;height:28px;width:auto;max-width:104px;transition:transform 140ms ease, filter 160ms ease, opacity 160ms ease;}
.nav-link:hover .nav-img{transform:translateY(-1px);filter:drop-shadow(0 10px 18px rgba(2,6,23,0.22));opacity:0.98;}
@media (max-width: 860px){.nav-img{height:26px;max-width:98px;}}
@media (max-width: 520px){.nav-img{height:24px;max-width:92px;}}

/* Hero (restored + polished) */
.hero{padding:44px 0 26px;background:radial-gradient(1200px 520px at 20% 10%, rgba(59,130,246,0.22), transparent 60%), radial-gradient(900px 480px at 80% 0%, rgba(59,130,246,0.14), transparent 60%), linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));color:#E5E7EB;}
.hero .hero-wrap{max-width:920px;}
.eyebrow{font-weight:800;letter-spacing:0.16em;font-size:12px;color:rgba(229,231,235,0.72);text-transform:uppercase;}
.hero h1{margin:16px 0 14px;font-size:44px;line-height:1.08;letter-spacing:-0.02em;}
.hero-lead{font-size:18px;line-height:1.6;color:rgba(229,231,235,0.82);max-width:820px;}
.hero-ops{margin-top:20px;border:1px solid rgba(229,231,235,0.12);background:rgba(2,6,23,0.18);border-radius:18px;padding:14px 16px;display:grid;gap:10px;}
.hero-ops-title{font-weight:800;font-size:13px;letter-spacing:0.10em;text-transform:uppercase;color:rgba(229,231,235,0.74);}
.hero-ops-list{margin:0;padding-left:18px;display:grid;gap:6px;color:rgba(229,231,235,0.84);}
.hero-ops-list li{line-height:1.35;}
@media (max-width: 860px){.hero{padding:40px 0 24px;} .hero h1{font-size:38px;}}
@media (max-width: 520px){.hero{padding:34px 0 20px;} .hero h1{font-size:32px;} .hero-lead{font-size:16px;}}

/* About: Future expansion block */
.note-block{margin-top:18px;padding:14px 16px;border-radius:18px;border:1px solid rgba(229,231,235,0.12);background:rgba(2,6,23,0.10);}
.note-block h3{margin:0 0 6px 0;font-size:13px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(229,231,235,0.78);}
.note-block p{margin:0;color:rgba(229,231,235,0.88);line-height:1.6;}


/* Note block in About should match the blue inner blocks (requested) */
#about .note-block{
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-2) 100%);
}
#about .note-block h3{ color:rgba(229,231,235,0.86); }
#about .note-block p{ color:rgba(229,231,235,0.84); }


/* Header grid applies to the container itself */
header .container.header-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
}
@media (max-width: 720px){
  header .container.header-inner{
    grid-template-columns: 1fr;
    justify-items:start;
  }
}


/* Desktop nav: keep inline, no overlap */
@media (min-width: 861px){
  .nav-toggle{display:none !important;}
  .nav-menu{display:flex !important;position:static !important;transform:none !important;opacity:1 !important;pointer-events:auto !important;}
}


/* Brand: triangle + text */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-text{
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#E5E7EB;
  font-size:14px;
}

footer .footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-text{
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(229,231,235,0.85);
  font-size:14px;
}

@media(max-width:520px){
  .brand-text,.footer-text{font-size:13px;}
}


/* Unified brand block (header and footer) */
header .footer-brand, footer .footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
header .footer-logo, footer .footer-logo{
  width:28px;
  height:28px;
  display:block;
}
header .footer-text{
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: rgba(229,231,235,0.98);
  font-size:14px;
}
footer .footer-text{
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: rgba(229,231,235,0.92);
  font-size:14px;
}
@media(max-width:520px){
  header .footer-logo, footer .footer-logo{width:26px;height:26px;}
  header .footer-text, footer .footer-text{font-size:13px;}
}


/* --- Mobile polish (v28) --- */
html, body{overflow-x:hidden;}
.container{padding-left:16px;padding-right:16px;}
/* Prevent tap highlight ugliness */
a, button{-webkit-tap-highlight-color: rgba(0,0,0,0);}

/* Header mobile layout */
@media (max-width: 720px){
  header{position:sticky;top:0;z-index:50;backdrop-filter:saturate(140%) blur(10px);}
  header .container.header-inner{gap:10px;}
  header .footer-brand{gap:10px;}
  /* Put brand + lang on first row, menu toggle on right if present */
  header .container.header-inner{
    display:grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand lang"
      "nav nav";
    align-items:center;
  }
  header .footer-brand{grid-area:brand;}
  header .lang-zone{grid-area:lang;justify-self:end;}
  header nav{grid-area:nav;justify-self:start;width:100%;}
  /* Nav pills: allow wrapping nicely (two rows) */
  nav ul{flex-wrap:wrap;gap:8px;}
  nav a{width:auto;}
}

/* Hamburger button polish (if present) */
.nav-toggle{
  width:40px;height:40px;border-radius:12px;
  display:inline-flex;align-items:center;justify-content:center;
}
.nav-toggle svg{width:18px;height:18px;}

/* Hero mobile typography */
@media (max-width: 520px){
  .hero{padding-top:64px;padding-bottom:28px;}
  .eyebrow{font-size:11px;letter-spacing:0.14em;}
  .hero h1{font-size:30px;line-height:1.10;}
  .hero-lead{font-size:15px;}
  .hero-ops{padding:12px 14px;border-radius:16px;}
}

/* Section spacing on mobile */
@media (max-width: 520px){
  section{padding-top:44px;padding-bottom:44px;}
  h2{font-size:26px;line-height:1.15;}
  .card{padding:16px;border-radius:18px;}
  .grid{gap:14px;}
}

/* Partner tiles: ensure consistent height and tap comfort */
@media (max-width: 520px){
  .partners-grid{grid-template-columns: 1fr 1fr;gap:12px;}
  .partner-tile{min-height:56px;}
}
@media (max-width: 360px){
  .partners-grid{grid-template-columns: 1fr;}
}

/* Form usability */
@media (max-width: 520px){
  input, textarea, select{font-size:16px;} /* avoid iOS zoom */
  .form-row{grid-template-columns:1fr;}
  .btn{width:100%;}
}



/* =========================
   V42 PRODUCTION POLISH
   - Uniform dark theme
   - White nav + section titles
   - Solutions in 3 columns like Grok
   ========================= */
:root{
  --surface: rgba(2,6,23,0.22);
  --text: #E5E7EB;
  --muted: rgba(229,231,235,0.78);
  --border: rgba(229,231,235,0.14);
}

/* Global typography for dark canvas */
body{ color: var(--text); }
h1,h2,h3,h4{ color: rgba(229,231,235,0.96); }
p,li{ color: var(--text); }
.section-subtitle{ color: var(--muted); }

/* Reduce vertical spacing between major blocks (roughly x0.5) */
.section{ padding: 44px 0; }
.hero{ padding: 72px 0 52px; }

/* Header navigation must stay white on dark background */
header a, .header a, nav a, .menu a{
  color: #FFFFFF !important;
}
header a:hover, .header a:hover{ opacity: 0.85; }

/* Remove any leftover "light" section behavior */
.section-dark, .section{ background: transparent; }

/* Cards: consistent dark glass look */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
}
.card h3{ color: rgba(229,231,235,0.96); }
.card p, .card li{ color: rgba(229,231,235,0.90); }

/* SOLUTIONS: force 3-column layout on desktop */
#solutions .cards-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}
#solutions .cards-grid .card{
  grid-column: auto !important;
}

/* Tablet */
@media (max-width: 1100px){
  #solutions .cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 700px){
  .section{ padding: 34px 0; }
  .hero{ padding: 62px 0 42px; }
  #solutions .cards-grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}


/* V42: text nav instead of SVG pills */
.nav-img{ display:none !important; }
nav .nav-link, nav a.nav-text{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.18);
  background: rgba(2,6,23,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
nav .nav-link:hover, nav a.nav-text:hover{
  border-color: rgba(229,231,235,0.32);
  background: rgba(2,6,23,0.26);
}


/* === v43 fixes: unified dark canvas headings + solutions grid === */
.section h2{
  color: rgba(229,231,235,0.96) !important;
}
.section .section-subtitle{
  color: rgba(229,231,235,0.78) !important;
}

/* Services/Solutions grid: 3 columns desktop, 2 tablet, 1 mobile */
#solutions .cards-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px;
}
@media (max-width: 1100px){
  #solutions .cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 700px){
  #solutions .cards-grid{
    grid-template-columns: 1fr !important;
  }
}



/* Header nav text always visible on dark background */
.header .nav-text, header .nav-text, .nav-link.nav-text{
  color: #ffffff !important;
}



/* V45: HERO layout — Operational Model card on the LEFT (Grok-style, mirrored) */
.hero .hero-inner{
  display: grid !important;
  grid-template-columns: 0.85fr 1.15fr !important;
  gap: 28px !important;
  align-items: start !important;
}
.hero .hero-ops.hero-ops--left{ margin-top: 0 !important; }
.hero .hero-content{ padding-top: 2px; }

@media (max-width: 980px){
  .hero .hero-inner{
    grid-template-columns: 1fr !important;
  }
  /* On mobile: keep the main text first, then the ops card */
  .hero .hero-content{ order: 1; }
  .hero .hero-ops{ order: 2; }
}



/* === v54 HERO (Grok-like): text left, ops card right === */
.hero-container { padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(28px, 6vw, 72px); }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 4vw, 44px);
  align-items:center;
}
.hero-content{ grid-column:1; max-width: 760px; }
.hero-ops--right{ grid-column:2; justify-self:end; align-self:center; max-width: 480px; width:100%; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-content{ grid-column:1; }
  .hero-ops--right{ grid-column:1; justify-self:stretch; max-width:none; }
}
/* === end v54 === */


/* =========================
   PREMIUM PARTNERS (Text Tiles)
   ========================= */

.partners-section{
  padding: 70px 0;
  background: inherit;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.partners-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.partners-title{
  font-family: var(--font);
  font-size: clamp(26px, 2.2vw, 32px);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.partners-subtitle{
  margin: 0 auto 56px;
  max-width: 780px;
  color: rgba(17,17,17,0.68);
  font-size: 15px;
  line-height: 1.6;
}

.partners-grid.premium{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.partner-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 26px 20px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #111;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, color .35s ease;
  cursor: default;
  will-change: transform;
}

.partner-card:hover{
  transform: translateY(-4px);
  border-color: rgba(37,99,235,0.25);
  box-shadow:
    0 12px 35px rgba(0,0,0,0.08),
    0 0 20px rgba(37,99,235,0.12);
  color: #2563eb;
}

@media (max-width: 520px){
  .partners-section{ padding: 54px 0; background: inherit; }
.partners-grid.premium{ gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-card{ padding: 18px 14px; font-size: 12px; letter-spacing: 1.2px; }
}


/* Footer polish */
.footer{
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner{
  padding-top: 28px;
  padding-bottom: 28px;
}
.footer-links a{
  position: relative;
}
.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:1px;
  background: rgba(255,255,255,0.0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out);
}
.footer-links a:hover::after{
  transform: scaleX(1);
  background: rgba(229,231,235,0.28);
}
@media (max-width: 720px){
  .footer-inner{ gap: 18px; }
  .footer-right{ width:100%; }
  .footer-links{ flex-wrap: wrap; gap: 12px 16px; }
}

