/* ============================================================
   CASTLE COMPUTERS — Design System v3
   Theme: Clean modern light mode — white/slate/sky
   Fonts: Plus Jakarta Sans (display) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg:        #f4f6fb;
  --bg-alt:    #edf0f8;
  --bg-deep:   #e5e9f4;
  --surface:   #ffffff;
  --surface2:  #f0f4fa;
  --border:    rgba(59, 100, 165, 0.13);
  --border-hi: rgba(59, 100, 165, 0.28);
  --accent:     #1a6ef5;
  --accent2:    #00b4aa;
  --accent-dim: rgba(26, 110, 245, 0.09);
  --text:   #0f1f3d;
  --text2:  #4a6080;
  --muted:  #8fa3bb;
  --green: #0fa968;
  --amber: #e08a00;
  --red:   #d63b3b;
  --radius:    14px;
  --radius-lg: 22px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --shadow-sm: 0 1px 4px rgba(15,31,61,0.06), 0 4px 16px rgba(15,31,61,0.04);
  --shadow-md: 0 2px 8px rgba(15,31,61,0.07), 0 8px 32px rgba(15,31,61,0.06);
  --shadow-lg: 0 4px 24px rgba(15,31,61,0.09), 0 16px 56px rgba(15,31,61,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Canvas — very faint on light bg */
#net-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.18;
}

/* Grid overlay */
.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,110,245,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,245,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page { position: relative; z-index: 1; }

/* ── NAV ── */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 200; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15,31,61,0.05);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img {
  height: 60px; width: auto;
  filter: none;
}
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__links a {
  padding: 0.45rem 0.9rem; border-radius: 9px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text2); transition: color 0.2s, background 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--accent); background: var(--accent-dim); }
.nav__cta {
  margin-left: 0.6rem; padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  background: var(--accent) !important; color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(26,110,245,0.28) !important;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav__cta:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; box-shadow: 0 4px 22px rgba(26,110,245,0.38) !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all 0.3s; }
.nav__mobile {
  display: none; position: fixed; inset: 72px 0 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  z-index: 199; flex-direction: column; padding: 1.5rem; gap: 0.4rem;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: 0.9rem 1rem; font-size: 1rem; color: var(--text2); border-radius: 10px; }
.nav__mobile a:hover { background: var(--accent-dim); color: var(--accent); }

/* ── SECTIONS ── */
.section {
  position: relative; z-index: 1;
  padding: 7rem 3.5rem;
  max-width: 1340px; margin-inline: auto;
}
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.9rem;
}
.section__eyebrow::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--accent); flex-shrink: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); }
.section__title { font-size: clamp(2.2rem,4.2vw,3.2rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1.1rem; color: var(--text); }
.section__sub { font-size: 1rem; color: var(--text2); max-width: 500px; line-height: 1.78; margin-bottom: 3rem; }
.grad { background: linear-gradient(105deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.9rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.22s; cursor: pointer; white-space: nowrap; font-family: var(--font-body); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 2px 14px rgba(26,110,245,0.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(26,110,245,0.38); }
.btn--ghost { border: 1.5px solid var(--border-hi); color: var(--text); background: transparent; }
.btn--ghost:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
.btn--teal { background: var(--accent2); color: #fff; font-weight: 700; box-shadow: 0 2px 14px rgba(0,180,170,0.25); }
.btn--teal:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,180,170,0.35); }

/* ── LIVE BADGE ── */
.live-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0.9rem; border: 1px solid var(--border); border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); margin-bottom: 1.5rem; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,180,170,0.55); } 50% { box-shadow: 0 0 0 5px rgba(0,180,170,0); } }

/* ── DIVIDER ── */
.divider { width: 100%; height: 1px; background: var(--border); position: relative; z-index: 1; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.3rem;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(26,110,245,0.22); }
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon { width: 48px; height: 48px; border-radius: 12px; border: 1px solid rgba(26,110,245,0.14); background: rgba(26,110,245,0.07); display: grid; place-items: center; margin-bottom: 1.3rem; color: var(--accent); }
.svc-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; color: var(--text); }
.svc-card__body { font-size: 0.875rem; color: var(--text2); line-height: 1.72; }
.svc-card__tags { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; padding: 0.25rem 0.65rem; border-radius: 50px; border: 1px solid rgba(26,110,245,0.16); color: var(--accent); background: rgba(26,110,245,0.07); }

/* ── FEATURE SPLIT ── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-split--flip { direction: rtl; }
.feature-split--flip > * { direction: ltr; }

/* ── WIDGET FRAME ── */
.widget-frame { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; font-size: 0.82rem; box-shadow: var(--shadow-md); }
.widget-frame__bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.85rem 1.2rem; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.wdot { width: 9px; height: 9px; border-radius: 50%; }
.wdot--r { background: #ff5f56; } .wdot--y { background: #ffbd2e; } .wdot--g { background: #27c93f; }
.widget-frame__title { margin-left: 0.5rem; color: var(--text2); font-size: 0.75rem; letter-spacing: 0.04em; }
.flow-nodes { padding: 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.flow-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.65rem 0.9rem; border-radius: 9px; border: 1px solid var(--border); background: var(--surface2); transition: border-color 0.3s, background 0.3s; }
.flow-row.active { border-color: rgba(26,110,245,0.28); background: rgba(26,110,245,0.05); }
.flow-status { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.status--on   { background: var(--green); box-shadow: 0 0 5px rgba(15,169,104,0.4); }
.status--sync { background: var(--accent); box-shadow: 0 0 5px rgba(26,110,245,0.4); animation: syncPulse 1.8s ease-in-out infinite; }
.status--warn { background: var(--amber); box-shadow: 0 0 5px rgba(224,138,0,0.4); }
@keyframes syncPulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.flow-label { color: var(--text2); flex: 1; font-size: 0.8rem; }
.flow-val   { color: var(--accent); font-weight: 600; font-size: 0.74rem; margin-left: auto; }
.flow-connector { height: 10px; padding-left: 1.5rem; }
.flow-connector__line { width: 1px; height: 100%; background: var(--border); margin-left: 0.22rem; }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-top: 1px solid var(--border); }
.metric { padding: 0.95rem 1.1rem; background: var(--bg-alt); display: flex; flex-direction: column; gap: 0.18rem; }
.metric__val { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--text); }
.metric__lbl { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.metric__trend { font-size: 0.65rem; color: var(--green); }

/* ── TERMINAL ── */
.terminal { padding: 1.3rem; font-family: 'Courier New', monospace; font-size: 0.78rem; min-height: 200px; background: #f8faff; }
.tl { margin-bottom: 0.26rem; opacity: 0; animation: tlFade 0.3s ease forwards; }
.tl--prompt { color: #0e7a6a; } .tl--cmd { color: var(--text); } .tl--out { color: var(--text2); }
.tl--ok { color: var(--green); } .tl--warn { color: var(--amber); } .tl--err { color: var(--red); }
@keyframes tlFade { from{opacity:0;transform:translateX(-4px)} to{opacity:1;transform:none} }
.cursor { display:inline-block; width:7px; height:12px; background:var(--accent); animation:blink 1.1s step-end infinite; vertical-align:text-bottom; margin-left:2px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── REMOTE SUPPORT ── */
.remote-section { background: linear-gradient(180deg, #edf2fb 0%, #e8eff9 100%); border-top: 1px solid rgba(26,110,245,0.1); border-bottom: 1px solid rgba(26,110,245,0.1); position: relative; z-index: 1; }
.remote-inner { max-width: 1340px; margin-inline: auto; padding: 5rem 3.5rem; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.remote-widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.remote-widget__header { background: linear-gradient(135deg, var(--accent), #0d5bd4); padding: 1.5rem 1.8rem; display: flex; align-items: center; gap: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.remote-widget__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.2); display: grid; place-items: center; flex-shrink: 0; }
.remote-widget__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; }
.remote-widget__sub   { font-size: 0.78rem; color: rgba(255,255,255,0.75); margin-top: 0.1rem; }
.remote-widget__body { padding: 1.8rem; }
.remote-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem; }
.remote-tab { padding: 0.65rem 1rem; text-align: center; font-size: 0.8rem; font-weight: 600; background: var(--bg-alt); color: var(--text2); cursor: pointer; transition: all 0.2s; }
.remote-tab.active { background: var(--accent); color: #fff; }
.remote-tab-content { display: none; }
.remote-tab-content.active { display: block; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.75rem; font-weight: 600; color: var(--text2); letter-spacing: 0.04em; }
.form-field input { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: 9px; padding: 0.7rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,110,245,0.1); background: var(--surface); }
.form-field input::placeholder { color: var(--muted); }
.remote-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.8rem; line-height: 1.6; }
.remote-note a { color: var(--accent); }

/* ── PARTNERS BOX ── */
.partners-box { position: relative; z-index: 1; max-width: 1340px; margin-inline: auto; padding: 0 3.5rem 5rem; }
.partners-box__inner { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: 3rem 3.5rem; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.partners-box__inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.partners-box__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.partners-box__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.015em; }
.partners-box__sub { font-size: 0.82rem; color: var(--text2); margin-top: 0.2rem; }
.partners-box__badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.8rem; border: 1px solid var(--border); border-radius: 50px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); white-space: nowrap; }
.partners-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 2.5rem; }
.partners-grid { display: grid; grid-template-columns: repeat(11, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--border); gap: 1px; }
.partner-card { background: var(--surface); padding: 1.6rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; text-align: center; transition: background 0.25s, transform 0.25s; cursor: default; position: relative; }
.partner-card:hover { background: var(--bg-alt); transform: translateY(-2px); z-index: 1; }
.partner-card__logo { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: transform 0.25s; }
.partner-card:hover .partner-card__logo { transform: scale(1.1); }
.partner-card__logo img { width: 48px; height: 48px; object-fit: contain; opacity: 0.72; transition: opacity 0.25s; }
.partner-card:hover .partner-card__logo img { opacity: 1; }
.partner-card__logo svg { width: 48px; height: 48px; opacity: 0.85; transition: opacity 0.25s; }
.partner-card:hover .partner-card__logo svg { opacity: 1; }
.partner-card__name { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; color: var(--text2); letter-spacing: 0.04em; text-transform: uppercase; }
.partner-card:hover .partner-card__name { color: var(--text); }

/* ── TRUST BAR ── */
.trust-bar { padding: 2.8rem 3.5rem; max-width: 1340px; margin-inline: auto; position: relative; z-index: 1; }
.trust-bar__label { text-align: center; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.8rem; }
.trust-bar__logos { display: flex; justify-content: center; align-items: center; gap: 3.5rem; flex-wrap: wrap; }
.trust-logo { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--muted); letter-spacing: 0.03em; transition: color 0.2s; }
.trust-logo:hover { color: var(--text); }

/* ── CTA BAND ── */
.cta-band { position: relative; z-index: 1; max-width: 1340px; margin-inline: auto; padding: 3.5rem 4rem; border: 1px solid rgba(26,110,245,0.16); border-radius: 26px; background: linear-gradient(135deg, rgba(26,110,245,0.05), rgba(0,180,170,0.04)); display: flex; align-items: center; justify-content: space-between; gap: 3rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.cta-band::before { content: ''; position: absolute; top: -100px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(26,110,245,0.07), transparent 70%); pointer-events: none; }
.cta-band__title { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.cta-band__sub { color: var(--text2); max-width: 440px; font-size: 0.93rem; }
.cta-band__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; flex-shrink: 0; }
.cta-band__phone { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.cta-band__phone:hover { color: var(--accent2); }

/* ── FOOTER ── */
.footer-wrap { background: #e8ecf4; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 3rem 3.5rem; max-width: 1340px; margin-inline: auto; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer__brand p { font-size: 0.84rem; color: var(--text2); margin-top: 0.9rem; max-width: 275px; line-height: 1.7; }
.footer__logo img {
  height: 36px; width: auto;
  filter: none;
}
.footer__col h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text); margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a { font-size: 0.84rem; color: var(--text2); transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--muted); gap: 1rem; flex-wrap: wrap; }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }

/* ── PAGE HERO ── */
.page-hero { padding: 9rem 3.5rem 5rem; max-width: 1340px; margin-inline: auto; position: relative; z-index: 1; }

/* ── ALTERNATING SECTIONS ── */
.section-raised { background: linear-gradient(180deg, #f0f5ff 0%, #edf2fb 100%); border-top: 1px solid rgba(26,110,245,0.1); border-bottom: 1px solid rgba(26,110,245,0.1); position: relative; z-index: 1; }
.section--raised { background: linear-gradient(180deg, #f0f5ff 0%, #edf2fb 100%); position: relative; z-index: 1; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { display: flex; gap: 1rem; padding: 1.2rem 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); align-items: flex-start; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-sm); }
.info-card:hover { border-color: rgba(26,110,245,0.25); transform: translateX(3px); box-shadow: var(--shadow-md); }
.info-card__icon { display: flex; align-items: flex-start; padding-top: 2px; color: var(--accent); flex-shrink: 0; }
.info-card__icon .lucide { width: 18px; height: 18px; }
.info-card__title { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; margin-bottom: 0.2rem; color: var(--text); }
.info-card__val { font-size: 0.85rem; color: var(--text2); }
.info-card__val a { color: var(--accent); }
.info-card__val a:hover { color: var(--accent2); }

/* ── ABOUT ── */
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.8rem; }
.value-card { padding: 1.9rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); text-align: center; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-sm); }
.value-card:hover { border-color: rgba(26,110,245,0.2); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card__icon { display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; color: var(--accent); }
.value-card__title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.45rem; color: var(--text); }
.value-card__body { font-size: 0.83rem; color: var(--text2); line-height: 1.65; }

/* ── STAT CHIP ── */
.stat-chip__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--text); }
.stat-chip__label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 0.2rem; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; padding: 0.9rem 1.4rem; background: var(--surface); border: 1px solid var(--accent2); border-radius: var(--radius); color: var(--accent2); font-weight: 600; font-size: 0.86rem; z-index: 999; transform: translateY(80px); opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); pointer-events: none; box-shadow: var(--shadow-md); }
.toast.show { transform: none; opacity: 1; }

/* ── LUCIDE ── */
.lucide { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; fill: none; flex-shrink: 0; }
.svc-card__icon .lucide { width: 24px; height: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) { .partners-grid { grid-template-columns: repeat(6, 1fr) !important; } }
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } .footer__grid { grid-template-columns: 1fr 1fr; } .about-values { grid-template-columns: repeat(2, 1fr); } .remote-inner { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 800px) {
  .nav { padding: 0 1.5rem; } .nav__links { display: none; } .nav__hamburger { display: flex; }
  .section { padding: 4rem 1.5rem; } .trust-bar, .page-hero { padding-inline: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; } .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split--flip { direction: ltr; } .cta-band { flex-direction: column; padding: 2rem 1.5rem; }
  .cta-band__actions { align-items: flex-start; } .footer { padding-inline: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; } .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr 1fr; } .partners-box { padding-inline: 1.5rem; }
  .partners-box__inner { padding: 2rem 1.5rem; } .remote-inner { padding: 3rem 1.5rem; }
  .partners-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 500px) { .partners-grid { grid-template-columns: repeat(3, 1fr) !important; } }
