/*
Theme Name: Limitless Digital
Theme URI: https://www.limitlessdigital.ai
Author: Limitless Digital
Author URI: https://www.limitlessdigital.ai
Description: Custom premium theme for Limitless Digital — performance marketing, AI-native advertising, and Google/Meta policy compliance agency led by Riham Abdine.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: limitless-digital
*/

/* ==========================================================================
   Limitless Digital — premium design system
   Type: Montserrat ExtraBold (headers) / Bold (subheaders) / SemiBold (body)
   ========================================================================== */

:root {
  --navy-deep: #05091d;
  --navy: #0a1440;
  --navy-mid: #0e1f63;
  --blue: #1d4fd7;
  --blue-bright: #3e7bfa;
  --gold: #f4c430;
  --gold-dark: #d9a91e;
  --gold-soft: #fbe6a8;
  --red: #e2483d;
  --teal: #2ec4c6;
  --ink: #0e1224;
  --gray-700: #454b60;
  --gray-600: #565d74;
  --gray-500: #767d92;
  --gray-300: #ccd0dd;
  --gray-100: #eef0f6;
  --tint: #f6f7fb;
  --hairline: rgba(14, 18, 36, 0.09);
  --hairline-dark: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow: 0 25px 60px -28px rgba(6, 12, 36, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(5, 9, 29, 0.45);
  --shadow-gold: 0 16px 34px -14px rgba(244, 196, 48, 0.55);
  --maxw: 1220px;
  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  letter-spacing: -0.001em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.022em;
  color: var(--ink);
}
h3, h4 { font-weight: 700; letter-spacing: -0.012em; }

p { margin: 0 0 1.1em; color: var(--gray-700); font-weight: 500; }
p.lede, .lede { font-weight: 600; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
ul, ol { font-weight: 500; }
strong, b { font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(95deg, var(--gold) 0%, #f2d878 35%, var(--blue-bright) 75%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-bright);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px; }
.section-navy .eyebrow, .hero .eyebrow { color: var(--teal); }

/* ---------------- Icons ---------------- */
.icn { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icn-sm { width: 18px; height: 18px; }
.icn-xs { width: 14px; height: 14px; flex-shrink: 0; }
.icn-lg { width: 30px; height: 30px; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(100deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy-deep); box-shadow: var(--shadow-gold); }
.btn-primary:hover { box-shadow: 0 22px 44px -14px rgba(244, 196, 48, 0.7); }
.btn-outline { border-color: rgba(255,255,255,0.32); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy-deep); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------------- Navbar ---------------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 9, 29, 0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hairline-dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--white); }
.brand img, .brand-logo { height: 38px; width: auto; }
.brand span.dim { color: var(--gray-300); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--gray-300); font-weight: 600; font-size: 14.5px; letter-spacing: 0.005em; padding: 6px 2px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item > a, .nav-links .current_page_item > a { color: var(--white); border-color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 34px; height: 34px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 6px; right: 6px; height: 2px; background: var(--white); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle span { top: 16px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 66px; left: 0; right: 0; height: calc(100vh - 66px); height: calc(100dvh - 66px);
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 32px 28px; gap: 24px; transform: translateX(100%);
    transition: transform 0.3s var(--ease); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 19px; }
  .nav-cta .btn-outline, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .brand { font-size: 16px; }
  .brand img, .brand-logo { height: 30px; width: auto; }
}
@media (max-width: 400px) { .brand span.dim { display: none; } }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse 90% 70% at 18% 10%, #142a8f 0%, var(--navy) 48%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 132px 0 0;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(62,123,250,0.38), transparent 42%),
    radial-gradient(circle at 34% 82%, rgba(46,196,198,0.16), transparent 38%);
  pointer-events: none; z-index: 0;
}
.hero-hex {
  position: absolute; inset: 0; opacity: 0.4; pointer-events: none; z-index: 0;
  background-image: url('assets/hex-pattern.svg');
  background-size: 440px 440px; background-repeat: repeat;
  mask-image: linear-gradient(120deg, black 0%, black 45%, transparent 85%);
  -webkit-mask-image: linear-gradient(120deg, black 0%, black 45%, transparent 85%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(62,123,250,0.55), transparent 70%); top: -100px; right: 6%; animation: float 13s ease-in-out infinite; }
.orb-2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(244,196,48,0.32), transparent 70%); bottom: 60px; right: 30%; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px 84px; }
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); color: var(--white); max-width: 960px; font-weight: 800; }
.hero .tagline { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; color: var(--gray-300); margin-bottom: 24px; }
.hero .lede { font-size: 19px; color: var(--gray-300); max-width: 660px; margin-bottom: 40px; font-weight: 600; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero.small { padding: 148px 0 0; }
.hero.small .hero-inner { padding-bottom: 76px; }
.hero.small h1 { font-size: clamp(34px, 5vw, 50px); }

/* trust bar in hero */
.trust-bar { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 22px 0 0; border-top: 1px solid var(--hairline-dark); }
.trust-bar .trust-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); font-weight: 700; margin-right: 6px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--gray-300); font-size: 14px; font-weight: 700; }
.trust-item .icn { color: var(--gold); }

/* stats bar under hero */
.stats-bar { position: relative; z-index: 1; background: rgba(255,255,255,0.04); border-top: 1px solid var(--hairline-dark); }
.stats-bar-inner { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats-bar .stat { text-align: left; border-left: 1px solid var(--hairline-dark); padding-left: 20px; }
.stats-bar .stat:first-child { border-left: none; padding-left: 0; }
.stats-bar .stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3vw, 34px); background: linear-gradient(95deg, var(--gold), var(--gold-soft)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; line-height: 1; margin-bottom: 8px; }
.stats-bar .stat .label { font-size: 13px; color: var(--gray-300); letter-spacing: 0.01em; font-weight: 600; }
@media (max-width: 760px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stats-bar .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ---------------- Sections ---------------- */
section { padding: 104px 0; }
.section-navy { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.section-navy p { color: var(--gray-300); }
.section-tint { background: var(--tint); }
.section-sm { padding: 64px 0; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-navy .section-head h2 { color: var(--white); }
.section-head .lede-sm { font-size: 17.5px; }

/* signature statement band */
.statement { padding: 88px 0; background: var(--white); }
.statement blockquote { margin: 0; font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 4vw, 44px); line-height: 1.28; letter-spacing: -0.02em; text-align: center; max-width: 980px; margin: 0 auto; color: var(--ink); }
.statement blockquote .accent { color: var(--blue); }

/* ---------------- Grids & Cards ---------------- */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color .3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(29,79,215,0.18); }

.icon-badge { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--white); box-shadow: 0 14px 26px -12px rgba(29,79,215,0.55); }
.icon-badge.gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy-deep); box-shadow: 0 14px 26px -12px rgba(217,169,30,0.55); }
.icon-badge.dark { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); box-shadow: 0 14px 26px -12px rgba(10,20,64,0.55); }
.icon-badge.teal { background: linear-gradient(135deg, #1f9a9c, var(--teal)); box-shadow: 0 14px 26px -12px rgba(46,196,198,0.5); }

.card h3 { font-size: 21px; margin-bottom: 11px; }
.card .card-kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: block; }
.card ul { margin: 18px 0 0; padding-left: 20px; color: var(--gray-700); }
.card ul li { margin-bottom: 8px; font-weight: 500; }

.card-dark { background: linear-gradient(160deg, var(--navy-mid), var(--navy)); color: var(--white); border: 1px solid var(--hairline-dark); }
.card-dark p { color: var(--gray-300); }
.card-dark h3 { color: var(--white); }
.card-dark ul { color: var(--gray-300); }

.glass-card { background: rgba(255,255,255,0.06); border: 1px solid var(--hairline-dark); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: var(--radius); }

/* offset accent frame — echoes brand deck's yellow block motif */
.offset-frame { position: relative; }
.offset-frame::before { content: ""; position: absolute; top: -18px; left: -18px; width: 64%; height: 46%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: var(--radius-sm); z-index: 0; }
.offset-frame img, .offset-frame .frame-inner { position: relative; z-index: 1; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* credential rows */
.cred-row { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.cred-row:last-child { border-bottom: none; }
.cred-row .icon-badge { flex-shrink: 0; margin-bottom: 0; width: 50px; height: 50px; border-radius: 13px; }
.cred-row h4 { font-size: 17px; margin-bottom: 7px; }
.section-navy .cred-row { border-color: var(--hairline-dark); }
.section-navy .cred-row h4 { color: var(--white); }

.badge-pill { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(100deg, var(--gold), var(--gold-dark)); color: var(--navy-deep); font-family: var(--font-head); font-weight: 800; font-size: 13.5px; padding: 11px 20px; border-radius: 999px; box-shadow: var(--shadow-gold); }

.stat-box { text-align: center; padding: 28px 14px; }
.stat-box .num { font-family: var(--font-head); font-weight: 800; font-size: 42px; color: var(--gold); display: block; }
.stat-box .label { font-size: 14px; color: var(--gray-300); letter-spacing: 0.02em; font-weight: 600; }

/* editorial stat (used inline in copy-heavy sections) */
.stat-editorial { display: flex; align-items: baseline; gap: 14px; padding: 18px 0; border-top: 1px solid var(--hairline); }
.stat-editorial:first-of-type { border-top: none; }
.stat-editorial .num { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--blue); white-space: nowrap; }
.stat-editorial .desc { font-size: 15px; color: var(--gray-600); font-weight: 600; }

/* process steps */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 920px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: 8px; }
.process-step .step-num { font-family: var(--font-head); font-weight: 800; font-size: 15px; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 14px 26px -12px rgba(29,79,215,0.55); }
.process-step h4 { font-size: 18px; margin-bottom: 9px; }
.process-step p { font-size: 15px; }

/* industries */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.chip { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.07); border: 1px solid var(--hairline-dark); color: var(--white); padding: 11px 20px; border-radius: 999px; font-size: 14.5px; font-weight: 700; }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.chip-row.light .chip { background: var(--tint); border-color: var(--hairline); color: var(--ink); font-size: 13.5px; font-weight: 600; }
.chip-row.light .chip .icn { color: var(--blue); }

/* divider dots */
.divider-dots { display: flex; gap: 8px; margin-top: 18px; }
.divider-dots span { width: 10px; height: 10px; border-radius: 50%; }
.divider-dots span:nth-child(1) { background: var(--gold); }
.divider-dots span:nth-child(2) { background: var(--navy); }
.divider-dots span:nth-child(3) { background: var(--blue); }
.divider-dots span:nth-child(4) { background: var(--red); }

/* ---------------- CTA band ---------------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 60%, #172c96 100%); color: var(--white); border-radius: var(--radius-lg); padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 20%, rgba(244,196,48,0.2), transparent 45%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; font-size: 32px; }
.cta-band p { color: var(--gray-300); margin: 0; max-width: 480px; }

/* ---------------- Forms ---------------- */
.form-field { margin-bottom: 22px; }
.form-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 9px; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 15px 17px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,79,215,0.12); }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--gray-500); margin-top: -8px; font-weight: 500; }
.form-success { background: #e8f6ec; border: 1px solid #b7e4c2; color: #1b6b34; padding: 18px 20px; border-radius: var(--radius-sm); margin-bottom: 26px; font-weight: 700; font-size: 14.5px; }

/* ---------------- Reveal-on-scroll ----------------
   Progressive enhancement: content is fully visible by default. The "js"
   class is added to <html> by an inline script in header.php only once we
   know JS is running, and only then do .reveal elements start hidden —
   so users with JS blocked/slow never see missing content. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { transition: none; opacity: 1; transform: none; } }

/* ---------------- Footer ---------------- */
footer.site-footer { background: var(--navy-deep); color: var(--gray-300); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 38px; padding-bottom: 44px; border-bottom: 1px solid var(--hairline-dark); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-family: var(--font-head); color: var(--white); font-size: 13.5px; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 18px; font-weight: 800; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 11px; font-weight: 500; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: var(--gray-500); flex-wrap: wrap; gap: 10px; font-weight: 500; }

/* ---------------- Results / case study tags ---------------- */
.tag-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--tint); color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 16px; }
.tag-pill.dark { background: rgba(255,255,255,0.08); color: var(--gold-soft); }
.result-card { display: flex; flex-direction: column; height: 100%; }
.result-card .result-metric { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--blue); margin: 4px 0 14px; line-height: 1.35; }
.result-card p { flex-grow: 1; }
.case-block { scroll-margin-top: 110px; }
.case-block + .case-block { border-top: 1px solid var(--hairline); }

/* ---------------- Dashboard proof screenshots ---------------- */
.proof-shot-wrap { margin-top: 18px; }
.proof-shot { display: block; width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--hairline); box-shadow: 0 8px 20px -12px rgba(14,18,36,0.25); }
.card-dark .proof-shot { border-color: var(--hairline-dark); }
.proof-caption { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-600); margin-top: 9px; }
.card-dark .proof-caption { color: var(--gray-300); }
.proof-caption .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------------- Utility ---------------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }
