/* ====================================================================
   Trust Trading Group LLC — corporate website styles
   Palette: dark blue / graphite / white / light gray / gold accent
   ==================================================================== */

:root {
  --navy:        #0b1f3a;
  --navy-2:      #102a4c;
  --navy-3:      #16365f;
  --graphite:    #131c2b;
  --gold:        #1f9fe0;
  --gold-2:      #5fd0f5;
  --bronze:      #1577a6;
  --white:       #ffffff;
  --gray-50:     #f6f8fb;
  --gray-100:    #eef2f7;
  --gray-200:    #dfe6ee;
  --gray-400:    #9aa7b6;
  --gray-600:    #5a6675;
  --ink:         #1a2330;
  --shadow:      0 18px 50px rgba(11, 31, 58, .10);
  --shadow-sm:   0 6px 20px rgba(11, 31, 58, .08);
  --radius:      16px;
  --radius-sm:   10px;
  --maxw:        1320px;
  --ease:        cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

/* Arabic typography */
body[dir="rtl"] {
  font-family: "Cairo", "Tajawal", "Segoe UI", system-ui, sans-serif;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

section { padding: 104px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}

h1, h2, h3 { line-height: 1.18; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 21px; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head p { color: var(--gray-600); font-size: 18px; margin-top: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); box-shadow: 0 10px 26px rgba(56,189,248,.32); }
.btn-gold:hover { box-shadow: 0 14px 32px rgba(56,189,248,.42); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.10); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); box-shadow: var(--shadow-sm); }

/* ====================================================================
   Header
   ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
}
.brand-mark svg { width: 46px; height: 46px; display: block; }
.brand-name { font-size: 17px; line-height: 1.1; }
.brand-name small { display: block; font-size: 11px; font-weight: 600; color: var(--gray-600); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 15px; font-weight: 600; color: var(--graphite); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold); transition: width .25s var(--ease); }
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switch { display: inline-flex; background: var(--gray-100); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switch button {
  border: none; background: transparent; cursor: pointer;
  font-weight: 700; font-size: 13px; color: var(--gray-600);
  padding: 7px 13px; border-radius: 999px; transition: all .2s;
}
.lang-switch button.active { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ====================================================================
   Hero
   ==================================================================== */
.hero {
  position: relative; color: var(--white);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(56,189,248,.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--graphite) 100%);
  overflow: hidden; padding: 120px 0 130px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(900px 500px at 75% 20%, #000, transparent 75%);
}
.hero { min-height: 90vh; display: flex; align-items: center; }
.hero .container { position: relative; z-index: 2; max-width: var(--maxw); }
.hero h1 { color: var(--white); font-size: clamp(36px, 5.8vw, 66px); margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-2); }
.hero p.lead { font-size: clamp(17px, 2.1vw, 22px); color: rgba(255,255,255,.82); max-width: 1000px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 54px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-badge { color: rgba(255,255,255,.9); font-size: 14px; display: flex; align-items: center; gap: 9px; font-weight: 600; }
.hero-badge svg { flex: none; color: var(--gold-2); }

/* ====================================================================
   About + stats
   ==================================================================== */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.about-text p { color: var(--gray-600); font-size: 18px; margin-bottom: 18px; }
.about-points { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.about-points li svg { flex: none; color: var(--gold); margin-top: 3px; }

.stat-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: var(--white); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.stat-card::before { content: ""; position: absolute; top: -40px; inset-inline-end: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,.30), transparent 70%); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; position: relative; z-index: 1; }
.stat .num { font-size: 34px; font-weight: 900; color: var(--gold-2); }
.stat .lbl { font-size: 14px; color: rgba(255,255,255,.78); margin-top: 4px; }

/* ====================================================================
   Cards (services / industries / why)
   ==================================================================== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 20px;
  display: grid; place-items: center; color: var(--navy);
  background: linear-gradient(135deg, var(--gray-100), #fff);
  box-shadow: inset 0 0 0 1px var(--gray-200);
}
.card:hover .card-icon { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); box-shadow: 0 8px 20px rgba(56,189,248,.30); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 16px; }

.section-alt { background: var(--gray-50); }

/* Industries — darker tone */
.industry-card { background: linear-gradient(160deg, var(--navy), var(--navy-2)); border: none; color: var(--white); }
.industry-card h3 { color: var(--white); }
.industry-card p { color: rgba(255,255,255,.78); }
.industry-card .card-icon { background: rgba(255,255,255,.08); color: var(--gold-2); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.industry-card:hover .card-icon { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--navy); }

/* ====================================================================
   How we work — steps
   ==================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 32px 30px; position: relative; transition: transform .25s var(--ease), box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.step .step-num {
  position: absolute; top: 22px; inset-inline-end: 26px;
  font-size: 46px; font-weight: 900; color: var(--gray-100); line-height: 1;
}
.step .step-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); margin-bottom: 18px; box-shadow: 0 0 0 5px rgba(56,189,248,.18); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray-600); font-size: 15.5px; }

/* ====================================================================
   Why choose us
   ==================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { display: flex; gap: 16px; padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); transition: border-color .25s, box-shadow .25s; }
.why-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.why-check { flex: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(56,189,248,.14); color: var(--bronze); display: grid; place-items: center; }
.why-item h3 { font-size: 17px; margin-bottom: 5px; }
.why-item p { color: var(--gray-600); font-size: 15px; }

/* ====================================================================
   Contact
   ==================================================================== */
.contact { background: linear-gradient(160deg, var(--navy) 0%, var(--graphite) 100%); color: var(--white); }
.contact h2 { color: var(--white); }
.contact .section-head p { color: rgba(255,255,255,.78); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }

.contact-info { display: grid; gap: 14px; }
.contact-line { display: flex; gap: 14px; align-items: center; padding: 16px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-sm); }
.contact-line svg { flex: none; color: var(--gold-2); }
.contact-line .ci-label { font-size: 12.5px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.contact-line .ci-value { font-weight: 700; font-size: 16px; word-break: break-word; }
.contact-line a.ci-value:hover { color: var(--gold-2); }

.chat-btns { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.chat-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; transition: transform .2s, box-shadow .2s; }
.chat-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chat-wa { background: #25D366; color: #fff; }
.chat-tg { background: #2AABEE; color: #fff; }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--graphite); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font-size: 15px; font-family: inherit;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--gray-50);
  color: var(--ink); transition: border-color .2s, background .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(56,189,248,.12); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--gray-400); margin-top: 14px; text-align: center; }
.form-success { display: none; background: rgba(37,211,102,.12); color: #1b7e44; border: 1px solid rgba(37,211,102,.3); padding: 14px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; text-align: center; margin-bottom: 16px; }

/* ====================================================================
   Footer
   ==================================================================== */
.site-footer { background: var(--graphite); color: rgba(255,255,255,.7); padding: 56px 0 30px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-brand { max-width: 360px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,.6); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: rgba(255,255,255,.62); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ====================================================================
   Floating chat
   ==================================================================== */
.float-chat { position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 12px; }
.float-chat a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.22); transition: transform .2s; }
.float-chat a:hover { transform: scale(1.08); }

/* ====================================================================
   Reveal animation
   ==================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ====================================================================
   RTL tweaks
   ==================================================================== */
body[dir="rtl"] .nav a::after { left: auto; right: 0; }
body[dir="rtl"] .hero::after { mask-image: radial-gradient(900px 500px at 25% 20%, #000, transparent 75%); }

/* ====================================================================
   Responsive
   ==================================================================== */
@media (max-width: 960px) {
  .grid-3, .steps, .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--gray-200);
    padding: 12px 24px 20px; transform: translateY(-130%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow); align-items: stretch;
  }
  .nav.open { transform: none; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 70px 0; }
  .grid-3, .grid-2, .steps, .why-grid, .form-row, .stat-grid { grid-template-columns: 1fr; }
  .brand-name small { display: none; }
  .header-actions .btn-navy { display: none; }
  .hero { padding: 90px 0 96px; }
  .contact-form { padding: 26px 20px; }
}

/* ====================================================================
   v2 — gradients, emoji, supplier banner, brands
   ==================================================================== */

/* Gradient text accent */
.grad-text {
  background: linear-gradient(100deg, var(--gold-2) 0%, var(--gold) 35%, #bfe9fb 70%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Richer, livelier hero gradient with animated glow */
.hero {
  background:
    radial-gradient(900px 500px at 12% 110%, rgba(45,108,196,.30), transparent 60%),
    radial-gradient(1100px 600px at 85% -15%, rgba(56,189,248,.22), transparent 60%),
    linear-gradient(155deg, #0a1c34 0%, #102a4c 45%, #16365f 72%, #1c2733 100%);
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-2), #bfe9fb, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Emoji-based icons inside the rounded badge */
.card-icon.emoji, .why-check.emoji, .brand-emoji {
  font-size: 26px; line-height: 1;
}
.card-icon.emoji { font-size: 28px; }
.industry-card .card-icon.emoji { filter: saturate(1.1); }
.step .step-emoji { font-size: 30px; margin-bottom: 12px; }
.why-check.emoji { background: linear-gradient(135deg, rgba(56,189,248,.20), rgba(45,108,196,.14)); font-size: 22px; }

/* Gradient top accent line appears on card hover */
.card { isolation: isolate; }
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), #2d6cc4);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
body[dir="rtl"] .card::after { transform-origin: right; }
.card:hover::after { transform: scaleX(1); }

/* Section eyebrow — gradient pill */
.eyebrow {
  background: linear-gradient(100deg, rgba(56,189,248,.16), rgba(45,108,196,.12));
  padding: 6px 14px; border-radius: 999px; color: var(--bronze);
}

/* ---------- Supplier banner ---------- */
.supply {
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(56,189,248,.22), transparent 60%),
    linear-gradient(125deg, #0a1c34 0%, #102a4c 30%, #1b4a86 75%, #2d6cc4 130%);
  color: #fff; padding: 70px 0;
}
.supply-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
.supply h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 16px; }
.supply p { color: rgba(255,255,255,.86); font-size: 18px; max-width: 620px; }
.supply .eyebrow { color: var(--gold-2); background: rgba(255,255,255,.10); }
.supply-stats { display: grid; gap: 16px; }
.supply-stat {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 18px 22px; backdrop-filter: blur(6px);
}
.supply-stat .sv-num { font-size: 30px; font-weight: 900; color: var(--gold-2); min-width: 64px; }
.supply-stat .sv-lbl { font-weight: 600; font-size: 15.5px; color: rgba(255,255,255,.9); }

/* Software banner — distinct indigo/violet tone to separate the software half */
.supply.soft {
  background:
    radial-gradient(720px 400px at 12% 0%, rgba(124,99,255,.30), transparent 60%),
    linear-gradient(125deg, #0a1330 0%, #1a1f57 45%, #2a3a9e 92%, #3f6fe0 135%);
}
.supply.soft .eyebrow { color: #cbbcff; background: rgba(255,255,255,.10); }
.supply.soft .sv-num { color: #cbbcff; }

/* ---------- Brands ---------- */
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.brand-card {
  border-radius: var(--radius); padding: 30px;
  background: linear-gradient(160deg, #fff, var(--gray-50));
  border: 1px solid var(--gray-200); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.brand-card::before {
  content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(56,189,248,.55), rgba(45,108,196,.4), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .9;
}
.brand-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.brand-head .brand-emoji {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(45,108,196,.14)); font-size: 26px;
}
.brand-head h3 { font-size: 19px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-size: 14px; font-weight: 700; color: var(--navy);
  background: #fff; border: 1px solid var(--gray-200);
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--bronze); transform: translateY(-2px); }
.brands-note { margin-top: 30px; text-align: center; font-size: 14px; color: var(--gray-400); max-width: 760px; margin-inline: auto; }

/* ---------- Reviews / testimonials ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: linear-gradient(160deg, #fff, var(--gray-50));
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-stars { color: #f0b429; font-size: 17px; letter-spacing: 2px; }
.review-quote { color: var(--graphite); font-size: 16.5px; line-height: 1.6; flex: 1; }
.review-quote::before { content: "“"; color: var(--gold); font-size: 30px; font-weight: 900; line-height: 0; margin-inline-end: 4px; vertical-align: -6px; }
.review-author { display: flex; align-items: center; gap: 13px; padding-top: 6px; border-top: 1px solid var(--gray-200); }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  box-shadow: inset 0 0 0 1.5px rgba(56,189,248,.5);
}
.review-name { font-weight: 800; color: var(--navy); font-size: 16px; }
.review-role { font-size: 13.5px; color: var(--gray-600); }
.reviews-note { margin-top: 28px; text-align: center; font-size: 14px; color: var(--gray-400); }

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .supply-inner { grid-template-columns: 1fr; gap: 30px; }
  .brands-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .supply-stat .sv-num { font-size: 24px; min-width: 50px; }
  .hero { min-height: auto; }
}
