/* ============================================================
   SIGNET SCREENING — Complete Stylesheet
   ============================================================
   Table of Contents:
   1. Reset & Variables
   2. Base & Topbar
   3. Navigation
   4. Page Hero (interior pages)
   5. Sections & Layout
   6. Orange Stripe & CTA Box
   7. Footer
   8. Shared Components (split, features, industries, reasons,
      mission, promise, testimonial, stats, diff panel)
   9. Homepage (hero, services grid, overview, steps)
  10. Services Page (detail sections, compliance band)
  11. About Us (team, values)
  12. Why Choose Signet (hero photo override)
  13. Contact (form, info, hours)
  14. FAQ (accordion, overrides)
  15. Integrations (stats strip, categories, logo grid)
  16. Whiteboard Videos (video grid, embeds)
  17. Thank You (confirmation layout)
  18. Legal Pages (content, tables)
  19. Responsive — Global
  ============================================================ */


/* ════════════════════════════════════════════════════════════
   1. RESET & VARIABLES
   ════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b1d3a;
  --navy-mid:    #132a52;
  --blue:        #0f7dd4;
  --blue-vivid:  #1a90f0;
  --orange:      #f5a623;
  --orange-dark: #e08c10;
  --teal:        #0eb5b5;
  --gray-bg:     #f7f8fa;
  --text:        #1a2535;
  --muted:       #6b7a90;
  --white:       #ffffff;
  --border:      #e4e9f0;
}


/* ════════════════════════════════════════════════════════════
   2. BASE & TOPBAR
   ════════════════════════════════════════════════════════════ */
body { font-family: 'Sora', sans-serif; color: var(--text); line-height: 1.6; }

.topbar { background: var(--orange); padding: 9px 24px; text-align: center; }
.topbar p { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.2px; }
.topbar a { color: var(--navy); font-weight: 700; }


/* ════════════════════════════════════════════════════════════
   3. NAVIGATION
   ════════════════════════════════════════════════════════════ */
nav {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1px; list-style: none; flex-wrap: nowrap; }
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 11px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.18s;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-bg); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 7px 12px !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--gray-bg); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════════
   4. PAGE HERO (interior pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 28px 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 50%, rgba(15,125,212,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 5%  80%, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.page-hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 .accent {
  background: linear-gradient(90deg, var(--orange), #ffcc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.62); max-width: 580px; line-height: 1.75; }


/* ════════════════════════════════════════════════════════════
   5. SECTIONS & LAYOUT
   ════════════════════════════════════════════════════════════ */
.section { padding: 80px 28px; }
.section.bg-gray  { background: var(--gray-bg); }
.section.bg-navy  { background: var(--navy); }
.section-inner    { max-width: 1200px; margin: 0 auto; }
.section-head     { margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label.light { color: var(--orange); }
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title.light    { color: var(--white); }
.section-subtitle       { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; }
.section-subtitle.light { color: rgba(255,255,255,0.55); }


/* ════════════════════════════════════════════════════════════
   6. ORANGE STRIPE & CTA BOX
   ════════════════════════════════════════════════════════════ */
.orange-stripe { background: var(--orange); padding: 18px 28px; }
.stripe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stripe-text { font-size: 16px; font-weight: 700; color: var(--navy); }
.stripe-text span { font-weight: 400; opacity: 0.75; font-size: 14px; }
.btn-stripe {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
}
.btn-stripe:hover { background: #0f2a50; transform: translateY(-1px); }

.cta-box {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0d254a 100%);
  border-radius: 24px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(15,125,212,0.15) 0%, transparent 70%);
}
.cta-content   { position: relative; z-index: 1; }
.cta-label     { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 12px; }
.cta-content h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 12px; }
.cta-content p  { font-size: 16px; color: rgba(255,255,255,0.6); }
.cta-actions   { display: flex; flex-direction: column; gap: 12px; align-items: center; position: relative; z-index: 1; flex-shrink: 0; }
.btn-cta-main {
  background: var(--orange);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-cta-main:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.cta-phone       { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55); text-decoration: none; }
.cta-phone:hover { color: var(--white); }

.orange-bar { height: 3px; background: linear-gradient(90deg, var(--orange), var(--blue)); }


/* ════════════════════════════════════════════════════════════
   7. FOOTER
   ════════════════════════════════════════════════════════════ */
footer { background: #080e1c; padding: 48px 28px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-brand strong { font-size: 18px; font-weight: 800; color: var(--white); display: block; margin-bottom: 10px; }
.footer-brand p      { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 260px; }
.footer-brand .phone { display: block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--orange); text-decoration: none; }
.footer-col h4      { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-col ul      { list-style: none; }
.footer-col ul li   { margin-bottom: 10px; }
.footer-col ul a    { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom      { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p    { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom-links      { display: flex; gap: 20px; }
.footer-bottom-links a    { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer-badges   { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-badge    { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 10px 16px; min-width: 80px; text-align: center; }
.footer-badge .badge-title { font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: 0.5px; line-height: 1.2; }
.footer-badge .badge-sub   { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }


/* ════════════════════════════════════════════════════════════
   8. SHARED COMPONENTS
   ════════════════════════════════════════════════════════════ */

/* ── Split Section ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text .section-label { display: block; }
.split-text .section-title { margin-top: 8px; }
.split-text p { font-size: 16px; color: var(--muted); margin-top: 16px; margin-bottom: 24px; line-height: 1.75; }

/* ── Feature List ── */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-vivid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  color: white;
  font-weight: 700;
}
.feature-item p { font-size: 14px; color: var(--text); line-height: 1.6; }
.feature-item strong { font-weight: 600; }

/* ── Industries Panel ── */
.industries-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 32px;
}
.ind-header { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.ind-tags { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ind-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  height: auto;
  border-radius: 100px;
  transition: all 0.15s;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  white-space: nowrap;
}
.ind-tag:hover { background: rgba(15,125,212,0.25); border-color: rgba(15,125,212,0.5); color: var(--white); }
.ind-tag.orange { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.25); color: var(--orange); }

/* ── Reasons Grid ── */
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px; transition: all 0.2s;
}
.reason-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); border-color: var(--blue); }
.reason-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.reason-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.reason-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Mission Panel ── */
.mission-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px; padding: 40px;
}
.mission-panel blockquote {
  font-size: 20px; font-weight: 700; color: var(--white);
  line-height: 1.5; letter-spacing: -0.3px; margin-bottom: 20px;
  border-left: 3px solid var(--orange); padding-left: 20px;
}
.mission-panel p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ── Promise List ── */
.promise-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.promise-item { display: flex; gap: 16px; align-items: flex-start; }
.promise-num {
  width: 36px; height: 36px; background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--navy); flex-shrink: 0; margin-top: 2px;
}
.promise-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.promise-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Testimonial Band ── */
.testimonial-band { background: var(--gray-bg); padding: 72px 28px; }
.testimonial-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-quote {
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--navy);
  line-height: 1.5; letter-spacing: -0.3px; margin-bottom: 24px;
}
.testimonial-quote::before { content: '\201C'; color: var(--orange); font-size: 48px; line-height: 0; vertical-align: -18px; margin-right: 4px; }
.testimonial-quote::after { content: '\201D'; color: var(--orange); font-size: 48px; line-height: 0; vertical-align: -18px; margin-left: 4px; }
.testimonial-attr { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ── Stats Row ── */
.stats-row { background: var(--navy); padding: 60px 28px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 80px; }
.stat-item { text-align: center; }
.stat-num { font-size: 44px; font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Difference Panel ── */
.diff-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px; padding: 40px;
}
.diff-panel-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.diff-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px; transition: all 0.15s;
}
.diff-item:last-child { margin-bottom: 0; }
.diff-item:hover { background: rgba(255,255,255,0.1); }
.diff-item span.icon { font-size: 22px; flex-shrink: 0; }
.diff-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.diff-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }


/* ════════════════════════════════════════════════════════════
   9. HOMEPAGE
   ════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.30;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 75% 50%, rgba(15,125,212,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(245,166,35,0.1) 0%, transparent 70%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--orange), #ffcc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .accent-blue {
  color: var(--blue-vivid);
  -webkit-text-fill-color: var(--blue-vivid);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin: 0 auto 36px;
  line-height: 1.75;
  max-width: 500px;
  text-align: center;
}
.hero-cta-group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 52px; justify-content: center; }
.btn-hero {
  background: var(--orange);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-hero:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.btn-hero-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.18s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.hero-proof { display: flex; gap: 20px; flex-wrap: nowrap; justify-content: center; align-items: center; }
.proof-item { white-space: nowrap; }
.proof-val { font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.proof-val span { color: var(--orange); }
.proof-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.proof-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.panel-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.15s;
  cursor: default;
}
.check-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.check-item:last-child { margin-bottom: 0; }
.check-dot {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.dot-orange { background: rgba(245,166,35,0.15); }
.dot-blue   { background: rgba(15,125,212,0.18); }
.dot-teal   { background: rgba(14,181,181,0.15); }
.dot-green  { background: rgba(34,197,94,0.15); }
.check-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88); }
.check-sub   { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 1px; }
.check-badge {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.badge-fast  { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-easy  { background: rgba(15,125,212,0.2); color: #60b4f5; }
.badge-live  { background: rgba(245,166,35,0.15); color: var(--orange); }
.badge-new   { background: rgba(14,181,181,0.15); color: #2dd4bf; }

/* ── Services Grid (shared by homepage + services page) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; transition: all 0.2s;
  cursor: default; scroll-margin-top: 104px;
}
.svc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 12px 36px rgba(15,125,212,0.1);
  transform: translateY(-3px);
}
.svc-num { display: none; }
.svc-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.svc-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; letter-spacing: 0.2px;
}
.svc-link:hover { gap: 8px; }

/* ── Services Overview ── */
.svc-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.svc-overview-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px; transition: all 0.2s;
}
.svc-overview-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-color: var(--blue); }
.svc-overview-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.svc-overview-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-overview-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.svc-overview-link { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; }
.svc-overview-link:hover { text-decoration: underline; }

/* ── How It Works ── */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 32px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 2px; background: var(--border); z-index: 0;
}
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 3px solid var(--blue);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ════════════════════════════════════════════════════════════
   10. SERVICES PAGE
   ════════════════════════════════════════════════════════════ */

/* ── Compliance Band ── */
.compliance-band { background: var(--navy); padding: 52px 28px; }
.compliance-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
.comp-item { text-align: center; }
.comp-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.comp-item h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.comp-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── Industries (services page) ── */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ind-grid-centered { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.ind-grid-centered .ind-card { flex: 0 0 calc(25% - 9px); }
.ind-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 18px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.15s;
}
.ind-card:hover { border-color: var(--blue); color: var(--blue); background: #e8f3fb; }
.ind-card span { font-size: 18px; }

/* ── Service Detail Sections ── */
.svc-detail { scroll-margin-top: 80px; border-top: 3px solid var(--blue); padding: 56px 0; }
.svc-detail + .svc-detail { border-top: 1px solid var(--border); }
.svc-detail-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.svc-detail-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 12px; }
.svc-detail-num { font-size: 64px; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 16px; }
.svc-detail h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 16px; }
.svc-detail-left p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.svc-detail-points { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.svc-detail-point { display: flex; gap: 14px; align-items: flex-start; }
.svc-detail-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--blue);
  color: white; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.svc-detail-point-text h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.svc-detail-point-text p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.svc-detail-cta { margin-top: 28px; display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: white; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.15s; }
.svc-detail-cta:hover { background: #0d6dbf; }


/* ════════════════════════════════════════════════════════════
   11. ABOUT US PAGE
   ════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; transition: all 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: var(--blue); }
.team-photo {
  width: 100%; height: 360px; object-fit: cover; object-position: center 5%;
  display: block; background: var(--gray-bg);
}
.team-info { padding: 28px; }
.team-name { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--blue); margin-bottom: 14px; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; transition: all 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); border-color: var(--blue); }
.value-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ════════════════════════════════════════════════════════════
   12. WHY CHOOSE SIGNET PAGE
   ════════════════════════════════════════════════════════════ */
.page-hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/5439453/pexels-photo-5439453.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.30;
}


/* ════════════════════════════════════════════════════════════
   13. CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.6px; margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; background: rgba(15,125,212,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 4px; }
.contact-item-text a, .contact-item-text span { font-size: 16px; font-weight: 600; color: var(--navy); text-decoration: none; }
.contact-item-text a:hover { color: var(--blue); }
.contact-item-text .sub { font-size: 13px; font-weight: 400; color: var(--muted); display: block; margin-top: 2px; }

.hours-box { background: var(--gray-bg); border-radius: 14px; padding: 24px; margin-top: 8px; }
.hours-box h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.hours-row:last-child { margin-bottom: 0; }
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--navy); font-weight: 600; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.contact-form-wrap h3 { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; margin-bottom: 6px; }
.contact-form-wrap p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: 'Sora', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(15,125,212,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--navy); font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; padding: 14px 28px; border: none; border-radius: 10px; cursor: pointer; transition: all 0.18s; box-shadow: 0 4px 20px rgba(245,166,35,0.3); margin-top: 8px; }
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }


/* ════════════════════════════════════════════════════════════
   14. FAQ PAGE
   ════════════════════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; }


/* ════════════════════════════════════════════════════════════
   15. INTEGRATIONS PAGE
   ════════════════════════════════════════════════════════════ */
.stats-strip { background: var(--navy); padding: 40px 28px; }
.stats-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }

.cat-section { margin-bottom: 56px; }
.cat-section:last-child { margin-bottom: 0; }
.cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.cat-icon { font-size: 22px; }
.cat-title { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
.cat-count { font-size: 12px; font-weight: 600; color: var(--blue); background: rgba(15,125,212,0.08); padding: 3px 10px; border-radius: 20px; }
.cat-divider { height: 2px; background: linear-gradient(90deg, var(--blue), transparent); margin-bottom: 20px; width: 100%; }

.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.logo-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 12px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; min-height: 90px; transition: all 0.15s; cursor: default;
}
.logo-card:hover { border-color: var(--blue); background: #f0f7ff; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(15,125,212,0.1); }
.logo-card img { width: 40px; height: 40px; object-fit: contain; display: block; border-radius: 8px; }
.logo-card img.hidden { display: none; }
.logo-card .logo-name { font-size: 12px; font-weight: 600; color: var(--text); text-align: center; line-height: 1.3; }
.logo-card.text-only .logo-name { font-size: 13px; }


/* ════════════════════════════════════════════════════════════
   16. WHITEBOARD VIDEOS PAGE
   ════════════════════════════════════════════════════════════ */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.video-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; transition: all 0.22s;
}
.video-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 16px 48px rgba(15,125,212,0.1);
  transform: translateY(-4px);
}
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #0a1628; border-radius: 20px 20px 0 0; overflow: hidden;
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 24px 28px 28px; }
.video-info h3 { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; line-height: 1.3; margin-bottom: 10px; text-transform: uppercase; }
.video-info p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.video-card-last {
  grid-column: 1 / -1; width: 600px; max-width: 100%; justify-self: center;
  border: none; box-shadow: 0 0 0 1px var(--border); border-radius: 14px;
}
.video-card-last .video-embed { border-radius: 14px 14px 0 0; }


/* ════════════════════════════════════════════════════════════
   17. THANK YOU PAGE
   ════════════════════════════════════════════════════════════ */
.thankyou-section {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 28px;
}
.thankyou-box { max-width: 560px; }
.thankyou-icon {
  width: 72px; height: 72px; background: rgba(15,125,212,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 34px; margin: 0 auto 28px;
}
.thankyou-box h1 { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -0.8px; margin-bottom: 16px; }
.thankyou-box p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--navy); font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700; padding: 13px 28px; border: none; border-radius: 10px;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.18s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--navy); font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 600; padding: 13px 28px; border: 2px solid var(--border);
  border-radius: 10px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.18s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }


/* ════════════════════════════════════════════════════════════
   18. LEGAL PAGES
   ════════════════════════════════════════════════════════════ */
.content-section { padding: 72px 28px 80px; background: var(--white); }
.content-inner { max-width: 860px; margin: 0 auto; }
.content-inner h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin-top: 48px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-top: 28px; margin-bottom: 8px; }
.content-inner p { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 16px; }
.content-inner ul { margin: 12px 0 20px 20px; }
.content-inner ul li { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 8px; }
.content-inner ul ul { margin-top: 8px; margin-bottom: 0; }
.content-inner ul ul li { margin-bottom: 6px; }
.updated-badge { display: inline-block; background: var(--gray-bg); border: 1px solid var(--border); color: var(--muted); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-bottom: 36px; }
.intro-box { background: var(--gray-bg); border-left: 4px solid var(--blue); border-radius: 8px; padding: 20px 24px; margin-bottom: 40px; }
.intro-box p { margin-bottom: 0; }
.contact-box { background: var(--gray-bg); border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; margin-top: 48px; }
.contact-box h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.contact-box p { margin-bottom: 6px; }
.contact-box a { color: var(--blue); }

.reg-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 24px; margin-bottom: 32px; }
.reg-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.reg-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: #374151; line-height: 1.7; vertical-align: top; }
.reg-table tr:nth-child(even) td { background: var(--gray-bg); }


/* ════════════════════════════════════════════════════════════
   19. RESPONSIVE — ALL BREAKPOINTS
   ════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Nav */
  .nav-hamburger { display: flex; }
  .nav-inner { position: relative; }
  .nav-links {
    display: none; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    flex-direction: column; padding: 12px 20px 16px; gap: 2px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 11px 14px; font-size: 15px; }
  .nav-cta { display: block; text-align: center; margin-top: 4px; padding: 12px 14px !important; }

  /* Shared components */
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse { direction: ltr; }
  .stats-inner { gap: 48px; flex-wrap: wrap; }
  .ind-tags { grid-template-columns: repeat(2, 1fr); }
  .ind-tag { white-space: normal; }

  /* Homepage */
  .svc-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .svc-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .detail-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* About Us */
  .team-grid { grid-template-columns: 1fr; }

  /* Videos */
  .video-grid { grid-template-columns: 1fr; }
  .video-card-last { width: 100%; grid-column: auto; }

  /* CTA Box */
  .cta-box { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  .cta-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  /* Global */
  .section { padding: 52px 20px; }
  .section-head { margin-bottom: 36px; }
  .page-hero { padding: 52px 20px 48px; }
  .topbar p { font-size: 12px; }
  .stripe-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Shared components */
  .reasons-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 32px; justify-content: center; }

  /* Homepage */
  .svc-overview-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 16px 24px; }
  .proof-divider { display: none; }
  .hero-inner { padding: 60px 20px 52px; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
