/* ============================================
   DIVERSICOM REDESIGN — STYLESHEET
   WordPress-compatible class naming
   ============================================ */

/* Fonts now loaded via <link rel="preconnect"> + <link rel="stylesheet"> in HTML head for non-blocking render. */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; -webkit-text-size-adjust:100%; }
body { font-family:'Inter', system-ui, -apple-system, sans-serif; color:#1a1a2e; background:#fff; line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ---------- ACCESSIBILITY UTILITIES ---------- */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:absolute; top:-100px; left:16px; background:var(--blue); color:#fff; padding:12px 20px; border-radius:8px; font-weight:600; font-size:.9rem; z-index:1000; transition:top .2s; }
.skip-link:focus { top:16px; outline:3px solid var(--cyan); outline-offset:2px; }

/* Global focus-visible — keyboard users get a clear ring, mouse users don't see it */
:focus { outline:none; }
:focus-visible { outline:3px solid var(--cyan); outline-offset:2px; border-radius:4px; }
.btn:focus-visible, .form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible { outline-offset:3px; }

/* Respect users who prefer 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; }
  .reveal { opacity:1 !important; transform:none !important; }
}

/* ---------- TOKENS ---------- */
:root {
  /* Brand */
  --navy: #0a0e27;
  --navy-light: #141937;
  --blue: #2b5cff;
  --blue-light: #4d7aff;
  --blue-glow: rgba(43,92,255,.25);
  --cyan: #00d4ff;
  --green: #00e68a;
  --white: #ffffff;
  /* Grayscale */
  --gray-50: #f8f9fc;
  --gray-100: #eef0f6;
  --gray-200: #dde1eb;
  --gray-300: #b8bdd1;
  --gray-400: #8a90a8;
  --gray-500: #6b7194;
  --gray-600: #4a4f6a;
  --gray-700: #2d3152;
  --text: #1a1a2e;
  --text-muted: #6b7194;
  /* Semantic status */
  --color-success: #059669;
  --color-success-bg: rgba(0,230,138,.1);
  --color-danger: #ef4444;
  --color-danger-bg: rgba(239,68,68,.1);
  --color-warning: #f59e0b;
  --color-warning-bg: rgba(245,158,11,.1);
  /* Surface elevation on dark */
  --dark-surface-1: rgba(255,255,255,.04);
  --dark-surface-2: rgba(255,255,255,.06);
  --dark-border: rgba(255,255,255,.08);
  /* Geometry */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(10,14,39,.06);
  --shadow-md: 0 4px 20px rgba(10,14,39,.08);
  --shadow-lg: 0 8px 40px rgba(10,14,39,.12);
  --shadow-glow: 0 0 40px rgba(43,92,255,.15);
  --max-w: 1200px;
  /* Motion (skill: 150-300ms with ease-out for entering) */
  --transition-fast: .15s cubic-bezier(.4,0,.2,1);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);
  /* Header height — used for scroll-padding and sticky offsets */
  --header-h: 72px;
}

html { scroll-padding-top:var(--header-h); }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6,.font-display { font-family:'Inter Tight', system-ui, sans-serif; font-weight:700; line-height:1.15; text-wrap:balance; }
h1 { font-size:clamp(2.25rem, 5vw, 4.2rem); letter-spacing:-.03em; }
h2 { font-size:clamp(1.75rem, 4vw, 3rem); letter-spacing:-.02em; }
h3 { font-size:clamp(1.15rem, 2vw, 1.5rem); }
p { line-height:1.7; text-wrap:pretty; }
/* Tabular numbers for stats, prices, counters — prevents layout shift on data */
.stat-num, .why-stat-num, .hero-proof-num, .counter, .compare-row, .pricing-card .price { font-variant-numeric:tabular-nums; }

.text-gradient { background:linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.text-muted { color:var(--text-muted); }
.text-sm { font-size:.875rem; }
.text-xs { font-size:.75rem; }
.text-center { text-align:center; }

/* ---------- LAYOUT ---------- */
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }
.section { padding:100px 0; }
.section-dark { background:var(--navy); color:var(--white); }
.section-gray { background:var(--gray-50); }
.grid { display:grid; gap:24px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }
.flex { display:flex; }
.flex-col { flex-direction:column; }
.items-center { align-items:center; }
.justify-between { justify-content:space-between; }
.gap-sm { gap:12px; }
.gap-md { gap:24px; }
.gap-lg { gap:48px; }

@media(max-width:1024px) { .grid-3,.grid-4 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px) { .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; } .section { padding:60px 0; } }

/* ---------- BUTTONS ---------- */
/* Min height 44px hits the touch-target standard (Apple HIG 44pt / Material 48dp) */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:14px 28px; min-height:44px; border-radius:var(--radius); font-weight:600; font-size:.9rem; transition:background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition); cursor:pointer; border:none; font-family:inherit; text-align:center; line-height:1.2; touch-action:manipulation; -webkit-tap-highlight-color:transparent; }
.btn:disabled { opacity:.5; cursor:not-allowed; pointer-events:none; }
.btn-primary { background:var(--blue); color:var(--white); box-shadow:0 4px 15px rgba(43,92,255,.3); }
.btn-primary:hover { background:var(--blue-light); transform:translateY(-2px); box-shadow:0 6px 25px rgba(43,92,255,.4); }
.btn-primary:active { transform:translateY(0); box-shadow:0 2px 8px rgba(43,92,255,.3); }
.btn-outline { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color:var(--white); background:rgba(255,255,255,.1); }
.btn-outline-dark { background:transparent; color:var(--blue); border:2px solid var(--blue); }
.btn-outline-dark:hover { background:var(--blue); color:var(--white); }
.btn-ghost { background:transparent; color:var(--blue); padding:14px 0; min-height:auto; }
.btn-ghost:hover { gap:12px; }
.btn-lg { padding:18px 36px; font-size:1rem; border-radius:var(--radius-lg); min-height:56px; }
.btn svg,.btn i { width:18px; height:18px; flex-shrink:0; }
.btn .spin { animation:spin 1s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* ---------- HEADER / NAV ---------- */
.site-header { position:fixed; top:0; left:0; right:0; z-index:100; padding:20px 0; transition:padding var(--transition), background var(--transition), box-shadow var(--transition); }
.site-header.scrolled { background:rgba(10,14,39,.95); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px); padding:12px 0; box-shadow:0 4px 30px rgba(0,0,0,.2); }
.header-inner { display:flex; align-items:center; }
.logo { display:flex; align-items:center; gap:12px; }
.logo img { transition:transform var(--transition); }
.logo:hover img { transform:scale(1.04); }
.logo-mark { width:40px; height:40px; background:var(--blue); border-radius:10px; display:flex; align-items:center; justify-content:center; font-family:'Inter Tight'; font-weight:900; font-size:1.2rem; color:var(--white); }
.logo-text { font-family:'Inter Tight'; font-weight:800; font-size:1.25rem; color:var(--white); letter-spacing:-.02em; }
.logo-sub { font-size:.6rem; letter-spacing:.15em; text-transform:uppercase; color:var(--gray-400); display:block; margin-top:-2px; }
.nav-links { display:flex; align-items:center; gap:28px; margin-left:32px; }
.nav-links a { color:rgba(255,255,255,.75); font-size:.9rem; font-weight:500; transition:color var(--transition); position:relative; padding:8px 0; }
.nav-links a:hover,.nav-links a.active,.nav-links a[aria-current="page"] { color:var(--white); }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--blue); transition:width var(--transition); }
.nav-links a:hover::after,.nav-links a.active::after,.nav-links a[aria-current="page"]::after { width:100%; }
.nav-cta { display:flex; align-items:center; gap:16px; margin-left:auto; }
.nav-phone { color:rgba(255,255,255,.7); font-size:.85rem; font-weight:500; display:inline-flex; align-items:center; gap:6px; transition:color var(--transition); }
.nav-phone:hover { color:var(--white); }
.nav-phone strong { color:var(--white); font-weight:700; }
.nav-phone svg { width:14px; height:14px; opacity:.7; }

/* Mobile nav */
.nav-toggle { display:none; background:none; border:none; color:var(--white); cursor:pointer; padding:10px; min-width:44px; min-height:44px; align-items:center; justify-content:center; border-radius:8px; transition:background var(--transition); }
.nav-toggle:hover, .nav-toggle[aria-expanded="true"] { background:rgba(255,255,255,.08); }
@media(max-width:900px) {
  .nav-toggle { display:inline-flex; }
  .nav-links { display:none; position:absolute; top:100%; left:0; right:0; background:rgba(10,14,39,.98); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px); flex-direction:column; padding:24px; gap:4px; border-top:1px solid rgba(255,255,255,.1); align-items:stretch; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:14px 8px; font-size:1rem; min-height:44px; display:flex; align-items:center; border-radius:8px; }
  .nav-links a:hover { background:rgba(255,255,255,.04); }
  .nav-links a::after { display:none; }
  .nav-cta .btn { display:none; }
  .nav-phone { display:none; }
}

/* ---------- HERO ---------- */
/* min-height:100dvh prevents the iOS Safari URL-bar jump that 100vh causes */
.hero { position:relative; min-height:100vh; min-height:100dvh; display:flex; align-items:center; background:var(--navy); overflow:hidden; }
.hero-row { position:relative; z-index:2; display:flex; align-items:center; gap:60px; padding-top:120px; padding-bottom:60px; min-height:100vh; min-height:100dvh; }
@media(max-width:1100px) { .hero-row { padding-top:110px; min-height:auto; } }
.hero-bg { position:absolute; inset:0; }
.hero-bg::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 50%, rgba(43,92,255,.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(0,212,255,.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 100%, rgba(43,92,255,.08) 0%, transparent 60%); }
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size:60px 60px; -webkit-mask-image:radial-gradient(ellipse at center, black 30%, transparent 70%); mask-image:radial-gradient(ellipse at center, black 30%, transparent 70%); }
.hero-content { position:relative; z-index:3; max-width:600px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(43,92,255,.15); border:1px solid rgba(43,92,255,.3); color:var(--cyan); padding:8px 16px; border-radius:100px; font-size:.8rem; font-weight:600; margin-bottom:28px; }
.hero-badge .dot { width:8px; height:8px; background:var(--green); border-radius:50%; animation:pulse 2s infinite; box-shadow:0 0 8px rgba(0,230,138,.6); }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.9); } }
.hero h1 { color:var(--white); margin-bottom:20px; }
.hero h1 em { font-style:normal; color:var(--cyan); }
.hero-sub { font-size:1.15rem; color:var(--gray-400); margin-bottom:36px; max-width:540px; line-height:1.7; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px; }
.hero-proof { display:flex; align-items:center; gap:20px; padding-top:32px; border-top:1px solid rgba(255,255,255,.08); flex-wrap:wrap; }
.hero-proof-item { text-align:center; flex:1 1 auto; min-width:80px; }
.hero-proof-num { font-family:'Inter Tight'; font-size:1.8rem; font-weight:800; color:var(--white); }
.hero-proof-num .unit { font-size:.9rem; font-weight:600; color:var(--cyan); }
.hero-proof-label { font-size:.7rem; color:var(--gray-400); text-transform:uppercase; letter-spacing:.08em; margin-top:2px; }
.hero-proof-divider { width:1px; height:40px; background:rgba(255,255,255,.1); }

/* Hero right visual */
.hero-visual { width:340px; flex-shrink:0; margin-left:auto; z-index:2; opacity:.85; }
.hero-visual-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:24px; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); margin-bottom:16px; }
.hero-visual-card.glow { box-shadow:var(--shadow-glow); border-color:rgba(43,92,255,.3); }
/* Hide visual cards on tablet (where they'd be cramped) but keep them on small desktop+ */
@media(max-width:1100px) { .hero-visual { display:none; } }
@media(max-width:768px) {
  .hero { min-height:auto; padding-top:120px !important; padding-bottom:60px !important; }
  .hero h1 { font-size:clamp(2rem, 8vw, 2.75rem); }
  .hero-sub { font-size:1rem; margin-bottom:28px; }
  .hero-actions { margin-bottom:36px; gap:12px; }
  .hero-actions .btn { width:100%; }
  .hero-proof { gap:8px 16px; }
  .hero-proof-num { font-size:1.4rem; }
  .hero-proof-divider { display:none; }
}

/* ---------- STATS TICKER ---------- */
.stats-bar { background:var(--white); border-bottom:1px solid var(--gray-100); padding:0; position:relative; z-index:10; margin-top:-1px; }
.stats-bar-inner { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:28px 24px; text-align:center; border-right:1px solid var(--gray-100); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:'Inter Tight'; font-size:2.5rem; font-weight:800; color:var(--blue); line-height:1; }
.stat-num .accent { color:var(--cyan); }
.stat-label { font-size:.8rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.08em; margin-top:6px; font-weight:500; }
@media(max-width:640px) { .stats-bar-inner { grid-template-columns:repeat(2,1fr); } .stat-item { border-bottom:1px solid var(--gray-100); } }

/* ---------- SERVICES ---------- */
.service-card { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:36px; transition:var(--transition); position:relative; overflow:hidden; }
.service-card:hover { border-color:var(--blue); box-shadow:var(--shadow-lg), var(--shadow-glow); transform:translateY(-4px); }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--blue), var(--cyan)); opacity:0; transition:var(--transition); }
.service-card:hover::before { opacity:1; }
.service-icon { width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.service-icon svg { width:28px; height:28px; }
.service-icon.blue { background:rgba(43,92,255,.1); color:var(--blue); }
.service-icon.cyan { background:rgba(0,212,255,.1); color:var(--cyan); }
.service-icon.green { background:rgba(0,230,138,.1); color:var(--green); }
.service-icon.purple { background:rgba(139,92,246,.1); color:#8b5cf6; }
.service-card h3 { margin-bottom:12px; color:var(--text); }
.service-card p { color:var(--text-muted); font-size:.9rem; margin-bottom:20px; }
.service-card .btn-ghost { padding:0; font-size:.85rem; }

/* ---------- WHY SECTION ---------- */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.why-visual { position:relative; }
.why-card { background:var(--navy-light); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:28px; }
.why-stat { display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.why-stat:last-child { border-bottom:none; }
.why-stat-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.why-stat-icon.blue { background:rgba(43,92,255,.2); }
.why-stat-icon.green { background:rgba(0,230,138,.2); }
.why-stat-icon.cyan { background:rgba(0,212,255,.2); }
.why-stat-icon.purple { background:rgba(139,92,246,.2); }
.why-stat-num { font-family:'Inter Tight'; font-size:1.4rem; font-weight:800; color:var(--white); }
.why-stat-label { font-size:.8rem; color:var(--gray-400); }
.why-content h2 { color:var(--white); margin-bottom:20px; }
.why-content p { color:var(--gray-400); margin-bottom:32px; }
.why-features { display:flex; flex-direction:column; gap:20px; }
.why-feature { display:flex; gap:16px; }
.why-feature-icon { width:28px; height:28px; border-radius:50%; background:rgba(0,230,138,.15); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.why-feature-icon svg { width:14px; height:14px; color:var(--green); }
.why-feature h4 { font-size:.95rem; color:var(--white); margin-bottom:4px; }
.why-feature p { font-size:.85rem; color:var(--gray-400); margin:0; }
@media(max-width:900px) { .why-grid { grid-template-columns:1fr; } }

/* ---------- METHODOLOGY (CIRCLE OF SIX) ---------- */
.method-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; counter-reset:step; }
.method-step { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:32px 28px; position:relative; transition:var(--transition); counter-increment:step; }
.method-step:hover { border-color:var(--blue); box-shadow:var(--shadow-md); }
.method-step-num { font-family:'Inter Tight'; font-size:3rem; font-weight:900; color:var(--gray-100); line-height:1; margin-bottom:16px; }
.method-step-num::before { content:counter(step, decimal-leading-zero); }
.method-step h3 { font-size:1.05rem; margin-bottom:8px; }
.method-step p { font-size:.85rem; color:var(--text-muted); }
@media(max-width:640px) { .method-steps { grid-template-columns:1fr; } }

/* ---------- INDUSTRIES ---------- */
.industry-tabs { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom:40px; }
.industry-tab { padding:10px 24px; border-radius:100px; font-size:.85rem; font-weight:600; cursor:pointer; transition:var(--transition); border:2px solid var(--gray-200); color:var(--text-muted); background:var(--white); }
.industry-tab:hover { border-color:var(--blue); color:var(--blue); }
.industry-tab.active { background:var(--blue); color:var(--white); border-color:var(--blue); }
.industry-content { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-xl); padding:48px; display:none; }
.industry-content.active { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; animation:fadeIn .4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.industry-content h3 { font-size:1.6rem; margin-bottom:16px; }
.industry-content p { color:var(--text-muted); margin-bottom:24px; }
.industry-compliance { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.compliance-badge { background:rgba(43,92,255,.08); color:var(--blue); padding:6px 14px; border-radius:100px; font-size:.75rem; font-weight:600; }
.industry-checklist { display:flex; flex-direction:column; gap:10px; }
.industry-checklist li { display:flex; align-items:center; gap:10px; font-size:.9rem; color:var(--gray-600); }
.industry-checklist li svg { width:18px; height:18px; color:var(--green); flex-shrink:0; }
.industry-visual { background:linear-gradient(180deg, var(--gray-50) 0%, #fff 100%); border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:40px; text-align:center; }
.industry-visual .big-icon { width:88px; height:88px; margin:0 auto 16px; border-radius:24px; background:linear-gradient(135deg, rgba(43,92,255,.1), rgba(0,212,255,.05)); display:flex; align-items:center; justify-content:center; color:var(--blue); }
.industry-visual .big-icon svg { width:48px; height:48px; }
.industry-visual .stat-row { display:flex; justify-content:center; gap:32px; margin-top:20px; }
.industry-visual .stat-row div { text-align:center; }
.industry-visual .stat-row .num { font-family:'Inter Tight'; font-size:1.5rem; font-weight:800; color:var(--blue); font-variant-numeric:tabular-nums; }
.industry-visual .stat-row .label { font-size:.7rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.05em; }
@media(max-width:768px) { .industry-content.active { grid-template-columns:1fr; } }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.testimonial-card { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:36px; transition:var(--transition); }
.testimonial-card:hover { box-shadow:var(--shadow-md); }
.testimonial-stars { color:#f59e0b; font-size:1rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-text { font-size:.95rem; color:var(--gray-600); line-height:1.7; margin-bottom:24px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:44px; height:44px; border-radius:50%; background:var(--blue); display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:700; font-size:.85rem; }
.testimonial-name { font-weight:600; font-size:.9rem; }
.testimonial-role { font-size:.8rem; color:var(--text-muted); }
@media(max-width:640px) { .testimonial-grid { grid-template-columns:1fr; } }

/* ---------- CTA SECTION ---------- */
.cta-section { background:var(--navy); position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 50%, rgba(43,92,255,.2) 0%, transparent 60%); }
.cta-inner { position:relative; z-index:2; text-align:center; max-width:650px; margin:0 auto; }
.cta-inner h2 { color:var(--white); margin-bottom:16px; }
.cta-inner p { color:var(--gray-400); margin-bottom:36px; font-size:1.05rem; }
.cta-actions { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.cta-trust { display:flex; justify-content:center; gap:32px; margin-top:40px; padding-top:32px; border-top:1px solid rgba(255,255,255,.08); }
.cta-trust span { color:var(--gray-400); font-size:.8rem; display:flex; align-items:center; gap:6px; }
.cta-trust svg { width:16px; height:16px; color:var(--green); }

/* ---------- TEAM ---------- */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:28px; text-align:center; transition:var(--transition); }
.team-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.team-avatar { width:96px; height:96px; border-radius:50%; background:linear-gradient(135deg, var(--blue), var(--cyan)); display:flex; align-items:center; justify-content:center; color:var(--white); font-family:'Inter Tight'; font-weight:800; font-size:1.3rem; margin:0 auto 16px; overflow:hidden; }
.team-avatar img { width:100%; height:100%; object-fit:cover; }
.testimonial-avatar { overflow:hidden; }
.testimonial-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.logo-img { height:32px; width:auto; }
.partner-bar { display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap; padding:24px 0; }
.partner-bar img { height:36px; width:auto; max-width:160px; filter:grayscale(1); opacity:.55; transition:filter var(--transition), opacity var(--transition); }
.partner-bar img:hover { filter:grayscale(0); opacity:1; }
@media(max-width:640px) { .partner-bar { gap:24px; } .partner-bar img { height:28px; } }
.team-name { font-weight:700; font-size:1rem; margin-bottom:4px; }
.team-title { font-size:.8rem; color:var(--text-muted); margin-bottom:12px; }
.team-bio { font-size:.8rem; color:var(--gray-500); line-height:1.6; }
@media(max-width:1024px) { .team-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px) { .team-grid { grid-template-columns:1fr; } }

/* ---------- CONTACT ---------- */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-form { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-xl); padding:40px; box-shadow:var(--shadow-md); }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:.85rem; font-weight:600; color:var(--text); margin-bottom:6px; }
.form-group label .req { color:var(--color-danger); margin-left:2px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
/* font-size:16px on mobile prevents iOS auto-zoom when input is focused */
.form-input,.form-select,.form-textarea { width:100%; border:2px solid var(--gray-200); border-radius:var(--radius); padding:14px 16px; font-size:1rem; font-family:inherit; transition:border-color var(--transition), box-shadow var(--transition); background:var(--white); color:var(--text); min-height:48px; line-height:1.4; }
.form-input::placeholder, .form-textarea::placeholder { color:var(--gray-400); }
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color:var(--gray-300); }
.form-input:focus,.form-select:focus,.form-textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 4px var(--blue-glow); }
.form-input[aria-invalid="true"], .form-select[aria-invalid="true"], .form-textarea[aria-invalid="true"] { border-color:var(--color-danger); box-shadow:0 0 0 4px rgba(239,68,68,.12); }
.form-textarea { resize:vertical; min-height:120px; }
.form-error { display:none; color:var(--color-danger); font-size:.8rem; font-weight:500; margin-top:6px; align-items:center; gap:6px; }
.form-error.visible { display:flex; }
.form-error svg { width:14px; height:14px; flex-shrink:0; }
.form-success { padding:48px 32px; text-align:center; }
.form-success-icon { width:64px; height:64px; border-radius:50%; background:var(--color-success-bg); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.form-success-icon svg { width:32px; height:32px; color:var(--color-success); }
.contact-info h2 { margin-bottom:16px; }
.contact-info > p { color:var(--text-muted); margin-bottom:32px; }
.contact-detail { display:flex; gap:16px; margin-bottom:24px; }
.contact-detail-icon { width:48px; height:48px; border-radius:14px; background:rgba(43,92,255,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-detail-icon svg { width:22px; height:22px; color:var(--blue); }
.contact-detail h4 { font-size:.9rem; margin-bottom:2px; }
.contact-detail p { font-size:.9rem; color:var(--text-muted); }
.contact-detail a { color:var(--blue); font-weight:600; transition:color var(--transition); }
.contact-detail a:hover { color:var(--blue-light); text-decoration:underline; }
@media(max-width:900px) { .contact-grid { grid-template-columns:1fr; gap:40px; } .form-row { grid-template-columns:1fr; } .contact-form { padding:28px 24px; } }

/* ---------- FOOTER ---------- */
.site-footer { background:var(--navy); color:var(--white); padding:80px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:60px; }
.footer-logo { margin-bottom:16px; }
.footer-desc { font-size:.9rem; color:var(--gray-400); margin-bottom:24px; line-height:1.7; }
.footer-social { display:flex; gap:12px; }
/* 44x44 hits the touch-target minimum (skill: touch-target-size CRITICAL) */
.footer-social a { width:44px; height:44px; border-radius:10px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; transition:background var(--transition); }
.footer-social a:hover, .footer-social a:focus-visible { background:var(--blue); }
.footer-social svg { width:20px; height:20px; color:var(--gray-400); transition:color var(--transition); }
.footer-social a:hover svg, .footer-social a:focus-visible svg { color:var(--white); }
.footer-heading { font-family:'Inter Tight'; font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; color:var(--gray-300); margin-bottom:20px; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:var(--gray-400); font-size:.9rem; transition:var(--transition); }
.footer-links a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-bottom p { font-size:.8rem; color:var(--gray-500); }
.footer-bottom a { transition:color var(--transition); }
.footer-bottom a:hover { color:var(--white) !important; }
@media(max-width:768px) { .footer-grid { grid-template-columns:1fr 1fr; gap:32px; margin-bottom:40px; } .site-footer { padding:60px 0 100px; } }
@media(max-width:480px) { .footer-grid { grid-template-columns:1fr; } }

/* ---------- MOBILE STICKY CTA BAR ---------- */
/* Conversion lift: keep Call + Quote within thumb reach on mobile (skill: persistent-nav + primary-action) */
.mobile-cta-bar { display:none; position:fixed; bottom:0; left:0; right:0; z-index:90; background:rgba(10,14,39,.96); -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px); border-top:1px solid rgba(255,255,255,.08); padding:10px 12px calc(10px + env(safe-area-inset-bottom)); gap:8px; box-shadow:0 -8px 24px rgba(0,0,0,.2); }
.mobile-cta-bar .btn { flex:1; padding:14px 16px; font-size:.9rem; min-height:48px; border-radius:12px; }
.mobile-cta-bar .btn svg { width:16px; height:16px; }
@media(max-width:768px) { .mobile-cta-bar { display:flex; } body { padding-bottom:72px; } }

/* Chatbot toggle override: bump it above the mobile CTA bar so they don't overlap */
@media(max-width:768px) {
  #aria-toggle { bottom:96px !important; right:16px !important; width:52px !important; height:52px !important; }
  #aria-panel { bottom:160px !important; max-height:calc(100vh - 200px) !important; }
}

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align:center; max-width:600px; margin:0 auto 60px; }
.section-label { display:inline-block; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.15em; color:var(--blue); margin-bottom:12px; }
.section-header p { color:var(--text-muted); margin-top:16px; font-size:1.05rem; }

/* ---------- ANIMATIONS ---------- */
/* Skill rules: transform/opacity only (no layout properties), ease-out for entering, 150-300ms range */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); will-change:opacity, transform; }
.reveal.visible { opacity:1; transform:translateY(0); will-change:auto; }
/* 40-60ms stagger feels intentional without dragging */
.reveal-delay-1 { transition-delay:.06s; }
.reveal-delay-2 { transition-delay:.12s; }
.reveal-delay-3 { transition-delay:.18s; }
.reveal-delay-4 { transition-delay:.24s; }
.reveal-delay-5 { transition-delay:.3s; }

/* ---------- MISC ---------- */
.tag { display:inline-flex; align-items:center; gap:6px; padding:4px 12px; border-radius:100px; font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.tag-blue { background:rgba(43,92,255,.1); color:var(--blue); }
.tag-green { background:rgba(0,230,138,.1); color:#059669; }
.tag-purple { background:rgba(139,92,246,.1); color:#7c3aed; }
.divider { height:1px; background:var(--gray-100); margin:0; }

/* ---------- PAIN POINTS ---------- */
.pain-card { background:#fff; border:1px solid var(--gray-100); border-radius:16px; padding:32px; transition:transform .3s, box-shadow .3s; }
.pain-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.08); }
.pain-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.pain-icon svg { width:24px; height:24px; }
.pain-icon.red { background:rgba(239,68,68,.1); color:#ef4444; }
.pain-icon.red svg { stroke:#ef4444; }
.pain-card h3 { font-family:'Inter Tight', sans-serif; font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:8px; line-height:1.3; }
.pain-problem { font-size:.85rem; color:var(--gray-500); margin-bottom:16px; line-height:1.5; }
.pain-solution { background:rgba(0,230,138,.06); border:1px solid rgba(0,230,138,.15); border-radius:12px; padding:16px; position:relative; }
.pain-arrow { width:28px; height:28px; border-radius:50%; background:rgba(0,230,138,.15); display:flex; align-items:center; justify-content:center; margin-bottom:8px; }
.pain-arrow svg { width:16px; height:16px; stroke:#059669; }
.pain-solution p { font-size:.82rem; color:#1a1a2e; line-height:1.5; margin:0; }
.pain-solution strong { color:#059669; }

/* ---------- COMPARISON TABLE ---------- */
.compare-table { max-width:900px; margin:0 auto; border-radius:16px; overflow:hidden; border:1px solid var(--gray-100); background:#fff; }
.compare-header { display:grid; grid-template-columns:1fr 1fr 1fr; background:var(--navy); color:#fff; font-weight:700; font-size:.85rem; }
.compare-header > div { padding:16px 24px; }
.compare-col-label { }
.compare-col-them { text-align:center; background:rgba(239,68,68,.15); color:#fca5a5; }
.compare-col-us { text-align:center; background:rgba(0,230,138,.15); color:#6ee7b7; }
.compare-row { display:grid; grid-template-columns:1fr 1fr 1fr; border-top:1px solid var(--gray-100); transition:background .2s; }
.compare-row:hover { background:rgba(43,92,255,.02); }
.compare-row > div { padding:14px 24px; font-size:.85rem; display:flex; align-items:center; gap:8px; }
.compare-item { font-weight:600; color:var(--navy); }
.compare-them { color:var(--gray-500); justify-content:center; text-align:center; background:rgba(239,68,68,.02); }
.compare-us { color:#1a1a2e; justify-content:center; text-align:center; background:rgba(0,230,138,.03); font-weight:500; }
.compare-x { color:#ef4444; font-weight:700; font-size:1rem; flex-shrink:0; }
.compare-check { color:#059669; font-weight:700; font-size:1rem; flex-shrink:0; }

/* Comparison responsive — on mobile flip to stacked card layout (3-col table is unreadable at 375px) */
@media (max-width:640px) {
  .compare-table { border:none; background:transparent; max-width:none; }
  .compare-header { display:none; }
  .compare-row { display:block; background:#fff; border:1px solid var(--gray-100); border-radius:16px; padding:18px 20px; margin-bottom:12px; }
  .compare-row > div { display:block; padding:0 !important; background:transparent !important; text-align:left !important; justify-content:flex-start !important; }
  .compare-item { font-size:1rem; font-weight:700; margin-bottom:14px; padding-bottom:12px !important; border-bottom:1px solid var(--gray-100); color:var(--navy); }
  /* Stack label, icon and text vertically so they never overlap */
  .compare-them, .compare-us { font-size:.9rem; padding-top:10px !important; padding-bottom:10px !important; display:block !important; line-height:1.5; }
  .compare-them { color:var(--gray-600); }
  .compare-us { color:var(--text); font-weight:500; }
  .compare-them::before, .compare-us::before { display:inline-block; font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:3px 8px; border-radius:4px; margin-right:8px; vertical-align:1px; }
  .compare-them::before { content:'Typical'; background:rgba(239,68,68,.1); color:var(--color-danger); }
  .compare-us::before { content:'Diversicom'; background:rgba(0,230,138,.12); color:var(--color-success); }
  .compare-x, .compare-check { display:inline-block; margin-right:4px; }
}
