/* ============================================================
   UNITED SECURITY SERVICES — Global Stylesheet
   Brand: Deep Crimson Red (#B91C1C), Black (#0B0B0B), Gold (#D4A24C)
   ============================================================ */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

:root {
  --red: #B91C1C;
  --red-dark: #7F1212;
  --red-light: #DC2626;
  --black: #0B0B0B;
  --ink: #1a1a1a;
  --ink-soft: #4b5563;
  --gold: #D4A24C;
  --gold-light: #E8C677;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 18px 48px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --header-h: 78px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--red); }
.accent-gold { color: var(--gold-light); }

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--black); font-weight: 700; }
.lead { font-size: 1.075rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; letter-spacing: .3px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; border: 2px solid transparent;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(185,28,28,.32); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(185,28,28,.4); }
.btn--ghost { background: transparent; color: var(--black); border-color: var(--black); }
.btn--ghost:hover { background: var(--black); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--black); }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--black); box-shadow: 0 8px 22px rgba(212,162,76,.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(212,162,76,.5); }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Top Bar ---------- */
.topbar { background: var(--black); color: #d1d5db; font-size: .82rem; padding: 8px 0; border-bottom: 2px solid var(--red); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__left { display: flex; gap: 14px; flex-wrap: wrap; }
.badge-mini { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; font-size: .72rem; font-weight: 500; letter-spacing: .3px; }
.badge-mini::before { content: ""; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.topbar__right { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__link { display: inline-flex; align-items: center; gap: 6px; color: #d1d5db; }
.topbar__link:hover { color: var(--gold-light); }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); transition: box-shadow .3s ease; }
.nav.is-scrolled { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 54px; height: 54px; object-fit: contain; background: #fff; padding: 2px; border-radius: 6px; box-shadow: var(--shadow-sm); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand-name { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem; color: var(--black); letter-spacing: .2px; }
.nav__brand-tag { font-size: .72rem; color: var(--red); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a { padding: 10px 16px; font-weight: 500; font-size: .95rem; color: var(--gray-800); border-radius: 8px; position: relative; }
.nav__menu a:hover { color: var(--red); }
.nav__menu a.is-active { color: var(--red); }
.nav__menu a.is-active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; background: var(--red); border-radius: 2px; }
.nav__cta { background: var(--red); color: #fff !important; padding: 10px 22px !important; border-radius: 50px !important; box-shadow: 0 4px 14px rgba(185,28,28,.3); margin-left: 8px; }
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav__cta::after { display: none !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; padding: 80px 0 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background:
  linear-gradient(135deg, rgba(11,11,11,.78) 0%, rgba(127,18,18,.62) 100%),
  url('banner.png') center/cover no-repeat;
  z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background:
  radial-gradient(circle at 20% 30%, rgba(212,162,76,.12), transparent 60%),
  radial-gradient(circle at 80% 70%, rgba(185,28,28,.18), transparent 55%);
  z-index: 1; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; width: 100%; }
.hero__content { color: #fff; }
.hero__eyebrow { display: inline-block; padding: 8px 18px; background: rgba(212,162,76,.18); border: 1px solid rgba(212,162,76,.35); color: var(--gold-light); font-weight: 600; font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; border-radius: 50px; margin-bottom: 24px; }
.hero__title { font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; margin-bottom: 22px; letter-spacing: -.5px; }
.hero__title .accent { color: var(--gold-light); }
.hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 640px; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.hero__quickstats { display: flex; gap: 38px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.hero__quickstats > div { display: flex; flex-direction: column; }
.hero__quickstats strong { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold-light); line-height: 1; letter-spacing: 1px; }
.hero__quickstats span { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero__shield { display: flex; justify-content: center; align-items: center; }
.hero__shield img { width: 320px; height: auto; max-height: 360px; object-fit: contain; padding: 20px; background: radial-gradient(circle, rgba(255,255,255,.15) 0%, rgba(255,255,255,0) 70%); filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; z-index: 3; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll span { width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

/* ---------- Sub Page Hero ---------- */
.subhero { position: relative; padding: 90px 0 70px; background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%); color: #fff; overflow: hidden; }
.subhero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 40%, rgba(212,162,76,.18), transparent 55%); }
.subhero__inner { position: relative; z-index: 2; text-align: center; }
.subhero__crumb { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.subhero__crumb a { color: var(--gold-light); }
.subhero__crumb a:hover { text-decoration: underline; }
.subhero__title { font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; margin-bottom: 16px; letter-spacing: -.5px; }
.subhero__title .accent { color: var(--gold-light); }
.subhero__sub { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 720px; margin: 0 auto; }

/* ---------- Trust Strip ---------- */
.trust { padding: 60px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust__item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: transform .3s, box-shadow .3s; }
.trust__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust__icon { flex: 0 0 auto; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; border-radius: 12px; }
.trust__icon svg { width: 26px; height: 26px; }
.trust__item h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.trust__item p { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Section Common ---------- */
.section__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section__eyebrow { display: inline-block; padding: 6px 16px; background: rgba(185,28,28,.08); color: var(--red); font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 50px; margin-bottom: 16px; }
.section__eyebrow.light { background: rgba(212,162,76,.18); color: var(--gold-light); }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 16px; letter-spacing: -.4px; }
.section__title.light { color: #fff; }
.section__sub { font-size: 1.05rem; color: var(--ink-soft); }
.section__sub.light { color: rgba(255,255,255,.8); }

/* ---------- About ---------- */
.about { padding: 110px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about__img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__img-frame::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,.4) 100%); z-index: 1; }
.about__badge { position: absolute; bottom: 24px; left: -20px; background: var(--red); color: #fff; padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-md); z-index: 2; }
.about__badge strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 1.5px; }
.about__badge span { font-size: .78rem; opacity: .9; letter-spacing: 1px; text-transform: uppercase; }
.about__content .section__title { text-align: left; }
.about__content .section__eyebrow { margin-bottom: 14px; }
.about__content .lead { margin-bottom: 18px; }
.about__content p { color: var(--ink-soft); margin-bottom: 22px; }
.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 28px 0 36px; }
.about__list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.about__list li span { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; font-size: .72rem; flex-shrink: 0; }

/* ---------- Services ---------- */
.services { padding: 110px 0; background: var(--gray-50); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service { display: block; background: #fff; padding: 36px 30px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: all .35s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.service::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }
.service__icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; border-radius: 16px; margin-bottom: 22px; transition: transform .3s; }
.service__icon svg { width: 32px; height: 32px; }
.service:hover .service__icon { transform: rotate(-6deg) scale(1.05); }
.service h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--black); }
.service p { color: var(--ink-soft); font-size: .95rem; line-height: 1.65; }
.service__more { display: inline-block; margin-top: 16px; color: var(--red); font-weight: 600; font-size: .88rem; letter-spacing: .5px; }
.service:hover .service__more { color: var(--red-dark); }
.services__footer { text-align: center; margin-top: 50px; }

/* ---------- Why Us ---------- */
.why { position: relative; padding: 120px 0; color: #fff; overflow: hidden; }
.why__bg { position: absolute; inset: 0; background:
  linear-gradient(135deg, rgba(11,11,11,.93) 0%, rgba(127,18,18,.92) 100%),
  url('https://images.unsplash.com/photo-1562564055-71e051d33c19?auto=format&fit=crop&w=1900&q=80') center/cover no-repeat fixed;
  z-index: 0; }
.why__inner { position: relative; z-index: 1; }
.why__head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 70px; }
.why__card { background: rgba(255,255,255,.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14); padding: 32px 26px; border-radius: var(--radius); text-align: center; transition: all .3s; }
.why__card:hover { background: rgba(255,255,255,.1); transform: translateY(-6px); border-color: var(--gold); }
.why__num { font-family: 'Bebas Neue', sans-serif; font-size: 3.6rem; color: var(--gold-light); line-height: 1; margin-bottom: 12px; letter-spacing: 1.5px; }
.why__card h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why__card p { font-size: .88rem; color: rgba(255,255,255,.78); }
.why__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pillar { padding: 30px; border-left: 3px solid var(--gold); background: rgba(0,0,0,.25); border-radius: 0 var(--radius) var(--radius) 0; }
.pillar h4 { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; }
.pillar p { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ---------- Industries ---------- */
.industries { padding: 110px 0; }
.industries__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.industry { padding: 28px 22px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); text-align: center; transition: all .3s; }
.industry:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--red); }
.industry__icon { font-size: 2.4rem; margin-bottom: 14px; }
.industry h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.industry p { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Clients ---------- */
.clients { padding: 110px 0; background: var(--gray-50); }
.clients__marquee { overflow: hidden; padding: 30px 0; margin: 50px 0; background: var(--black); border-radius: var(--radius); position: relative; }
.clients__marquee::before, .clients__marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.clients__marquee::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.clients__marquee::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.clients__track { display: flex; gap: 50px; animation: marquee 50s linear infinite; white-space: nowrap; }
.clients__track span { color: rgba(255,255,255,.85); font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; flex-shrink: 0; padding: 0 12px; border-right: 1px solid rgba(255,255,255,.18); letter-spacing: .5px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.clients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client-card { padding: 22px 24px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); border-left: 4px solid var(--red); transition: all .3s; }
.client-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.client-card h5 { font-size: 1.02rem; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.client-card span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%); color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,162,76,.18), transparent 70%); border-radius: 50%; }
.cta-banner__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.cta-banner__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { padding: 110px 0 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: start; margin-bottom: 70px; }
.contact__info .section__eyebrow { margin-bottom: 14px; }
.contact__info .section__title { text-align: left; margin-bottom: 18px; }
.contact__info .lead { margin-bottom: 36px; }
.contact__list { display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; gap: 18px; align-items: flex-start; padding: 18px; background: var(--gray-50); border-radius: var(--radius); border-left: 3px solid var(--red); }
.contact__icon { flex: 0 0 auto; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--red); color: #fff; border-radius: 10px; }
.contact__icon svg { width: 22px; height: 22px; }
.contact__list h5 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.contact__list p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
.contact__list a { color: var(--ink-soft); }
.contact__list a:hover { color: var(--red); }
.contact__form { background: #fff; padding: 42px 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.contact__form h3 { font-size: 1.5rem; margin-bottom: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 16px; }
.contact__form input, .contact__form select, .contact__form textarea { padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: 10px; font-size: .95rem; font-weight: 400; transition: border-color .25s, box-shadow .25s; background: #fff; color: var(--ink); }
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(185,28,28,.12); }
.contact__form textarea { resize: vertical; min-height: 100px; }
.form__note { text-align: center; font-size: .88rem; color: var(--ink-soft); margin-top: 14px; }
.form__note a { color: var(--red); font-weight: 600; }
.form__success { padding: 14px; background: #ecfdf5; color: #065f46; border-radius: 10px; text-align: center; font-weight: 600; margin-top: 16px; border: 1px solid #a7f3d0; }
.contact__map { border-top: 1px solid var(--gray-200); }
.contact__map iframe { display: block; filter: grayscale(.2) contrast(1.05); }

/* ---------- Service Detail Page ---------- */
.service-detail { padding: 90px 0; }
.service-detail__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: start; }
.service-detail__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position: relative; }
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.service-detail__content .lead { margin-bottom: 22px; }
.service-detail__content p { color: var(--ink-soft); margin-bottom: 18px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin: 24px 0 32px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; }
.feature-list li::before { content: "✓"; flex-shrink: 0; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; font-size: .75rem; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.service-features { padding: 90px 0; background: var(--gray-50); }
.service-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat-card { padding: 30px 26px; background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all .3s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.feat-card__icon { width: 50px; height: 50px; background: rgba(185,28,28,.1); color: var(--red); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.4rem; font-weight: 700; }
.feat-card h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.feat-card p { font-size: .92rem; color: var(--ink-soft); }
.related-services { padding: 90px 0; }
.related-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: #d1d5db; padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__brand img { width: 60px; height: 60px; border-radius: 50%; background: #fff; padding: 4px; margin-bottom: 14px; }
.footer__brand h4 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.footer__brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 320px; }
.footer h5 { color: #fff; font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h5::after { content: ""; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
.footer ul li { margin-bottom: 10px; font-size: .92rem; }
.footer ul li a { color: rgba(255,255,255,.72); }
.footer ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer__contact li { display: flex; gap: 8px; line-height: 1.5; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- Floating Buttons ---------- */
.float-wa { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 90; transition: transform .3s; animation: pulse-wa 2s infinite; }
.float-wa:hover { transform: scale(1.08); }
@keyframes pulse-wa { 0% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.6); } 70% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }
.scroll-top { position: fixed; bottom: 28px; left: 28px; width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff; font-size: 1.3rem; font-weight: 700; box-shadow: var(--shadow-md); z-index: 90; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; }
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.23,1,.32,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__shield { display: none; }
  .about__grid, .contact__grid, .service-detail__grid { grid-template-columns: 1fr; gap: 50px; }
  .trust__grid, .industries__grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid, .clients__grid, .why__pillars, .service-features__grid, .related-services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { font-size: .75rem; }
  .topbar__left { display: none; }
  .nav__inner { height: 70px; }
  .nav__brand-name { font-size: 1rem; }
  .nav__brand-tag { font-size: .65rem; }
  .nav__logo { width: 44px; height: 44px; }
  .nav__menu { position: fixed; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .35s ease; max-height: calc(100vh - 70px); overflow-y: auto; border-top: 1px solid var(--gray-200); }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { padding: 14px 18px; border-radius: 8px; font-size: 1rem; }
  .nav__menu a.is-active::after { display: none; }
  .nav__menu a.is-active { background: rgba(185,28,28,.08); }
  .nav__cta { margin: 8px 0 0 !important; text-align: center; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding: 60px 0 50px; }
  .hero__title { font-size: 2.1rem; }
  .hero__quickstats { gap: 22px; }
  .hero__quickstats strong { font-size: 1.9rem; }
  .about, .services, .why, .industries, .clients, .contact, .service-detail, .service-features, .related-services { padding: 70px 0; }
  .about__list { grid-template-columns: 1fr; }
  .about__badge { left: 16px; bottom: 16px; padding: 12px 18px; }
  .about__badge strong { font-size: 1.3rem; }
  .trust__grid, .industries__grid, .why__grid, .services__grid, .clients__grid, .why__pillars, .service-features__grid, .related-services__grid, .feature-list { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .float-wa { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .float-wa svg { width: 24px; height: 24px; }
  .scroll-top { bottom: 20px; left: 20px; width: 40px; height: 40px; }
  .topbar__right { font-size: .75rem; gap: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: 1.85rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .contact__form { padding: 28px 22px; }
}
