/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:       #f8fafc;
  --c-surface:  #ffffff;
  --c-surf2:    #f1f5f9;
  --c-border:   #e2e8f0;
  --c-border2:  #cbd5e1;
  --c-navy:     #0f2d5e;
  --c-navy2:    #1e3a6e;
  --c-accent:   #0077b6;
  --c-accent2:  #005f94;
  --c-teal:     #00897b;
  --c-text:     #1e293b;
  --c-muted:    #64748b;
  --c-light:    #94a3b8;
  --c-white:    #ffffff;
  --r:          8px;
  --r-lg:       14px;
  --shadow:     0 1px 3px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg:  0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--c-navy); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 700; line-height: 1.18; letter-spacing: -0.025em; color: var(--c-navy); }
h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.35; color: var(--c-text); }
h4 { font-size: 0.9rem; font-weight: 700; color: var(--c-navy); }
p  { color: var(--c-muted); }
strong { color: var(--c-text); font-weight: 600; }

.accent { color: var(--c-accent); }

.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-accent); background: rgba(0,119,182,0.07);
  border: 1px solid rgba(0,119,182,0.2); padding: 4px 12px;
  border-radius: 99px; margin-bottom: 14px;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { margin-top: 14px; font-size: 1.02rem; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r);
  font-weight: 600; font-size: 0.93rem; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,119,182,0.28); }
.btn-navy { background: var(--c-navy); color: #fff; }
.btn-navy:hover { background: var(--c-navy2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,45,94,0.25); }
.btn-ghost { background: transparent; color: var(--c-navy); border: 1.5px solid var(--c-border2); }
.btn-ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.btn-outline { background: transparent; color: var(--c-accent); border: 1.5px solid var(--c-accent); }
.btn-outline:hover { background: var(--c-accent); color: #fff; }

/* ─── Nav ───────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s;
}
.nav-wrap.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-shield {
  width: 36px; height: 36px; background: var(--c-navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-shield svg { width: 20px; height: 20px; color: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1rem; font-weight: 800; color: var(--c-navy); letter-spacing: -0.03em; }
.logo-sub  { font-size: 0.6rem; font-weight: 600; color: var(--c-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; list-style: none; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--c-muted); font-size: 0.875rem; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--c-navy); }
.nav-links .nav-7n { font-size: 0.8rem; color: var(--c-light); border: 1px solid var(--c-border); padding: 4px 10px; border-radius: 6px; }
.nav-links .nav-7n:hover { color: var(--c-accent); border-color: rgba(0,119,182,0.3); }
/* Buttons in nav must keep their own text colour (override .nav-links a colour) */
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }
.nav-links a.btn-ghost { color: var(--c-navy); }
.nav-links a.btn-outline { color: var(--c-accent); }
.nav-links a.btn-outline:hover { color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; }

.mobile-menu { display: none; flex-direction: column; background: var(--c-surface); border-top: 1px solid var(--c-border); padding: 8px 0 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 24px; text-decoration: none; color: var(--c-text); font-weight: 500; font-size: 0.9rem; }
.mobile-menu a:hover { color: var(--c-accent); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  padding-top: 68px; overflow: hidden;
  background: linear-gradient(160deg, #f0f7ff 0%, #f8fafc 50%, #eef4f9 100%);
}
.hero::before {
  content: ''; position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: linear-gradient(135deg, rgba(0,119,182,0.04) 0%, rgba(15,45,94,0.06) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,119,182,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 40%, black 0%, transparent 70%);
}

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.07em;
  color: var(--c-accent); border: 1px solid rgba(0,119,182,0.25);
  background: rgba(0,119,182,0.07); padding: 5px 14px;
  border-radius: 99px; margin-bottom: 22px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--c-teal); border-radius: 50%; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--c-accent); }
.hero-sub { font-size: 1.07rem; max-width: 480px; margin-bottom: 36px; line-height: 1.7; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; flex-direction: column; gap: 10px; }
.hero-trust-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-light); }
.hero-trust-items { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--c-muted);
}
.hero-trust-item svg { width: 15px; height: 15px; color: var(--c-teal); flex-shrink: 0; }

/* Hero right panel */
.hero-panel {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 16px; padding: 32px; box-shadow: var(--shadow-lg);
}
.hero-panel-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 20px; }
.hero-services { display: flex; flex-direction: column; gap: 10px; }
.hero-svc {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--c-bg);
  border: 1px solid var(--c-border); border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.hero-svc:hover { border-color: rgba(0,119,182,0.35); box-shadow: 0 2px 8px rgba(0,119,182,0.08); }
.hero-svc-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-svc-icon svg { width: 18px; height: 18px; }
.hero-svc-icon.pdpa  { background: rgba(0,119,182,0.1); color: var(--c-accent); }
.hero-svc-icon.dpo   { background: rgba(0,137,123,0.1); color: var(--c-teal); }
.hero-svc-icon.iso   { background: rgba(15,45,94,0.08); color: var(--c-navy); }
.hero-svc-icon.dptm  { background: rgba(217,119,6,0.1); color: #d97706; }
.hero-svc-icon.cyber { background: rgba(220,38,38,0.08); color: #dc2626; }
.hero-svc-body { flex: 1; min-width: 0; }
.hero-svc-name { font-size: 0.85rem; font-weight: 600; color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-svc-desc { font-size: 0.74rem; color: var(--c-light); margin-top: 1px; }
.hero-svc-badge {
  font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 99px;
  white-space: nowrap; flex-shrink: 0;
}
.badge-req   { background: rgba(220,38,38,0.08); color: #dc2626; }
.badge-opt   { background: rgba(0,119,182,0.08); color: var(--c-accent); }

.hero-panel-note {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--c-border);
  font-size: 0.77rem; color: var(--c-muted); display: flex; align-items: center; gap: 8px;
}
.hero-panel-note svg { width: 14px; height: 14px; color: var(--c-teal); flex-shrink: 0; }

/* ─── Credentials / Trust Bar ───────────────────────────── */
.trust-bar { background: var(--c-navy); padding: 22px 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 22px; height: 22px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.trust-icon svg { width: 100%; height: 100%; }
.trust-text { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.trust-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* ─── Services ───────────────────────────────────────────── */
.services { background: var(--c-bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--c-border2); }
.svc-card.featured { border-color: var(--c-accent); border-top: 3px solid var(--c-accent); }

.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0;
}
.svc-icon-wrap svg { width: 24px; height: 24px; }
.svc-icon-wrap.blue   { background: rgba(0,119,182,0.1);  color: var(--c-accent); }
.svc-icon-wrap.teal   { background: rgba(0,137,123,0.1);  color: var(--c-teal); }
.svc-icon-wrap.navy   { background: rgba(15,45,94,0.08);  color: var(--c-navy); }
.svc-icon-wrap.amber  { background: rgba(217,119,6,0.1);  color: #d97706; }
.svc-icon-wrap.red    { background: rgba(220,38,38,0.08); color: #dc2626; }
.svc-icon-wrap.green  { background: rgba(22,163,74,0.08); color: #16a34a; }

.svc-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-light); margin-bottom: 5px; }
.svc-card h3 { color: var(--c-navy); margin-bottom: 10px; font-size: 1.02rem; }
.svc-card > p { font-size: 0.87rem; margin-bottom: 18px; line-height: 1.65; }

.svc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; flex: 1; }
.svc-list li { font-size: 0.82rem; color: var(--c-muted); padding-left: 18px; position: relative; line-height: 1.45; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-teal); font-size: 0.75rem; font-weight: 700; }

.svc-footer { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.svc-tag {
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 99px;
}
.svc-tag.required  { background: rgba(220,38,38,0.07); color: #dc2626; border: 1px solid rgba(220,38,38,0.2); }
.svc-tag.voluntary { background: rgba(0,119,182,0.07); color: var(--c-accent); border: 1px solid rgba(0,119,182,0.2); }
.svc-tag.outsource { background: rgba(0,137,123,0.07); color: var(--c-teal); border: 1px solid rgba(0,137,123,0.2); }
.svc-free { font-size: 0.75rem; font-weight: 700; color: var(--c-teal); }

/* ─── Why Us ─────────────────────────────────────────────── */
.whyus { background: var(--c-surf2); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.whyus-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.whyus-text h2 { margin-bottom: 18px; }
.whyus-text > p { font-size: 0.95rem; margin-bottom: 28px; }

.whyus-points { display: flex; flex-direction: column; gap: 18px; }
.wp {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r); transition: border-color 0.2s;
}
.wp:hover { border-color: rgba(0,119,182,0.3); }
.wp-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(0,119,182,0.08); color: var(--c-accent); }
.wp-icon svg { width: 19px; height: 19px; }
.wp-body strong { display: block; font-size: 0.9rem; margin-bottom: 3px; }
.wp-body p { font-size: 0.82rem; margin: 0; }

.whyus-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ws {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 28px; text-align: center;
  box-shadow: var(--shadow);
}
.ws-n { font-size: 2.2rem; font-weight: 800; color: var(--c-navy); letter-spacing: -0.04em; margin-bottom: 4px; }
.ws-n span { color: var(--c-accent); }
.ws-l { font-size: 0.78rem; color: var(--c-muted); font-weight: 500; line-height: 1.4; }
.ws.accent-border { border-top: 3px solid var(--c-accent); }
.ws.teal-border   { border-top: 3px solid var(--c-teal); }

/* ─── Process ────────────────────────────────────────────── */
.process { background: var(--c-bg); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 56px; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-teal));
  border-radius: 2px;
}
.ps { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.ps-num {
  width: 56px; height: 56px; background: var(--c-surface); border: 2px solid var(--c-accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1rem; font-weight: 800; color: var(--c-accent);
  box-shadow: 0 0 0 4px var(--c-bg);
}
.ps:nth-child(4) .ps-num { border-color: var(--c-teal); color: var(--c-teal); }
.ps h4 { font-size: 0.9rem; margin-bottom: 8px; }
.ps p  { font-size: 0.8rem; }

/* ─── Clients ────────────────────────────────────────────── */
.clients { background: var(--c-surf2); border-top: 1px solid var(--c-border); padding: 56px 0; }
.clients-inner { text-align: center; }
.clients-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-light); margin-bottom: 28px; }
.client-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.client-chip {
  font-size: 0.82rem; font-weight: 600; color: var(--c-muted);
  background: var(--c-surface); border: 1px solid var(--c-border);
  padding: 8px 18px; border-radius: 99px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--c-bg); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.faq-q {
  list-style: none; padding: 20px 24px;
  font-size: 0.95rem; font-weight: 600; color: var(--c-text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--c-accent); flex-shrink: 0; transition: transform .25s; }
details[open] .faq-q { color: var(--c-accent); border-bottom: 1px solid var(--c-border); }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 18px 24px; }
.faq-a p { color: var(--c-muted); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ─── Contact ────────────────────────────────────────────── */
.contact { background: var(--c-surf2); border-top: 1px solid var(--c-border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }

.contact-text h2 { margin-bottom: 14px; }
.contact-text > p { margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--c-text); }
.contact-item svg { width: 17px; height: 17px; color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: var(--c-accent); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.contact-note {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 16px 18px;
  font-size: 0.83rem; color: var(--c-muted);
  display: flex; gap: 10px; align-items: flex-start;
}
.contact-note svg { width: 16px; height: 16px; color: var(--c-teal); flex-shrink: 0; margin-top: 1px; }

.contact-form {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 0.8rem; font-weight: 700; color: var(--c-navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--c-text); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  border-radius: var(--r); padding: 9px 13px;
  color: var(--c-text); font-size: 0.88rem;
  font-family: inherit; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
}
.form-group select option { background: var(--c-surface); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.75rem; text-align: center; color: var(--c-muted); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--c-navy); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-shield { background: rgba(255,255,255,0.12); }
.footer-brand .logo-main { color: #fff; margin-left: 0; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.5); }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 6px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col strong { font-size: 0.73rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.footer-col a { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; padding: 20px 24px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.footer-7n { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-7n a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-7n a:hover { color: #fff; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 68px 0 0; }
  .whyus-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .ps-num { box-shadow: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .trust-sep { display: none; }
  .whyus-stats { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 0; }
}
