/* SeekRankTech v5.0 — assets/css/main.css — Professional Rebuild */
/* BUG-002: NO @import — fonts loaded exclusively via wp_enqueue_style() in functions.php */

/* ═══════════════════════════════════════════════════════════
   01 — DESIGN TOKEN SYSTEM (:root)
   BUG-003 FIX: --radius-* aliases added
   BUG-011 FIX: --primary/--accent used (not --violet/--electric)
   ═══════════════════════════════════════════════════════════ */
:root {
  /* ── SURFACES ── */
  --void:        #020608;
  --ink:         #050D10;
  --surface:     #080F14;
  --surface2:    #0C1820;
  --card:        #101E28;
  --card2:       #152330;
  --card-hover:  #1A2D3C;

  /* ── BRAND: TEAL SYSTEM ── */
  --teal:        #1FB6AE;
  --teal-dk:     #0A7A74;
  --teal-lt:     rgba(31,182,174,.10);
  --teal-glow:   rgba(31,182,174,.25);
  --teal-border: rgba(31,182,174,.18);

  /* ── ACCENT: ELECTRIC CYAN ── */
  --cyan:        #00E5FF;
  --cyan-lt:     rgba(0,229,255,.08);
  --cyan-glow:   rgba(0,229,255,.22);

  /* ── DYNAMIC (overridden by PHP srt_dynamic_css) ── */
  --primary:     #1FB6AE;
  --primary-dk:  #0A7A74;
  --accent:      #00E5FF;

  /* ── SECONDARY PALETTE ── */
  --jade:        #10D97C;
  --jade-lt:     rgba(16,217,124,.10);
  --amber:       #F5A623;
  --rose:        #F04E8C;
  --violet:      #7C5CFC;
  --ember:       #FF6340;

  /* ── TEXT HIERARCHY ── */
  --text:        #EBF4F5;
  --text2:       #7DA8B0;
  --text3:       #4A7580;
  --muted:       #2C4D58;

  /* ── BORDERS ── */
  --border:      rgba(31,182,174,.07);
  --border2:     rgba(31,182,174,.14);
  --border3:     rgba(31,182,174,.30);

  /* ── GRADIENTS ── */
  --grad-brand:  linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
  --grad-dark:   linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
  --grad-text:   linear-gradient(135deg, #ffffff 0%, var(--text2) 100%);

  /* ── SHADOWS ── */
  --shadow-xl:   0 40px 100px rgba(0,0,0,.80);
  --shadow-lg:   0 24px 64px  rgba(0,0,0,.65);
  --shadow-md:   0 12px 36px  rgba(0,0,0,.48);
  --shadow-sm:   0 4px  16px  rgba(0,0,0,.32);
  --shadow-teal: 0 8px  32px  rgba(31,182,174,.20);
  --shadow-cyan: 0 8px  32px  rgba(0,229,255,.18);

  /* ── BORDER RADIUS — canonical + BUG-003 aliases ── */
  --r-xl:      24px;
  --r:         16px;
  --r-sm:      10px;
  --r-xs:       6px;
  --r-pill:    50px;
  --radius-xl:  var(--r-xl);
  --radius:     var(--r);
  --radius-sm:  var(--r-sm);
  --radius-xs:  var(--r-xs);

  /* ── TYPOGRAPHY ── */
  --font-h:    'Space Grotesk', -apple-system, sans-serif;
  --font-b:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* ── MOTION SYSTEM ── */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur-fast:    160ms;
  --dur-base:    260ms;
  --dur-slow:    480ms;
  --dur-xslow:   700ms;

  /* ── LAYOUT ── */
  --max-w:    1320px;
  --max-c:    1100px;
  --max-n:     860px;
  --pad-x:      40px;
  --pad-x-sm:   24px;
  --pad-x-xs:   16px;
  --header-h:   72px;
}

/* ═══════════════════════════════════════════════════════════
   02 — RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--card);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-b);
  background: var(--surface);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease); }
a:hover { color: var(--teal); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--teal); color: #000; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════
   03 — SCROLLBAR
   ═══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--card); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ═══════════════════════════════════════════════════════════
   04 — ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 20px;
  background: var(--teal);
  color: #000;
  font-weight: 700;
  border-radius: 0 0 var(--r-xs) var(--r-xs);
  z-index: 9999;
  transition: top var(--dur-base);
}
.skip-link:focus { top: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.srt-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.srt-icon svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════════
   05 — CONTAINERS
   ═══════════════════════════════════════════════════════════ */
.srt-container        { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.srt-container-narrow { max-width: var(--max-c); margin: 0 auto; padding: 0 var(--pad-x); }
.srt-container-text   { max-width: var(--max-n); margin: 0 auto; padding: 0 var(--pad-x); }

/* ═══════════════════════════════════════════════════════════
   06 — TYPOGRAPHY SCALE
   ═══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 600; }
h4 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
h5 { font-size: 18px; font-weight: 600; }
h6 { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); }

p { color: var(--text2); line-height: 1.7; }

.srt-display      { font-family: var(--font-h); font-size: clamp(42px, 6vw, 80px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.srt-lead         { font-size: 18px; font-weight: 400; color: var(--text2); line-height: 1.72; }
.srt-mono         { font-family: var(--font-mono); }
.srt-gradient-text { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════════════════════
   07 — BUTTON SYSTEM
   ═══════════════════════════════════════════════════════════ */
[class*="srt-btn"] {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.srt-btn-primary {
  background: var(--teal);
  color: #000;
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.srt-btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.srt-btn-ghost {
  background: transparent;
  color: var(--text2);
  border-color: var(--border2);
}
.srt-btn-ghost:hover { background: var(--teal-lt); color: var(--teal); border-color: var(--teal-border); }

.srt-btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.srt-btn-outline:hover { background: var(--teal-lt); transform: translateY(-2px); }

.srt-btn-white {
  background: #fff;
  color: var(--teal-dk);
  border-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
}
.srt-btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.36); color: var(--teal-dk); }

.srt-btn-outline-ghost {
  background: transparent;
  color: var(--text2);
  border-color: var(--border2);
  padding: 12px 28px;
}
.srt-btn-outline-ghost:hover { background: var(--teal-lt); color: var(--teal); border-color: var(--teal-border); }

.srt-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.srt-btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: #fff; }

.srt-btn-cyber {
  background: var(--grad-brand);
  color: #000;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 0 0 0 var(--teal-glow);
  animation: srt-glow-pulse 3s ease-in-out infinite;
}
.srt-btn-cyber:hover { transform: translateY(-2px); box-shadow: 0 0 40px var(--teal-glow); color: #000; }

.srt-btn-lg { padding: 15px 36px; font-size: 15.5px; }
.srt-btn-block { display: block; text-align: center; width: 100%; }

/* Ripple effect */
[class*="srt-btn"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
[class*="srt-btn"]:active::after { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   08 — KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes srt-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes srt-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}
@keyframes srt-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes srt-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes srt-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes srt-slide-nav {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes srt-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes srt-spin {
  to { transform: rotate(360deg); }
}
@keyframes srt-pulse-ring {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.8);  opacity: 0; }
}
@keyframes srt-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes srt-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes srt-glow-pulse {
  0%, 100% { box-shadow: 0 0 0  0 var(--teal-glow); }
  50%       { box-shadow: 0 0 32px 4px var(--teal-glow); }
}
@keyframes srt-counter-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   09 — SCROLL ANIMATION CLASSES
   ═══════════════════════════════════════════════════════════ */
.srt-fade-in    { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.srt-slide-left { opacity: 0; transform: translateX(-36px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.srt-slide-right{ opacity: 0; transform: translateX(36px);  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.srt-scale-in   { opacity: 0; transform: scale(.94);        transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }

.srt-fade-in.visible, .srt-slide-left.visible, .srt-slide-right.visible, .srt-scale-in.visible {
  opacity: 1; transform: none;
}

.srt-stagger-1 { transition-delay: .10s !important; }
.srt-stagger-2 { transition-delay: .20s !important; }
.srt-stagger-3 { transition-delay: .30s !important; }
.srt-stagger-4 { transition-delay: .40s !important; }
.srt-stagger-5 { transition-delay: .50s !important; }
.srt-stagger-6 { transition-delay: .60s !important; }

/* ═══════════════════════════════════════════════════════════
   10 — READING PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */
.srt-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-brand);
  z-index: 600;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════════════════════════
   11 — PRELOADER
   ═══════════════════════════════════════════════════════════ */
.srt-preloader {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
}
.srt-preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.srt-preloader-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.srt-preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--teal-border);
}
.srt-preloader-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--teal);
  animation: srt-spin 1.2s linear infinite;
}
.srt-preloader-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--teal-lt);
  animation: srt-pulse-ring 2s ease-out infinite;
}

.srt-preloader-icon { position: relative; z-index: 1; color: var(--teal); }

.srt-preloader-bar {
  width: 140px;
  height: 2px;
  background: var(--border2);
  border-radius: 1px;
  overflow: hidden;
}
.srt-preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad-brand);
  border-radius: 1px;
  animation: srt-preloader-fill 1.8s var(--ease-out) forwards;
}
@keyframes srt-preloader-fill {
  to { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   12 — HEADER
   BUG-007 FIX: logo text fallback removed (handled in PHP)
   BUG-008 FIX: ghost button removed from header
   ═══════════════════════════════════════════════════════════ */
#srt-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(8,15,20,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--dur-base) var(--ease);
}
#srt-header.scrolled {
  background: rgba(5,13,16,.97);
  border-bottom-color: var(--border2);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.srt-header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Logo */
.srt-logo, .srt-logo-icon-only { display: flex; align-items: center; flex-shrink: 0; }
.srt-logo img { height: 44px; width: auto; }
.srt-logo-icon-only .srt-logo-icon {
  width: 40px; height: 40px;
  background: var(--teal-lt);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: all var(--dur-base) var(--ease);
}
.srt-logo-icon-only:hover .srt-logo-icon { background: var(--teal); color: #000; }

/* Primary Nav */
.srt-primary-nav { flex: 1; }
.srt-primary-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.srt-primary-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text2);
  border-radius: var(--r-xs);
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.srt-primary-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.srt-primary-nav ul li a:hover,
.srt-primary-nav ul li.current-menu-item a,
.srt-primary-nav ul li.current-page-ancestor a { color: var(--teal); }
.srt-primary-nav ul li a:hover::after,
.srt-primary-nav ul li.current-menu-item a::after { transform: scaleX(1); }

/* Nav Actions */
.srt-nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Mobile Toggle */
.srt-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border2);
  color: var(--text2);
  transition: all var(--dur-fast) var(--ease);
}
.srt-mobile-toggle:hover { border-color: var(--teal-border); color: var(--teal); background: var(--teal-lt); }

/* Mobile Nav Drawer */
.srt-mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(5,13,16,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 499;
  padding: 24px var(--pad-x-sm) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  border-left: 1px solid var(--border);
}
.srt-mobile-nav.active { transform: translateX(0); }

.srt-mobile-nav .menu { display: flex; flex-direction: column; gap: 4px; }
.srt-mobile-nav .menu li a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text2);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all var(--dur-fast);
}
.srt-mobile-nav .menu li a:hover { color: var(--teal); background: var(--teal-lt); border-color: var(--teal-border); }

.srt-mobile-actions { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════
   13 — HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.srt-hero {
  position: relative;
  overflow: hidden;
  background: var(--void);
  padding: 120px var(--pad-x) 110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 680px;
  justify-content: center;
}

.srt-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31,182,174,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}

.srt-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  animation: srt-float 12s ease-in-out infinite;
}
.srt-hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(31,182,174,.35), transparent 70%);
  top: -15%; left: -10%;
  opacity: .28;
  animation-delay: 0s;
}
.srt-hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,.28), transparent 70%);
  top: -10%; right: -8%;
  opacity: .18;
  animation-delay: -5s;
}
.srt-hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,122,116,.4), transparent 70%);
  bottom: -10%; left: 50%;
  transform: translateX(-50%);
  opacity: .25;
  animation-delay: -8s;
}

.srt-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
}

.srt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--cyan-lt);
  border: 1px solid rgba(0,229,255,.25);
  color: var(--cyan);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  animation: srt-down var(--dur-slow) var(--ease-out) both;
}

.srt-hero-title {
  font-family: var(--font-h);
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 920px;
  margin-bottom: 26px;
}
.srt-hero-title .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srt-hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.74;
  margin-bottom: 40px;
}

.srt-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero Trust Strip */
.srt-hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.srt-hero-avatars { display: flex; }
.srt-hero-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--ink);
  margin-left: -10px;
  font-family: var(--font-h);
}
.srt-hero-av:first-child { margin-left: 0; }

.srt-hero-rating { display: flex; align-items: center; gap: 8px; }
.srt-hero-stars { display: flex; gap: 2px; }
.srt-hero-rating-text { font-size: 13px; font-weight: 600; color: var(--text2); }

.srt-trust-sep {
  width: 1px; height: 20px;
  background: var(--border2);
  flex-shrink: 0;
}

.srt-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
}
.srt-trust-item svg { color: var(--teal); }

/* Hero Floating Cards */
.srt-hero-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(16,30,40,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.srt-hero-float-left  { left: 40px; top: 38%; animation: srt-float 9s ease-in-out infinite; animation-delay: -2s; }
.srt-hero-float-right { right: 40px; top: 52%; animation: srt-float 11s ease-in-out infinite; animation-delay: -4s; }
.srt-hero-float-card svg { color: var(--teal); flex-shrink: 0; }
.srt-hfc-value { display: block; font-family: var(--font-mono); font-size: 18px; font-weight: 700; color: var(--teal); }
.srt-hfc-label { display: block; font-size: 11px; color: var(--text2); font-weight: 500; margin-top: 2px; }

/* Scroll Hint */
.srt-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: srt-bob 3s ease-in-out infinite;
}

/* Typewriter cursor */
.srt-typewriter::after {
  content: '|';
  color: var(--cyan);
  animation: srt-blink .9s ease-in-out infinite;
  margin-left: 1px;
}

/* ═══════════════════════════════════════════════════════════
   14 — TRUST MARQUEE STRIP
   ═══════════════════════════════════════════════════════════ */
.srt-trust-strip {
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.srt-trust-strip::before,
.srt-trust-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.srt-trust-strip::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.srt-trust-strip::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

.srt-trust-outer { overflow: hidden; }

.srt-trust-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: srt-marquee 28s linear infinite;
}
.srt-trust-track:hover { animation-play-state: paused; }

.srt-trust-item-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  white-space: nowrap;
  transition: all var(--dur-base) var(--ease);
}
.srt-trust-item-pill:hover { border-color: var(--teal-border); color: var(--teal); background: var(--teal-lt); }
.srt-trust-item-pill svg { color: var(--teal); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   15 — STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.srt-stats-section { background: var(--ink); }
.srt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.srt-stat-box {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--dur-base) var(--ease);
  position: relative;
}
.srt-stat-box:last-child { border-right: none; }
.srt-stat-box:hover { background: var(--teal-lt); }
.srt-stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.srt-stat-box:hover::before { opacity: 1; }

.srt-stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.srt-stat-num {
  font-family: var(--font-mono);
  font-size: 46px;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.srt-stat-suf {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.srt-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════════
   16 — SECTION SYSTEM
   ═══════════════════════════════════════════════════════════ */
.srt-section      { padding: 88px var(--pad-x); }
.srt-section-alt  { background: var(--surface2); }
.srt-section-dark { background: var(--ink); }
.srt-section-void { background: var(--void); }

.srt-section-inner      { max-width: var(--max-c); margin: 0 auto; }
.srt-section-inner-wide { max-width: var(--max-w); margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   17 — SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.srt-sec-head { text-align: center; margin-bottom: 54px; }

.srt-sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.srt-sec-kicker::before,
.srt-sec-kicker::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--grad-brand);
  flex-shrink: 0;
}
.srt-sec-kicker--left { justify-content: flex-start; }
.srt-sec-kicker--left::before { display: none; }

.srt-sec-title {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.srt-sec-title .hl {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srt-sec-desc { font-size: 15.5px; color: var(--text2); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   18 — GRADIENT DIVIDER
   ═══════════════════════════════════════════════════════════ */
.srt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--cyan), var(--teal), transparent);
  border: none;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   19 — SERVICE CARDS
   ═══════════════════════════════════════════════════════════ */
.srt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srt-svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.srt-svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.srt-svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-teal);
}
.srt-svc-card:hover::before { opacity: 1; }

.srt-svc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--teal-lt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
  transition: all var(--dur-base) var(--ease-spring);
}
.srt-svc-card:hover .srt-svc-icon-wrap {
  background: var(--teal);
  color: #000;
  transform: scale(1.1) rotate(-4deg);
}

.srt-svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.srt-svc-card p  { font-size: 14px; line-height: 1.65; color: var(--text2); margin-bottom: 20px; }

.srt-svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.srt-svc-tag  { padding: 3px 10px; background: var(--teal-lt); border: 1px solid var(--teal-border); color: var(--teal); border-radius: var(--r-pill); font-size: 11px; font-weight: 600; }

.srt-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--dur-fast);
}
.srt-svc-card:hover .srt-svc-link { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   20 — WHY US SECTION
   ═══════════════════════════════════════════════════════════ */
.srt-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.srt-why-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.srt-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  transition: all var(--dur-base) var(--ease);
}
.srt-why-item:hover { transform: translateX(5px); border-color: var(--teal-border); background: var(--teal-lt); }
.srt-why-icon { flex-shrink: 0; color: var(--teal); margin-top: 2px; }
.srt-why-item h5 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.srt-why-item p  { font-size: 13.5px; color: var(--text2); line-height: 1.55; margin: 0; }

/* Metric Panel */
.srt-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.srt-metric-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.srt-metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
}
.srt-metric-val { font-family: var(--font-mono); font-size: 32px; font-weight: 800; color: var(--teal); margin-bottom: 4px; }
.srt-metric-lab { font-size: 12px; color: var(--text2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ═══════════════════════════════════════════════════════════
   21 — PROCESS STEPS
   ═══════════════════════════════════════════════════════════ */
.srt-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.srt-process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border2);
  z-index: 0;
}

.srt-process-step { position: relative; text-align: center; }
.srt-process-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-dark);
  color: #000;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: transform var(--dur-base) var(--ease-spring);
}
.srt-process-step:hover .srt-process-num { transform: scale(1.12); }
.srt-process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.srt-process-step p  { font-size: 13.5px; color: var(--text2); line-height: 1.55; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   22 — TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.srt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.srt-testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease);
}
.srt-testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-teal); border-color: var(--teal-border); }

.srt-testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.srt-testi-text  { font-size: 14.5px; color: var(--text2); line-height: 1.7; flex: 1; font-style: italic; }
.srt-testi-text::before { content: '\201C'; color: var(--teal); font-size: 24px; font-style: normal; display: block; line-height: 1; margin-bottom: 8px; font-family: var(--font-h); }

.srt-testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.srt-testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-dark);
  color: #000;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.srt-testi-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.srt-testi-role { font-size: 12px; color: var(--text3); }
.srt-testi-verified { font-size: 11px; color: var(--jade); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════════════════
   23 — CTA BANNER
   BUG-008 FIX: "Free Audit" language removed
   ═══════════════════════════════════════════════════════════ */
.srt-cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  padding: 80px var(--pad-x);
  text-align: center;
}
.srt-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.srt-cta-banner > * { position: relative; z-index: 1; }
.srt-cta-banner .srt-sec-kicker { color: rgba(0,0,0,.65); }
.srt-cta-banner .srt-sec-kicker::before,
.srt-cta-banner .srt-sec-kicker::after { background: rgba(0,0,0,.35); }
.srt-cta-banner h2 { color: #000; font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.srt-cta-banner p  { color: rgba(0,0,0,.72); font-size: 16px; max-width: 520px; margin: 0 auto 36px; }
.srt-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   24 — PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════ */
.srt-page-hero {
  position: relative;
  padding: 80px var(--pad-x) 72px;
  background: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.srt-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.srt-page-hero-orb {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,182,174,.15), transparent 70%);
  filter: blur(80px);
}
.srt-page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.srt-page-hero-title { font-family: var(--font-h); font-size: clamp(28px, 4vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.srt-page-hero-desc  { font-size: 17px; color: var(--text2); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.srt-page-hero-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Breadcrumb */
.srt-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.srt-breadcrumb a    { font-size: 12px; color: var(--text3); transition: color var(--dur-fast); }
.srt-breadcrumb a:hover { color: var(--teal); }
.srt-breadcrumb .current { font-size: 12px; color: var(--teal); }
.srt-breadcrumb-sep { color: var(--muted); display: flex; }

/* ═══════════════════════════════════════════════════════════
   25 — ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.srt-about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.srt-about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.srt-about-mini-stat {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px 16px;
  text-align: center;
}
.srt-about-mini-stat-val { font-family: var(--font-mono); font-size: 28px; font-weight: 800; color: var(--teal); }
.srt-about-mini-stat-lab { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.srt-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.srt-value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: center;
  transition: all var(--dur-base) var(--ease);
}
.srt-value-card:hover { border-color: var(--teal-border); transform: translateY(-4px); }
.srt-value-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin: 0 auto 16px;
}
.srt-value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.srt-value-card p  { font-size: 13.5px; color: var(--text2); line-height: 1.6; margin: 0; }

.srt-approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.srt-approach-step { padding: 24px 20px; }
.srt-approach-num { font-family: var(--font-mono); font-size: 48px; font-weight: 800; color: var(--teal-border); line-height: 1; margin-bottom: 12px; }
.srt-approach-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.srt-approach-step p  { font-size: 13.5px; color: var(--text2); margin: 0; }

/* Team Grid */
.srt-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.srt-team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  transition: all var(--dur-base) var(--ease);
}
.srt-team-card:hover { transform: translateY(-6px); border-color: var(--teal-border); }
.srt-team-av {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.srt-team-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.srt-team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.srt-team-card .role { font-size: 12.5px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.srt-team-card p { font-size: 13px; color: var(--text2); line-height: 1.55; margin-bottom: 16px; }
.srt-team-socials { display: flex; justify-content: center; gap: 8px; }
.srt-team-social-link { width: 32px; height: 32px; border-radius: 50%; background: var(--teal-lt); border: 1px solid var(--teal-border); color: var(--teal); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); }
.srt-team-social-link:hover { background: var(--teal); color: #000; }

/* ═══════════════════════════════════════════════════════════
   26 — CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.srt-contact-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.srt-contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--dur-base);
}
.srt-contact-info-card:hover { border-color: var(--teal-border); }
.srt-contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-lt); border: 1px solid var(--teal-border); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.srt-contact-info-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.srt-contact-info-card a  { color: var(--teal); font-size: 14px; font-weight: 500; }
.srt-contact-info-card p  { font-size: 13px; color: var(--text3); margin: 0; }

.srt-contact-body { display: grid; grid-template-columns: 1.85fr 1fr; gap: 32px; }

.srt-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}

.srt-contact-aside { display: flex; flex-direction: column; gap: 24px; }
.srt-aside-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.srt-aside-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.srt-aside-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.srt-aside-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text2); }
.srt-aside-list svg { color: var(--jade); flex-shrink: 0; margin-top: 2px; }

.srt-next-steps { display: flex; flex-direction: column; gap: 12px; }
.srt-next-step { display: flex; align-items: flex-start; gap: 12px; }
.srt-next-num { width: 28px; height: 28px; border-radius: 50%; background: var(--teal-lt); border: 1px solid var(--teal-border); color: var(--teal); font-family: var(--font-mono); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.srt-next-step-text h6 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; text-transform: none; letter-spacing: normal; }
.srt-next-step-text p  { font-size: 12px; color: var(--text3); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   27 — FORM SYSTEM
   ═══════════════════════════════════════════════════════════ */
.srt-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.srt-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.srt-form-group:last-child { margin-bottom: 0; }

.srt-form-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
}
.srt-form-label .required { color: var(--rose); margin-left: 2px; }

.srt-form-input,
.srt-form-select,
.srt-form-textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  padding: 12px 16px;
  width: 100%;
  transition: all var(--dur-base) var(--ease);
}
.srt-form-input::placeholder,
.srt-form-textarea::placeholder { color: var(--text3); }
.srt-form-input:focus,
.srt-form-select:focus,
.srt-form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-lt);
  outline: none;
  background: rgba(31,182,174,.05);
}

.srt-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A7580' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.srt-form-select option { background: var(--card2); color: var(--text); }

.srt-form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.srt-form-input.error,
.srt-form-select.error,
.srt-form-textarea.error { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(240,78,140,.12); }
.srt-form-input.valid,
.srt-form-select.valid,
.srt-form-textarea.valid { border-color: var(--jade); }

.srt-form-msg { margin-top: 16px; padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; }
.srt-form-msg.success { background: var(--jade-lt); border: 1px solid var(--jade); color: var(--jade); }
.srt-form-msg.error   { background: rgba(240,78,140,.1); border: 1px solid var(--rose); color: var(--rose); }

/* ═══════════════════════════════════════════════════════════
   28 — SERVICES PAGE
   ═══════════════════════════════════════════════════════════ */
.srt-custom-solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.srt-solution-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
}
.srt-solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.srt-solution-card:hover::before { transform: scaleX(1); }
.srt-solution-card:hover { border-color: var(--teal-border); transform: translateY(-4px); }
.srt-solution-tier { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.srt-solution-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.srt-solution-card p  { font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 20px; }
.srt-solution-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.srt-solution-features li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text2); }
.srt-solution-features svg { color: var(--jade); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   29 — BLOG / ARCHIVE
   ═══════════════════════════════════════════════════════════ */
.srt-blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.srt-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.srt-post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.srt-post-card:hover { transform: translateY(-6px); border-color: var(--teal-border); box-shadow: var(--shadow-teal); }
.srt-post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--card2); }
.srt-post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow); }
.srt-post-card:hover .srt-post-card-img img { transform: scale(1.06); }
.srt-post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.srt-post-card-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.srt-cat-pill { display: inline-block; padding: 3px 10px; background: var(--teal-lt); border: 1px solid var(--teal-border); color: var(--teal); border-radius: var(--r-pill); font-size: 11px; font-weight: 600; transition: all var(--dur-fast); }
.srt-cat-pill:hover { background: var(--teal); color: #000; }
.srt-post-card-title { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--text); }
.srt-post-card-title a:hover { color: var(--teal); }
.srt-post-card-excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.srt-post-card-meta { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border); }
.srt-post-card-meta span { font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 5px; }

/* Featured Wide Post */
.srt-post-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.srt-post-featured .srt-post-card-img { aspect-ratio: unset; min-height: 280px; }

/* ═══════════════════════════════════════════════════════════
   30 — SINGLE POST
   ═══════════════════════════════════════════════════════════ */
.srt-single-hero { position: relative; padding: 64px var(--pad-x) 0; background: var(--ink); }
.srt-single-hero-img { aspect-ratio: 21/9; overflow: hidden; border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: 40px; }
.srt-single-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.srt-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 48px var(--pad-x); max-width: var(--max-w); margin: 0 auto; }
.srt-post-body { min-width: 0; }
.srt-post-body h2, .srt-post-body h3, .srt-post-body h4 { color: var(--text); font-family: var(--font-h); margin: 28px 0 12px; }
.srt-post-body p  { color: var(--text2); line-height: 1.75; margin-bottom: 18px; }
.srt-post-body a  { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.srt-post-body a:hover { color: var(--cyan); }
.srt-post-body ul, .srt-post-body ol { padding-left: 24px; margin-bottom: 18px; color: var(--text2); }
.srt-post-body ul { list-style: disc; }
.srt-post-body ol { list-style: decimal; }
.srt-post-body li { margin-bottom: 8px; line-height: 1.7; }
.srt-post-body blockquote { border-left: 3px solid var(--teal); padding: 12px 20px; background: var(--teal-lt); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 24px 0; font-style: italic; color: var(--text2); }
.srt-post-body code { background: var(--card2); color: var(--teal); padding: 2px 8px; border-radius: var(--r-xs); font-family: var(--font-mono); font-size: .9em; }
.srt-post-body pre { background: var(--card2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 20px; overflow-x: auto; margin-bottom: 18px; }
.srt-post-body pre code { background: none; padding: 0; }
.srt-post-body img { border-radius: var(--r-sm); margin: 20px 0; }
.srt-post-body table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.srt-post-body th { background: var(--card2); padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; color: var(--text); border: 1px solid var(--border); }
.srt-post-body td { padding: 12px 16px; border: 1px solid var(--border); font-size: 13.5px; color: var(--text2); }

/* ═══════════════════════════════════════════════════════════
   31 — SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.srt-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.srt-widget  { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; margin-bottom: 20px; }
.srt-widget-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text2); margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════
   32 — 404 PAGE
   ═══════════════════════════════════════════════════════════ */
.srt-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px var(--pad-x); }
.srt-404-num {
  font-family: var(--font-mono);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.srt-404-title { font-size: clamp(22px, 3vw, 36px); font-weight: 700; margin-bottom: 12px; }
.srt-404-desc  { font-size: 16px; color: var(--text2); max-width: 480px; margin: 0 auto 36px; }
.srt-404-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   33 — COMING SOON
   ═══════════════════════════════════════════════════════════ */
.srt-coming-soon { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--void); padding: 60px var(--pad-x); }
.srt-cd-row { display: flex; gap: 20px; justify-content: center; margin: 40px 0; flex-wrap: wrap; }
.srt-cd-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 20px; min-width: 90px; }
.srt-cd-num { font-family: var(--font-mono); font-size: clamp(36px, 6vw, 60px); font-weight: 800; color: var(--teal); line-height: 1; }
.srt-cd-lbl { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   34 — THANK YOU PAGE
   ═══════════════════════════════════════════════════════════ */
.srt-thankyou { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px var(--pad-x); }
.srt-ty-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--jade-lt); border: 2px solid var(--jade); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; color: var(--jade); animation: srt-fade-up .6s var(--ease-out) both; }
.srt-ty-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 12px; }
.srt-ty-desc  { font-size: 16px; color: var(--text2); max-width: 480px; margin: 0 auto 36px; }
.srt-ty-steps { text-align: left; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; max-width: 480px; margin: 0 auto 36px; }
.srt-ty-steps h5 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.08em; }
.srt-ty-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.srt-ty-step:last-child { margin-bottom: 0; }
.srt-ty-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); color: #000; font-family: var(--font-mono); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.srt-ty-step-text h6 { font-size: 14px; font-weight: 600; margin-bottom: 2px; text-transform: none; letter-spacing: normal; color: var(--text); }
.srt-ty-step-text p  { font-size: 13px; color: var(--text3); margin: 0; }
.srt-ty-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   35 — LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.srt-legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; padding: 48px var(--pad-x); max-width: var(--max-w); margin: 0 auto; align-items: start; }
.srt-legal-toc { position: sticky; top: calc(var(--header-h) + 24px); }
.srt-legal-toc h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 16px; }
.srt-legal-toc-list { list-style: none; }
.srt-legal-toc-list li a { display: block; padding: 7px 12px; font-size: 13px; color: var(--text2); border-left: 2px solid var(--border2); transition: all var(--dur-fast); }
.srt-legal-toc-list li a:hover, .srt-legal-toc-list li a.active { color: var(--teal); border-left-color: var(--teal); background: var(--teal-lt); }

.srt-legal-content h2 { font-size: 24px; font-weight: 700; margin: 36px 0 12px; padding-top: 36px; border-top: 1px solid var(--border); color: var(--text); }
.srt-legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.srt-legal-content h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; color: var(--text); }
.srt-legal-content p  { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 16px; }
.srt-legal-content ul, .srt-legal-content ol { padding-left: 24px; margin-bottom: 16px; color: var(--text2); }
.srt-legal-content li { margin-bottom: 6px; line-height: 1.7; font-size: 15px; }
.srt-legal-content a  { color: var(--teal); }
.srt-legal-updated { font-size: 13px; color: var(--text3); margin-bottom: 32px; padding: 12px 16px; background: var(--card2); border-radius: var(--r-xs); border-left: 3px solid var(--teal); }

/* ═══════════════════════════════════════════════════════════
   36 — FOOTER
   ═══════════════════════════════════════════════════════════ */
.srt-footer {
  background: var(--void);
  border-top: 1px solid var(--border);
}
.srt-footer-top { padding: 64px var(--pad-x) 48px; }
.srt-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.srt-footer-logo { margin-bottom: 20px; }
.srt-footer-logo img { height: 40px; width: auto; }
.srt-footer-logo-icon-link { display: inline-flex; }
.srt-footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--teal-lt);
  border: 1px solid var(--teal-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}

.srt-footer-brand p  { font-size: 14px; color: var(--text3); line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.srt-footer-socials  { display: flex; gap: 10px; flex-wrap: wrap; }

.srt-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease);
}
.srt-social-btn:hover { background: var(--teal); border-color: var(--teal); color: #000; transform: translateY(-2px); }

.srt-footer-col h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text2); margin-bottom: 20px; }
.srt-footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.srt-footer-col li a { font-size: 14px; color: var(--text3); transition: color var(--dur-fast); }
.srt-footer-col li a:hover { color: var(--teal); }

/* Newsletter inline form */
.srt-nl-form { display: flex; gap: 8px; margin-top: 20px; }
.srt-nl-input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: var(--r-pill);
  color: var(--text);
  font-size: 13px;
  padding: 10px 16px;
  transition: border-color var(--dur-base);
}
.srt-nl-input::placeholder { color: var(--text3); }
.srt-nl-input:focus { border-color: var(--teal); outline: none; }
.srt-nl-btn { padding: 10px 16px; background: var(--teal); color: #000; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; white-space: nowrap; transition: all var(--dur-base); flex-shrink: 0; }
.srt-nl-btn:hover { background: var(--cyan); }

.srt-footer-divider { height: 1px; background: var(--border); max-width: var(--max-w); margin: 0 auto; }

.srt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.srt-footer-copy  { font-size: 13px; color: var(--text3); }
.srt-footer-legal { display: flex; gap: 20px; }
.srt-footer-legal a { font-size: 13px; color: var(--text3); transition: color var(--dur-fast); }
.srt-footer-legal a:hover { color: var(--teal); }

/* ═══════════════════════════════════════════════════════════
   37 — COOKIE BAR
   ═══════════════════════════════════════════════════════════ */
.srt-cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(5,13,16,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border2);
  padding: 16px var(--pad-x);
  z-index: 800;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.srt-cookie-bar.visible { display: flex; animation: srt-slide-up var(--dur-slow) var(--ease-out) both; }
.srt-cookie-text { flex: 1; font-size: 13.5px; color: var(--text2); min-width: 240px; }
.srt-cookie-text a { color: var(--teal); }
.srt-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   38 — WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */
.srt-whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 700;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.srt-whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.5); color: #fff; }
.srt-wa-tooltip {
  position: absolute;
  right: 60px;
  background: var(--card2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-xs);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}
.srt-whatsapp-float:hover .srt-wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   39 — SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════ */
.srt-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-teal);
  z-index: 700;
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base), background var(--dur-fast);
  cursor: pointer;
  border: none;
}
.srt-scroll-top.visible { transform: translateY(0); opacity: 1; }
.srt-scroll-top:hover { background: var(--cyan); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   40 — PAGINATION
   ═══════════════════════════════════════════════════════════ */
.srt-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.srt-pagination a,
.srt-pagination .current,
.srt-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border2);
  color: var(--text2);
  transition: all var(--dur-fast);
}
.srt-pagination a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-lt); }
.srt-pagination .current { background: var(--teal); border-color: var(--teal); color: #000; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   41 — FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.srt-faq-list { display: flex; flex-direction: column; gap: 12px; }
.srt-faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.srt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.srt-faq-q:hover { color: var(--teal); }
.srt-faq-icon { color: var(--teal); flex-shrink: 0; transition: transform var(--dur-base) var(--ease); }
.srt-faq-item.open .srt-faq-icon { transform: rotate(180deg); }
.srt-faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease); }
.srt-faq-a p { font-size: 14.5px; color: var(--text2); line-height: 1.7; padding-bottom: 18px; margin: 0; }
.srt-faq-item.open .srt-faq-a { max-height: 500px; }

/* ═══════════════════════════════════════════════════════════
   42 — SEARCH FORM
   ═══════════════════════════════════════════════════════════ */
.srt-search-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.srt-search-form input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border2);
  border-right: none;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  padding: 12px 20px;
  color: var(--text);
  font-size: 15px;
}
.srt-search-form input:focus { outline: none; border-color: var(--teal); }
.srt-search-form button { border-radius: 0 var(--r-pill) var(--r-pill) 0; padding: 12px 20px; background: var(--teal); color: #000; cursor: pointer; border: 1px solid var(--teal); }

/* ═══════════════════════════════════════════════════════════
   43 — ADMIN BAR OFFSETS
   ═══════════════════════════════════════════════════════════ */
.admin-bar #srt-header             { top: 32px; }
.admin-bar .srt-mobile-nav         { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) {
  .admin-bar #srt-header           { top: 46px; }
  .admin-bar .srt-mobile-nav       { top: calc(64px + 46px); }
}

/* ═══════════════════════════════════════════════════════════
   44 — CASE STUDIES
   ═══════════════════════════════════════════════════════════ */
.srt-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.srt-case-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--dur-base) var(--ease); }
.srt-case-card:hover { transform: translateY(-6px); border-color: var(--teal-border); box-shadow: var(--shadow-teal); }
.srt-case-card-header { padding: 24px 24px 0; }
.srt-case-industry { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; background: var(--teal-lt); border: 1px solid var(--teal-border); color: var(--teal); border-radius: var(--r-pill); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.srt-case-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.srt-case-card p  { font-size: 13.5px; color: var(--text2); line-height: 1.65; }
.srt-case-metrics { display: flex; gap: 0; border-top: 1px solid var(--border); margin-top: 20px; }
.srt-case-metric { flex: 1; padding: 14px 16px; text-align: center; border-right: 1px solid var(--border); }
.srt-case-metric:last-child { border-right: none; }
.srt-case-metric-val { font-family: var(--font-mono); font-size: 22px; font-weight: 800; color: var(--teal); display: block; }
.srt-case-metric-lab { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; }

/* Filter Pills */
.srt-filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.srt-filter-pill { padding: 7px 18px; background: var(--card); border: 1px solid var(--border2); border-radius: var(--r-pill); font-size: 13px; font-weight: 500; color: var(--text2); cursor: pointer; transition: all var(--dur-fast); }
.srt-filter-pill:hover, .srt-filter-pill.active { background: var(--teal); border-color: var(--teal); color: #000; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   45 — CAREERS PAGE
   ═══════════════════════════════════════════════════════════ */
.srt-why-join-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.srt-why-join-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; transition: border-color var(--dur-base); }
.srt-why-join-card:hover { border-color: var(--teal-border); }
.srt-why-join-card .srt-svc-icon-wrap { margin-bottom: 16px; }
.srt-why-join-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.srt-why-join-card p  { font-size: 13.5px; color: var(--text2); margin: 0; }

.srt-jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.srt-job-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; transition: all var(--dur-base); }
.srt-job-card:hover { border-color: var(--teal-border); }
.srt-job-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.srt-job-meta  { display: flex; gap: 12px; flex-wrap: wrap; }
.srt-job-tag   { padding: 3px 10px; background: var(--teal-lt); border: 1px solid var(--teal-border); color: var(--teal); border-radius: var(--r-pill); font-size: 11px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   46 — EDITOR STYLES BASE
   ═══════════════════════════════════════════════════════════ */
.wp-block { max-width: var(--max-n); }
.wp-block-image img { border-radius: var(--r-sm); }
.wp-block-pullquote { border: 2px solid var(--teal); padding: 20px 28px; }

/* ═══════════════════════════════════════════════════════════
   47 — COMMENTS
   ═══════════════════════════════════════════════════════════ */
.srt-comments { padding: 0 0 48px; }
.srt-comments h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.comment-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.comment-body { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 20px; }
.comment-author .fn { font-weight: 600; color: var(--text); }
.comment-metadata { font-size: 12px; color: var(--text3); margin-bottom: 12px; }
.comment-content p { font-size: 14px; color: var(--text2); line-height: 1.7; margin: 0; }
.comment-reply-link { font-size: 13px; color: var(--teal); font-weight: 500; margin-top: 10px; display: inline-block; }

/* ═══════════════════════════════════════════════════════════
   48 — PRINT MEDIA
   ═══════════════════════════════════════════════════════════ */
@media print {
  #srt-header, .srt-footer, .srt-preloader, .srt-scroll-top, .srt-whatsapp-float, .srt-cookie-bar, .srt-progress-bar { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a::after { content: ' (' attr(href) ')'; font-size: 11px; }
  .srt-hero { min-height: 0; padding: 20px 0; }
}

/* ═══════════════════════════════════════════════════════════
   49 — RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --pad-x: 32px; }
  .srt-hero-float-card { display: none; }
  .srt-footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1100px) {
  .srt-footer-grid { grid-template-columns: 1fr 1fr; }
  .srt-footer-brand { grid-column: 1 / -1; }
  .srt-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .srt-blog-layout { grid-template-columns: 1fr; }
  .srt-legal-layout { grid-template-columns: 1fr; }
  .srt-legal-toc { position: static; margin-bottom: 32px; }
  .srt-team-grid { grid-template-columns: repeat(3, 1fr); }
  .srt-values-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-approach-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-why-join-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .srt-services-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-stat-box { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .srt-stat-box:nth-child(2) { border-right: none; }
  .srt-stat-box:nth-child(3),
  .srt-stat-box:nth-child(4) { border-bottom: none; }
  .srt-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-process-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-process-grid::before { display: none; }
  .srt-contact-info-row { grid-template-columns: repeat(2, 1fr); }
  .srt-contact-body { grid-template-columns: 1fr; }
  .srt-case-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-custom-solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-post-layout { grid-template-columns: 1fr; }
  .srt-about-story { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --pad-x: var(--pad-x-sm); --header-h: 64px; }

  /* Nav */
  .srt-primary-nav { display: none; }
  .srt-mobile-toggle { display: flex; }
  .srt-nav-actions .srt-btn-primary { display: none; }

  /* Sections */
  .srt-section { padding: 64px var(--pad-x-sm); }
  .srt-hero { padding: 80px var(--pad-x-sm) 72px; min-height: 0; }

  /* All grids → 1-col */
  .srt-services-grid,
  .srt-testi-grid,
  .srt-process-grid,
  .srt-case-grid,
  .srt-custom-solutions-grid,
  .srt-contact-info-row,
  .srt-jobs-grid,
  .srt-why-join-grid,
  .srt-metrics-grid,
  .srt-about-mini-stats { grid-template-columns: 1fr; }

  .srt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-stat-box { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .srt-stat-box:nth-child(2n) { border-right: none; }
  .srt-stat-box:last-child { border-bottom: none; }

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

  .srt-cookie-bar { flex-direction: column; align-items: flex-start; padding: 16px var(--pad-x-sm); }
  .srt-cookie-actions { width: 100%; }
  .srt-cookie-actions .srt-btn-primary { flex: 1; justify-content: center; }

  .srt-hero-btns { flex-direction: column; align-items: center; }
  .srt-hero-btns a { width: 100%; max-width: 280px; justify-content: center; }

  .srt-cta-btns { flex-direction: column; align-items: center; }
  .srt-cta-btns a { width: 100%; max-width: 280px; justify-content: center; }

  .srt-form-row { grid-template-columns: 1fr; }

  .srt-post-featured { grid-template-columns: 1fr; }
  .srt-post-featured .srt-post-card-img { min-height: 200px; }

  .srt-blog-grid { grid-template-columns: 1fr; }

  .srt-team-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-values-grid { grid-template-columns: repeat(2, 1fr); }
  .srt-approach-grid { grid-template-columns: 1fr; }

  .srt-footer-bottom { flex-direction: column; text-align: center; }
  .srt-footer-legal { justify-content: center; flex-wrap: wrap; }

  .srt-header-inner { padding: 0 var(--pad-x-sm); }
  .srt-container, .srt-container-narrow, .srt-container-text { padding: 0 var(--pad-x-sm); }
}

@media (max-width: 480px) {
  .srt-stats-grid { grid-template-columns: 1fr; }
  .srt-stat-box { border-right: none; }
  .srt-team-grid { grid-template-columns: 1fr; }
  .srt-values-grid { grid-template-columns: 1fr; }
  .srt-why-join-grid { grid-template-columns: 1fr; }
  .srt-hero-title { font-size: clamp(30px, 8vw, 44px); }
  .srt-stat-num { font-size: 36px; }
  .srt-stat-suf { font-size: 20px; }
  .srt-cd-row { gap: 12px; }
  .srt-cd-box { min-width: 70px; padding: 16px 12px; }
}

@media (max-width: 360px) {
  :root { --pad-x-sm: 14px; }
  .srt-hero-title { font-size: 26px; }
  .srt-stat-num { font-size: 30px; }
  .srt-cd-num { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   50 — REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .srt-trust-track { animation: none; }
  .srt-scroll-hint { animation: none; }
  .srt-hero-orb    { animation: none; }
  .srt-hero-float-card { animation: none; }
  .srt-preloader-ring::before { animation: none; }
}
