/* ================================================================
   Bright Link Medical Supply — design system
   ================================================================ */
:root {
  --brand-blue: #4F5DFA;
  --brand-blue-dark: #3A46D4;
  --brand-blue-light: #EEF0FF;
  --brand-red: #F64740;
  --brand-red-light: #FFE9E8;
  --ink: #0E1330;
  --ink-soft: #3B4167;
  --muted: #6B7196;
  --line: #E7EAF3;
  --bg: #FFFFFF;
  --bg-soft: #F6F7FC;
  --shadow-sm: 0 1px 2px rgba(14,19,48,.06), 0 2px 6px rgba(14,19,48,.04);
  --shadow-md: 0 10px 30px rgba(14,19,48,.08), 0 2px 6px rgba(14,19,48,.04);
  --shadow-lg: 0 25px 60px rgba(79,93,250,.18), 0 8px 20px rgba(14,19,48,.06);
  --radius: 14px;
  --radius-lg: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(231,234,243,0.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { height: 36px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color .2s ease; position: relative;
}
.nav-links a:hover { color: var(--brand-blue); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px;
  background: var(--brand-red); border-radius: 2px;
}
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 11px 20px; border-radius: 100px;
  font-weight: 600 !important; font-size: 14px !important;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { background: var(--brand-blue); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-dark:hover { background: var(--brand-red); color: #fff; transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

/* COMMON */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-blue-light); color: var(--brand-blue-dark);
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 4px rgba(246,71,64,.18); }
section { padding: 110px 0; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* PAGE HEADER */
.page-header {
  position: relative; padding: 90px 0 90px; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 90% -20%, rgba(79,93,250,0.18), transparent 60%),
    radial-gradient(800px 500px at -10% 120%, rgba(246,71,64,0.12), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F7FC 100%);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 22px; }
.page-header h1 { font-size: clamp(42px, 6vw, 78px); max-width: 900px; margin: 0 auto 22px; }
.page-header h1 .accent {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #6D7AFF 60%, var(--brand-red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-header p { font-size: 19px; color: var(--ink-soft); max-width: 680px; margin: 0 auto; }
.ph-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ph-deco .ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(79,93,250,.25); }
.ph-deco .ring.r1 { width: 380px; height: 380px; top: -90px; left: -90px; }
.ph-deco .ring.r2 { width: 260px; height: 260px; bottom: -60px; right: -60px; border-color: rgba(246,71,64,.25); }
.ph-deco .blob { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 6px rgba(246,71,64,.18); }
.ph-deco .blob.b1 { top: 30%; right: 10%; }
.ph-deco .blob.b2 { top: 70%; left: 8%; background: var(--brand-blue); box-shadow: 0 0 0 6px rgba(79,93,250,.18); width: 12px; height: 12px; }
.page-header > .container { position: relative; z-index: 1; }

/* FOOTER */
footer { background: #0A0E24; color: rgba(255,255,255,.75); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
footer .brand svg path, footer .brand svg text { fill: #fff; }
footer h5 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
footer .foot-about { margin-top: 20px; font-size: 14.5px; max-width: 380px; color: rgba(255,255,255,.6); }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul li a, footer ul li { font-size: 14.5px; color: rgba(255,255,255,.7); transition: color .2s ease; cursor: pointer; }
footer ul li a:hover { color: #fff; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13.5px; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 12px; }
.foot-credit a { color: #fff; font-weight: 600; border-bottom: 1px dashed rgba(255,255,255,.35); transition: color .2s ease, border-color .2s ease; }
.foot-credit a:hover { color: #6EE7B7; border-color: #6EE7B7; }
.foot-credit .heart { display: inline-block; color: #6EE7B7; animation: heartbeat 1.6s ease-in-out infinite; margin: 0 2px; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.18); }
  50% { transform: scale(0.98); }
  75% { transform: scale(1.12); }
}

/* TRUST BAR */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; text-align: center; }
.trust .num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 32px; color: var(--ink); letter-spacing: -0.02em; }
.trust .lbl { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; font-weight: 600; }

/* CARDS */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(79,93,250,.25); }
.card .ic-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, #fff 100%);
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--brand-blue); border: 1px solid rgba(79,93,250,.15);
}
.card.accent .ic-wrap { background: linear-gradient(135deg, var(--brand-red-light) 0%, #fff 100%); color: var(--brand-red); border-color: rgba(246,71,64,.2); }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 18px; }
.card ul li { font-size: 14.5px; color: var(--ink-soft); padding: 8px 0 8px 22px; position: relative; border-top: 1px dashed var(--line); }
.card ul li:first-child { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand-blue); opacity: .85; }
.card.accent ul li::before { background: var(--brand-red); }

/* FORMS */
form.inquiry { display: grid; gap: 14px; }
form.inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.inquiry label { display: block; font-size: 12.5px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; margin-bottom: 8px; }
form.inquiry input, form.inquiry textarea, form.inquiry select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 14px 16px; color: #fff; font-size: 15px;
  font-family: inherit; transition: border-color .2s ease, background .2s ease;
}
form.inquiry input:focus, form.inquiry textarea:focus, form.inquiry select:focus {
  outline: none; border-color: var(--brand-blue); background: rgba(79,93,250,.08);
}
form.inquiry textarea { resize: vertical; min-height: 110px; }
form.inquiry button {
  background: #fff; color: var(--ink);
  padding: 15px 26px; border: none; border-radius: 100px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: all .2s ease; justify-self: start;
  display: inline-flex; align-items: center; gap: 10px;
}
form.inquiry button:hover { background: var(--brand-red); color: #fff; transform: translateY(-2px); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ PHOTOS ============ */
/* Photo containers have branded gradient fallback backgrounds.
   If a real JPG loads, it covers the gradient. If not, the gradient shows. */
.photo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  background:
    radial-gradient(400px 260px at 30% 20%, rgba(79,93,250,.35), transparent 65%),
    radial-gradient(300px 200px at 80% 80%, rgba(246,71,64,.28), transparent 65%),
    linear-gradient(135deg, #1a1f45 0%, #2c3170 55%, #4F5DFA 100%);
}
.photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo:hover img { transform: scale(1.05); }
.photo.light {
  background:
    radial-gradient(400px 260px at 30% 20%, rgba(79,93,250,.3), transparent 65%),
    radial-gradient(300px 200px at 80% 80%, rgba(246,71,64,.25), transparent 65%),
    linear-gradient(135deg, #EEF0FF 0%, #C5CCFF 100%);
}
.photo.warm {
  background:
    radial-gradient(400px 260px at 30% 20%, rgba(246,71,64,.3), transparent 65%),
    radial-gradient(300px 200px at 80% 80%, rgba(79,93,250,.22), transparent 65%),
    linear-gradient(135deg, #FFE9E8 0%, #FFB5B0 100%);
}
/* Show subtle placeholder icon when image fails or isn't there yet */
.photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.photo.light::before {
  background-image:
    linear-gradient(rgba(79,93,250,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,93,250,0.08) 1px, transparent 1px);
}
/* Central medical cross shown behind image — only visible if image doesn't cover */
.photo::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 72px; height: 72px;
  transform: translate(-50%, -50%);
  background-color: rgba(255,255,255,.08);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent 42%, #F64740 42%, #F64740 58%, transparent 58%),
    linear-gradient(to bottom, transparent 42%, #F64740 42%, #F64740 58%, transparent 58%);
}
.photo img:not([src=""]) ~ * { z-index: 1; }
/* If image successfully loads, dim the placeholder decoration */
.photo img { z-index: 1; }

/* Old illustration class kept for equipment product drawings */
.illus {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.illus svg { width: 100%; height: 100%; display: block; }

/* Caption overlay for gallery illustrations */
.illus-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px; color: #fff; z-index: 2;
  pointer-events: none;
}
.illus-caption .ct { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: #FFC3C0; margin-bottom: 4px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.illus-caption .th { font-weight: 700; font-size: 17px; font-family: 'Plus Jakarta Sans'; line-height: 1.25; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.illus.has-caption::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(14,19,48,.85) 100%);
  pointer-events: none; z-index: 1;
}

/* Hero photo (home) */
.hero-illustration {
  position: relative; aspect-ratio: 4/5; max-height: 620px;
  width: 100%;
}
.hero-illustration > .photo {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hv-chip {
  position: absolute; background: #fff; padding: 14px 18px; border-radius: 16px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); z-index: 2;
}
.hv-chip .ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.hv-chip .ic.blue { background: var(--brand-blue-light); color: var(--brand-blue-dark); }
.hv-chip .ic.red { background: var(--brand-red-light); color: var(--brand-red); }
.hv-chip .t1 { font-weight: 700; font-size: 14px; color: var(--ink); }
.hv-chip .t2 { font-size: 12px; color: var(--muted); }
.hv-chip.c1 { top: 8%; left: -6%; animation: float 6s ease-in-out infinite; }
.hv-chip.c2 { bottom: 10%; right: -6%; animation: float 7s ease-in-out infinite reverse; }
.hv-chip.c3 { bottom: 38%; left: -10%; animation: float 8s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Gallery */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px; gap: 18px;
}
.gallery-grid .photo {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.gallery-grid .photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-grid .g1 { grid-row: 1 / 3; }
/* Caption overlay */
.photo-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px; color: #fff; z-index: 3;
  pointer-events: none;
}
.photo-caption .ct { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: #FFC3C0; margin-bottom: 4px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.photo-caption .th { font-weight: 700; font-size: 17px; font-family: 'Plus Jakarta Sans'; line-height: 1.25; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.photo.has-caption > img { position: relative; }
.photo.has-caption::before, .photo.has-caption::after { /* hide placeholder decoration for captioned photos that have images */ }
.photo.has-caption img + .photo-caption::before {
  content: ""; position: absolute; left: -20px; right: -20px; bottom: -20px; height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(14,19,48,.85) 100%);
  pointer-events: none; z-index: -1;
}
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-grid .g1 { grid-row: 1 / 2; grid-column: 1 / 3; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gallery-grid .g1 { grid-column: 1 / 2; }
}

/* Testimonials */
.testimonials-home { background: #fff; }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.t-card::before {
  content: "\201C"; position: absolute; top: -20px; right: 20px;
  font-family: 'Plus Jakarta Sans'; font-size: 140px; font-weight: 800;
  color: var(--brand-blue-light); line-height: 1; pointer-events: none;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(79,93,250,.25); }
.t-card .stars { color: var(--brand-red); font-size: 15px; margin-bottom: 16px; letter-spacing: 3px; position: relative; z-index: 1; }
.t-card blockquote {
  font-size: 16px; color: var(--ink); font-weight: 500;
  margin-bottom: 24px; line-height: 1.6; position: relative; z-index: 1;
  font-family: inherit; font-style: normal;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  border: 2px solid #fff; box-shadow: var(--shadow-sm); flex-shrink: 0;
  background: linear-gradient(135deg, #4F5DFA, #F64740);
  position: relative;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t-avatar svg { width: 100%; height: 100%; display: block; }
.t-author .ta-n { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.t-author .ta-r { color: var(--muted); font-size: 13px; }

/* Why-us with photo */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-illus {
  position: relative; border-radius: var(--radius-lg); aspect-ratio: 5/4;
  overflow: hidden; box-shadow: var(--shadow-lg);
  background:
    radial-gradient(500px 320px at 20% 20%, rgba(79,93,250,.5), transparent 60%),
    radial-gradient(400px 280px at 80% 80%, rgba(246,71,64,.4), transparent 60%),
    linear-gradient(135deg, #1a1f45 0%, #2c3170 100%);
}
.why-illus > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: transform .6s ease;
}
.why-illus:hover > img { transform: scale(1.03); }
.why-illus::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(79,93,250,.2) 0%, transparent 50%, rgba(246,71,64,.15) 100%);
  pointer-events: none;
}
.why-illus .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-illus svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.why-tile {
  position: absolute; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-radius: 18px; padding: 14px 18px; box-shadow: 0 20px 50px rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 12px; min-width: 220px; z-index: 3;
}
.why-tile .pic { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-blue-light); color: var(--brand-blue-dark); display: grid; place-items: center; flex-shrink: 0; }
.why-tile.t1 { top: 8%; right: -20px; animation: float 7s ease-in-out infinite; }
.why-tile.t2 { top: 48%; left: -20px; animation: float 8s ease-in-out infinite reverse; }
.why-tile.t2 .pic { background: var(--brand-red-light); color: var(--brand-red); }
.why-tile.t3 { bottom: 8%; right: 10%; animation: float 9s ease-in-out infinite; }
.why-tile .tn { font-weight: 700; font-size: 14px; color: var(--ink); }
.why-tile .td { font-size: 12px; color: var(--muted); }
.why-content h2 { font-size: clamp(32px, 4vw, 46px); margin: 20px 0; }
.why-content > p { color: var(--ink-soft); font-size: 17px; margin-bottom: 30px; max-width: 500px; }
.why-list { display: grid; gap: 18px; }
.why-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: flex-start; padding: 18px; border-radius: 14px; transition: background .2s ease; }
.why-item:hover { background: var(--bg-soft); }
.why-item .check { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-blue); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.why-item h4 { font-size: 17px; margin-bottom: 4px; font-weight: 700; }
.why-item p { color: var(--ink-soft); font-size: 14.5px; }

/* CTA Strip (home) */
.cta-strip { background: linear-gradient(135deg, #0E1330 0%, #2c3170 60%, #4F5DFA 100%); color: #fff; padding: 80px 0; }
.cta-strip-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: center; }
.cta-strip h2 { font-size: clamp(28px, 3.4vw, 40px); color: #fff; max-width: 620px; }
.cta-strip p { color: rgba(255,255,255,.75); margin-top: 12px; max-width: 560px; }
.cta-strip .cta-right { text-align: right; }

/* HOME hero */
.hero {
  position: relative; padding: 90px 0 100px; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(79,93,250,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(246,71,64,0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F7FC 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.6vw, 68px); margin: 22px 0 22px; color: var(--ink); }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #6D7AFF 60%, var(--brand-red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 18.5px; color: var(--ink-soft); max-width: 540px; margin-bottom: 36px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta .mt { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.hero-meta .mt svg { width: 18px; height: 18px; color: var(--brand-blue); }

/* Services cards (home) */
.services-section { background: var(--bg-soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ABOUT */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-grid h2 { font-size: clamp(32px, 4vw, 46px); margin: 18px 0 22px; }
.story-grid p { color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; }
.story-illus {
  position: relative; aspect-ratio: 1/1.05; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(600px 380px at 25% 20%, rgba(79,93,250,.4), transparent 60%),
    radial-gradient(500px 380px at 80% 85%, rgba(246,71,64,.3), transparent 60%),
    linear-gradient(135deg, #141938 0%, #2e3478 100%);
  box-shadow: var(--shadow-lg);
}
.story-illus > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.story-illus > img + .grid-bg { z-index: 2; }
.story-illus::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(14,19,48,.45) 0%, rgba(79,93,250,.2) 100%);
  pointer-events: none;
}
.story-illus svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.story-illus .quote { z-index: 3 !important; }
.story-illus .grid-bg { z-index: 2 !important; }
.story-illus .grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.story-illus .quote { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 40px; z-index: 3; }
.story-illus .quote-card { background: rgba(255,255,255,.97); border-radius: 20px; padding: 32px 30px; max-width: 86%; box-shadow: 0 30px 60px rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.6); }
.story-illus .quote-card .qmark { font-family: 'Plus Jakarta Sans'; font-size: 62px; font-weight: 800; color: var(--brand-red); line-height: 0.5; margin-bottom: 10px; }
.story-illus .quote-card .qtext { font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 18px; font-family: 'Plus Jakarta Sans'; }
.story-illus .quote-card .qwho { display: flex; align-items: center; gap: 12px; }
.story-illus .quote-card .avatar-mini { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.story-illus .quote-card .qmeta .n { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.story-illus .quote-card .qmeta .r { font-size: 13px; color: var(--muted); }

.values { background: var(--bg-soft); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.val-card {
  background: #fff; padding: 34px 30px; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.val-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.val-card::after { content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 4px; background: linear-gradient(90deg, var(--brand-blue), var(--brand-red)); border-radius: 0 0 4px 0; }
.val-card .num { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 15px; color: var(--brand-blue); letter-spacing: 0.08em; margin-bottom: 14px; }
.val-card h3 { font-size: 22px; margin-bottom: 10px; }
.val-card p { color: var(--ink-soft); font-size: 15px; }

.tl { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; }
.tl-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: linear-gradient(180deg, rgba(79,93,250,.25), rgba(246,71,64,.25), rgba(79,93,250,.25)); transform: translateX(-1px); }
.tl-point { padding: 30px 50px; position: relative; }
.tl-point .yr { font-family: 'Plus Jakarta Sans'; font-weight: 800; color: var(--brand-blue); font-size: 18px; margin-bottom: 6px; letter-spacing: 0.04em; }
.tl-point .tl-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.tl-point .tl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tl-point h4 { font-size: 18px; margin-bottom: 8px; }
.tl-point p { color: var(--ink-soft); font-size: 14.5px; }
.tl-point::before { content: ""; position: absolute; top: 40px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(246,71,64,.25); }
.tl-point.left { text-align: right; }
.tl-point.left::before { right: -8px; }
.tl-point.right::before { left: -8px; }

.founder-card { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.founder-illus {
  position: relative;
  background:
    radial-gradient(400px 260px at 40% 20%, rgba(79,93,250,.5), transparent 60%),
    radial-gradient(300px 260px at 80% 80%, rgba(246,71,64,.4), transparent 60%),
    linear-gradient(135deg, #141938 0%, #2e3478 100%);
  display: grid; place-items: center; min-height: 360px; overflow: hidden;
}
.founder-illus > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.founder-illus::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(14,19,48,.5) 0%, transparent 40%, rgba(79,93,250,.1) 100%);
  pointer-events: none;
}
.founder-illus .badge-l { z-index: 3; }
.founder-illus svg.portrait { width: 75%; max-width: 280px; position: relative; z-index: 1; }
.founder-illus .badge-l {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 14px 18px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; gap: 12px; align-items: center;
  backdrop-filter: blur(12px); z-index: 2;
}
.founder-illus .badge-l svg { color: #A9B2FF; }
.founder-illus .badge-l .bt1 { font-weight: 700; font-size: 13px; }
.founder-illus .badge-l .bt2 { font-size: 12px; color: rgba(255,255,255,.65); }
.founder-bio { padding: 50px; }
.founder-bio .role { font-size: 13px; text-transform: uppercase; color: var(--brand-blue-dark); font-weight: 600; letter-spacing: 0.08em; }
.founder-bio h3 { font-size: clamp(28px, 3vw, 36px); margin: 10px 0 18px; }
.founder-bio p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.founder-contact { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* Team strip */
.team-strip { padding: 90px 0 110px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-member { text-align: center; }
.team-member .avatar-illus {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 18px;
  border: 1px solid var(--line); position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-member:hover .avatar-illus { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-member .avatar-illus svg { width: 100%; height: 100%; display: block; }
.team-member .avatar-illus img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.team-member .avatar-illus {
  background:
    radial-gradient(300px 200px at 30% 30%, rgba(79,93,250,.3), transparent 60%),
    radial-gradient(200px 150px at 75% 75%, rgba(246,71,64,.25), transparent 60%),
    linear-gradient(135deg, #EEF0FF 0%, #C5CCFF 100%);
}
.team-member h4 { font-size: 17px; margin-bottom: 4px; }
.team-member .role { color: var(--muted); font-size: 13.5px; font-weight: 500; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2,1fr); } }

/* Stats band */
.stats-band {
  padding: 70px 0; color: #fff;
  background:
    radial-gradient(600px 400px at 10% 10%, rgba(79,93,250,.25), transparent 60%),
    radial-gradient(600px 400px at 90% 90%, rgba(246,71,64,.18), transparent 60%),
    linear-gradient(135deg, #0A0E24 0%, #1a1f45 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stats-grid .n { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 52px; background: linear-gradient(135deg, #fff 0%, #A9B2FF 80%); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.03em; }
.stats-grid .l { color: rgba(255,255,255,.65); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 6px; }

/* SERVICES page */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-row.reverse { direction: rtl; }
.svc-row.reverse > * { direction: ltr; }
.svc-row .svc-text .num { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 14px; letter-spacing: 0.12em; color: var(--brand-blue); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 10px; }
.svc-row .svc-text .num::before { content: ""; width: 28px; height: 2px; background: var(--brand-red); }
.svc-row h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 20px; }
.svc-row p.lead { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 26px; max-width: 520px; }
.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-bottom: 28px; }
.svc-feat { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.svc-feat .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--brand-blue-light); color: var(--brand-blue-dark); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.svc-feat p { font-size: 14.5px; color: var(--ink); font-weight: 500; margin: 0; }
.svc-illus {
  position: relative; aspect-ratio: 5/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  background:
    radial-gradient(500px 380px at 30% 30%, rgba(79,93,250,.3), transparent 60%),
    radial-gradient(400px 300px at 70% 80%, rgba(246,71,64,.22), transparent 60%),
    linear-gradient(135deg, #141938 0%, #2e3478 100%);
}
.svc-illus > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: transform .6s ease;
}
.svc-illus:hover > img { transform: scale(1.03); }
.svc-illus svg.scene { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }

.process { background: var(--bg-soft); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-step .step-num { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.process-step:nth-child(2) .step-num { background: var(--brand-blue); }
.process-step:nth-child(3) .step-num { background: var(--brand-red); }
.process-step:nth-child(4) .step-num { background: linear-gradient(135deg, var(--brand-blue), var(--brand-red)); }
.process-step h4 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 14.5px; }

.testimonial { background: radial-gradient(600px 400px at 90% 10%, rgba(246,71,64,.12), transparent 60%), radial-gradient(600px 400px at 10% 90%, rgba(79,93,250,.22), transparent 60%), linear-gradient(135deg, #0E1330 0%, #1a1f45 100%); color: #fff; }
.testimonial blockquote { max-width: 860px; margin: 0 auto; font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: clamp(24px, 3.2vw, 36px); line-height: 1.35; color: #fff; text-align: center; letter-spacing: -0.02em; }
.testimonial blockquote::before { content: "\201C"; display: block; font-size: 90px; line-height: 0.3; margin-bottom: 20px; color: var(--brand-red); }
.testimonial .author { margin-top: 30px; text-align: center; color: rgba(255,255,255,.7); font-weight: 500; font-size: 15px; }
.testimonial .author strong { color: #fff; font-weight: 700; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.pbox { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: all .3s ease; position: relative; }
.pbox:hover { border-color: var(--brand-blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pbox.highlight { border-color: var(--brand-red); background: linear-gradient(180deg, #fff 0%, var(--brand-red-light) 200%); }
.pbox .tag { display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; background: var(--brand-blue-light); color: var(--brand-blue-dark); padding: 4px 10px; border-radius: 100px; margin-bottom: 16px; }
.pbox.highlight .tag { background: var(--brand-red); color: #fff; }
.pbox h3 { font-size: 24px; margin-bottom: 10px; }
.pbox .pbox-sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; }
.pbox ul { list-style: none; display: grid; gap: 10px; }
.pbox ul li { font-size: 14.5px; color: var(--ink); padding-left: 26px; position: relative; }
.pbox ul li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--brand-blue); font-weight: 700; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-blue-light); display: grid; place-items: center; font-size: 11px; }

/* EQUIPMENT */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.filter-chip { padding: 10px 18px; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--ink-soft); cursor: pointer; font-weight: 600; font-size: 14px; transition: all .2s ease; font-family: inherit; }
.filter-chip:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.eq-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.eq-cat-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; cursor: pointer; display: flex; flex-direction: column; }
.eq-cat-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(79,93,250,.3); }
.eq-illus {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #EEF0FF 0%, #C5CCFF 100%);
}
.eq-illus img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.eq-cat-item:hover .eq-illus img { transform: scale(1.05); }
.eq-illus svg { width: 100%; height: 100%; display: block; transition: transform .5s ease; position: relative; z-index: 1; }
.eq-cat-item:hover .eq-illus svg { transform: scale(1.05); }
.eq-cat-item.accent .eq-illus { background: linear-gradient(135deg, #FFE9E8 0%, #FFB5B0 100%); }
.eq-illus::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,19,48,.15) 100%);
  pointer-events: none; z-index: 2;
}
.eq-cat-item .eq-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.eq-cat-item .eq-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--brand-blue-dark); margin-bottom: 10px; }
.eq-cat-item.accent .eq-tag { color: var(--brand-red); }
.eq-cat-item h3 { font-size: 19px; margin-bottom: 8px; }
.eq-cat-item p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 14px; flex: 1; }
.eq-cat-item .eq-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; }
.eq-cat-item .eq-meta .sku-count { color: var(--muted); font-weight: 500; }
.eq-cat-item .eq-meta .cta { color: var(--brand-blue); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: transform .2s ease, color .2s ease; }
.eq-cat-item:hover .cta { color: var(--brand-red); transform: translateX(3px); }

.spotlight { background: var(--bg-soft); }
.spotlight-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 22px; }
.spot { border-radius: var(--radius-lg); padding: 36px; color: #fff; position: relative; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .3s ease; }
.spot:hover { transform: translateY(-6px); }
.spot .spot-illus { position: absolute; inset: 0; opacity: .35; z-index: 0; overflow: hidden; }
.spot .spot-illus svg { width: 100%; height: 100%; display: block; }
.spot .spot-illus img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .5; }
.spot > *:not(.spot-illus) { position: relative; z-index: 1; }
.spot .tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); backdrop-filter: blur(10px); padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; border: 1px solid rgba(255,255,255,.2); margin-bottom: 18px; text-transform: uppercase; align-self: flex-start; }
.spot h3 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.spot p { color: rgba(255,255,255,.8); font-size: 15px; max-width: 420px; margin-bottom: 18px; }
.spot .cta-inline { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #fff; }
.spot .cta-inline:hover { color: #FFC3C0; }
.spot-1 { background: radial-gradient(500px 360px at 80% 10%, rgba(246,71,64,.35), transparent 60%), linear-gradient(135deg, #1a1f45 0%, #4F5DFA 100%); }
.spot-2 { background: radial-gradient(400px 260px at 20% 90%, rgba(79,93,250,.35), transparent 60%), linear-gradient(135deg, #F64740 0%, #a13530 100%); }
.spot-3 { background: radial-gradient(400px 260px at 80% 80%, rgba(246,71,64,.25), transparent 60%), linear-gradient(135deg, #0E1330 0%, #2c3170 100%); }
.spot .spot-icon { position: absolute; top: 28px; right: 28px; z-index: 1; width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; }

.partners { padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.partners .head { text-align: center; margin-bottom: 40px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.partner-logos { display: flex; flex-wrap: wrap; gap: 60px; justify-content: center; align-items: center; }
.partner-logo { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 22px; color: var(--muted); letter-spacing: -0.02em; opacity: .6; transition: all .2s ease; cursor: default; display: flex; align-items: center; gap: 8px; }
.partner-logo:hover { opacity: 1; color: var(--ink); }
.partner-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-red); }

.how { background: radial-gradient(600px 400px at 90% 10%, rgba(246,71,64,.12), transparent 60%), radial-gradient(600px 400px at 10% 90%, rgba(79,93,250,.22), transparent 60%), linear-gradient(135deg, #0E1330 0%, #1a1f45 100%); color: #fff; }
.how .section-head h2 { color: #fff; }
.how .section-head p { color: rgba(255,255,255,.7); }
.how .section-head .eyebrow { background: rgba(255,255,255,.1); color: #fff; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.how-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 32px 28px; transition: all .25s ease; }
.how-card:hover { background: rgba(255,255,255,.08); border-color: rgba(79,93,250,.4); transform: translateY(-4px); }
.how-card .ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-blue), var(--brand-red)); display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.how-card h4 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.how-card p { color: rgba(255,255,255,.7); font-size: 14.5px; margin-bottom: 14px; }
.how-card a { color: #A9B2FF; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.how-card a:hover { color: #fff; }

/* CONTACT */
.c-hero { background: radial-gradient(600px 400px at 90% 10%, rgba(246,71,64,.12), transparent 60%), radial-gradient(600px 400px at 10% 90%, rgba(79,93,250,.22), transparent 60%), linear-gradient(135deg, #0E1330 0%, #1a1f45 100%); color: #fff; padding: 90px 0 120px; position: relative; overflow: hidden; }
.c-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%); }
.c-hero .container { position: relative; z-index: 1; }
.c-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; }
.c-hero h1 { font-size: clamp(40px, 5.6vw, 68px); color: #fff; margin: 20px 0 22px; }
.c-hero h1 .accent { background: linear-gradient(135deg, #fff 0%, #A9B2FF 60%, #FF8A86 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.c-hero p.lead { color: rgba(255,255,255,.8); font-size: 19px; max-width: 540px; margin-bottom: 36px; }
.c-hero .eyebrow { background: rgba(255,255,255,.1); color: #fff; }
.c-contacts { display: grid; gap: 14px; }
.c-contact-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: center; padding: 22px 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; transition: all .25s ease; text-decoration: none; color: inherit; }
.c-contact-row:hover { background: rgba(255,255,255,.08); border-color: rgba(79,93,250,.4); transform: translateX(4px); }
.c-contact-row .ic { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--brand-blue), var(--brand-red)); display: grid; place-items: center; color: #fff; }
.c-contact-row .lbl { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.c-contact-row .val { font-size: 19px; color: #fff; font-weight: 600; margin-top: 3px; font-family: 'Plus Jakarta Sans'; }
.c-contact-row .gto { color: rgba(255,255,255,.5); transition: color .2s ease, transform .2s ease; }
.c-contact-row:hover .gto { color: #fff; transform: translateX(4px); }
.form-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 40px; backdrop-filter: blur(10px); }
.form-card h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.form-card > p { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 15px; }

.mi { padding: 110px 0; background: var(--bg-soft); }
.mi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mi-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #EEF0FF 0%, #FFE9E8 100%); aspect-ratio: 1/1.05; display: grid; place-items: center; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.mi-map svg { width: 78%; height: auto; }
.mi-pin { position: absolute; top: 52%; left: 62%; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 6px rgba(246,71,64,.22), 0 0 0 14px rgba(246,71,64,.1); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 6px rgba(246,71,64,.22), 0 0 0 14px rgba(246,71,64,.1); } 50% { box-shadow: 0 0 0 10px rgba(246,71,64,.28), 0 0 0 22px rgba(246,71,64,.12); } }
.mi-label { position: absolute; top: 52%; left: 62%; transform: translate(30px, -10px); background: #fff; padding: 10px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; box-shadow: var(--shadow-md); border: 1px solid var(--line); color: var(--ink); }
.mi-label .sub { color: var(--muted); font-weight: 500; font-size: 11.5px; margin-top: 2px; }
.mi h2 { font-size: clamp(30px, 3.6vw, 42px); margin: 18px 0 22px; }
.mi-content p { color: var(--ink-soft); font-size: 17px; margin-bottom: 20px; }
.mi-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 18px; }
.mi-cities .c { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink); padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.mi-cities .c .d { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-blue); }
.mi-cities .c:nth-child(even) .d { background: var(--brand-red); }

.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq[open] { border-color: rgba(79,93,250,.3); box-shadow: var(--shadow-md); }
.faq summary { padding: 22px 26px; font-weight: 700; font-size: 17px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--ink); font-family: 'Plus Jakarta Sans'; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; background: var(--brand-blue-light); color: var(--brand-blue-dark); display: grid; place-items: center; font-weight: 800; font-size: 18px; transition: transform .25s ease, background .25s ease; flex-shrink: 0; }
.faq[open] summary::after { transform: rotate(45deg); background: var(--brand-red); color: #fff; }
.faq .faq-body { padding: 0 26px 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

.cta-final { padding: 90px 0; text-align: center; background: radial-gradient(800px 400px at 50% 0%, rgba(79,93,250,.1), transparent 60%); }
.cta-final h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 14px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-final p { color: var(--ink-soft); font-size: 17px; max-width: 560px; margin: 0 auto 30px; }
.cta-final .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid, .why-grid, .cta-strip-inner, .story-grid, .svc-row, .svc-row.reverse, .c-hero-grid, .mi-grid { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .hero-illustration { max-width: 440px; margin: 0 auto; width: 100%; }
  .cards { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .cta-strip .cta-right { text-align: left; }
  .value-grid { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 1fr; }
  .tl-line { left: 22px; }
  .tl-point.left, .tl-point.right { text-align: left; padding: 20px 20px 20px 50px; }
  .tl-point.left::before, .tl-point.right::before { left: 14px; right: auto; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-bio { padding: 36px 28px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .eq-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .mi-cities { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .t-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards, .foot-grid, .trust-grid { grid-template-columns: 1fr; }
  form.inquiry .row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .svc-features { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .eq-cat-grid { grid-template-columns: 1fr; }
  .partner-logos { gap: 28px; }
  .partner-logo { font-size: 18px; }
  .c-contact-row { grid-template-columns: 44px 1fr auto; padding: 18px; }
  .c-contact-row .ic { width: 44px; height: 44px; border-radius: 12px; }
  .c-contact-row .val { font-size: 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
