/* =============================================
   RISE CARE CONSULTANCY
   Production Stylesheet — Light Theme
   Colours: #eea748 (amber) · #da3553 (red)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

html, body {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
}

:root {
  --red:         #da3553;
  --red-dark:    #b82944;
  --red-light:   #fde8ec;
  --amber:       #eea748;
  --amber-dark:  #c8820d;
  --amber-light: #fdf3e3;
  --ink:         #0F1419;
  --ink-2:       #1C2530;
  --white:       #ffffff;
  --off:         #F8F8F6;
  --grey-1:      #F3F4F6;
  --grey-2:      #E5E7EB;
  --grey-3:      #9CA3AF;
  --grey-4:      #6B7280;
  --grey-5:      #374151;
  --f:           'DM Sans', sans-serif;
  --r:           12px;
  --w:           1160px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}
header { width: 100%; display: block; position: sticky; top: 0; z-index: 100; }
main, footer { width: 100%; display: block; }

/* TYPOGRAPHY */
h1 { font-size: 58px; line-height: 1.06; font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: 40px; line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
h3 { font-size: 17px; font-weight: 700; line-height: 1.35; letter-spacing: -0.1px; }
h4 { font-size: 14px; font-weight: 700; }
p  { font-size: 15px; line-height: 1.8; color: var(--grey-4); }
a  { color: inherit; }
strong { font-weight: 700; color: var(--ink); }

.accent-underline { position: relative; display: inline-block; color: var(--red); }
.accent-underline::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px; background: var(--red); border-radius: 2px;
  transform: rotate(-0.8deg);
}
.accent-amber { color: var(--amber); }

/* LAYOUT */
.sec-inner { max-width: var(--w); margin: 0 auto; padding: 0 48px; }
.section       { padding: 96px 0; }
.section-off   { padding: 96px 0; background: var(--off); }
.section-ink   { padding: 96px 0; background: var(--ink); }

.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.sec-tag::before { content: ''; display: inline-block; width: 14px; height: 2px; background: var(--red); border-radius: 2px; }
.sec-tag.light { color: var(--amber); }
.sec-tag.light::before { background: var(--amber); }
.sec-tag.centered { display: flex; justify-content: center; }

h2.light   { color: var(--white); }
h2.centered { text-align: center; }
.sec-lead  { font-size: 17px; color: var(--grey-4); margin-top: 12px; max-width: 540px; }
.sec-lead.light { color: rgba(255,255,255,0.6); }

.sec-header-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; gap: 24px; flex-wrap: wrap;
}
.sec-header-split h2 { margin-bottom: 0; }

/* NAV */
nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-2);
  width: 100%;
}
.nav-in {
  width: 100%; margin: 0 auto; padding: 0 48px;
  height: 100px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 60px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--grey-4); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--red); color: #fff; padding: 9px 22px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 150;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 26px; font-weight: 700; color: var(--ink); text-decoration: none; transition: color .2s; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .nav-cta { font-size: 16px; padding: 14px 40px; border-radius: 10px; margin-top: 8px; display: inline-flex !important; }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 22px;
  color: var(--grey-4); cursor: pointer; padding: 8px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff;
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  font-family: var(--f); border: none; cursor: pointer;
  transition: all .2s; box-shadow: 0 4px 16px rgba(218,53,83,0.25);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(218,53,83,0.35); }

.btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; border: 1.5px solid var(--grey-2);
  color: var(--ink); padding: 13px 26px; border-radius: 10px;
  font-size: 14px; font-weight: 500; text-decoration: none; transition: all .2s;
}
.btn-outline:hover { border-color: var(--grey-4); background: var(--grey-1); }

.btn-white {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--ink);
  padding: 13px 28px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s;
}
.btn-white:hover { background: var(--grey-1); transform: translateY(-1px); }

.text-link { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 600; text-decoration: none; transition: gap .2s; }
.text-link.red  { color: var(--red); }
.text-link.amber { color: var(--amber-dark); }
.text-link:hover { gap: 9px; }

/* HERO */
.hero {
  padding: 96px 48px 0; width: 100%;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; position: relative;
  overflow: hidden; background: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  opacity: 0.4; pointer-events: none;
}
.blob-amber {
  position: absolute; top: -80px; right: 0;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(238,167,72,0.22), transparent 70%);
  pointer-events: none;
}
.blob-red {
  position: absolute; top: 60px; left: 0;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(218,53,83,0.12), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--amber-light); border: 1px solid rgba(238,167,72,0.4);
  color: var(--amber-dark); padding: 5px 14px 5px 10px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 32px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); animation: blink 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { margin-bottom: 24px; color: var(--ink); }
.hero-lead { font-size: 18px; color: var(--grey-4); line-height: 1.75; max-width: 560px; margin: 0 auto 44px; }
.cta-row { display: flex; gap: 12px; justify-content: center; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.proof-line { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--grey-4); margin-bottom: 64px; justify-content: center; flex-wrap: wrap; }
.proof-line strong { color: var(--ink); font-weight: 600; }
.proof-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--grey-2); flex-shrink: 0; }

/* DASHBOARD MOCKUP */
.dashboard-wrap { position: relative; width: 100%; max-width: 960px; margin: 0 auto; }
.dashboard-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
  background: linear-gradient(to top, #fff, transparent); z-index: 2; pointer-events: none;
}
.dashboard-wrap::before {
  content: ''; position: absolute; top: 50px; left: 5%; right: 5%; bottom: -10px;
  background: rgba(218,53,83,0.06); filter: blur(50px); border-radius: 24px; z-index: 0;
}
.dashboard { position: relative; z-index: 1; background: #fff; border: 1px solid var(--grey-2); border-radius: 18px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 16px 56px rgba(0,0,0,0.1); }
.browser-bar { background: var(--grey-1); border-bottom: 1px solid var(--grey-2); padding: 11px 16px; display: flex; align-items: center; gap: 12px; }
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; }
.dots span:nth-child(1) { background: #FF5F57; }
.dots span:nth-child(2) { background: #FFBD2E; }
.dots span:nth-child(3) { background: #28C840; }
.url-bar { flex: 1; background: #fff; border: 1px solid var(--grey-2); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: var(--grey-3); text-align: center; }
.dash-body { display: grid; grid-template-columns: 210px 1fr; min-height: 400px; }
.dash-sidebar { background: var(--grey-1); border-right: 1px solid var(--grey-2); padding: 18px 12px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-logo { font-size: 13px; font-weight: 700; color: var(--ink); padding: 4px 8px; margin-bottom: 16px; display: flex; align-items: center; gap: 7px; }
.sidebar-logo span { width: 22px; height: 22px; background: var(--red); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; font-weight: 800; }
.nav-item { padding: 8px 10px; border-radius: 7px; font-size: 12px; color: var(--grey-3); display: flex; align-items: center; gap: 6px; cursor: pointer; transition: all .2s; }
.nav-item.active { background: var(--red-light); color: var(--red); font-weight: 600; }
.nav-item:hover:not(.active) { background: var(--grey-2); color: var(--ink); }
.dash-main { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.dash-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.dash-date { font-size: 11px; color: var(--grey-3); }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.stat-box { background: var(--grey-1); border: 1px solid var(--grey-2); border-radius: 9px; padding: 12px 14px; }
.s-lbl { font-size: 10px; color: var(--grey-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.s-val { font-size: 20px; font-weight: 800; color: var(--ink); }
.s-ch { font-size: 10px; margin-top: 2px; }
.s-ch.g { color: #16a34a; } .s-ch.a { color: var(--amber-dark); }
.chart-box { background: var(--grey-1); border: 1px solid var(--grey-2); border-radius: 9px; padding: 12px 14px; }
.chart-lbl { font-size: 10px; color: var(--grey-3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; transition: filter .2s; }
.bar.r { background: linear-gradient(to top, var(--red), rgba(218,53,83,0.2)); }
.bar.a { background: linear-gradient(to top, var(--amber), rgba(238,167,72,0.2)); }
.bar:hover { filter: brightness(1.1); }
.recent { display: flex; flex-direction: column; gap: 5px; }
.r-item { background: #fff; border: 1px solid var(--grey-2); border-radius: 7px; padding: 8px 12px; display: flex; align-items: center; justify-content: space-between; }
.r-left { display: flex; align-items: center; gap: 8px; }
.r-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.r-dot.r { background: var(--red); } .r-dot.g { background: #16a34a; } .r-dot.a { background: var(--amber); }
.r-text { font-size: 12px; color: var(--grey-5); }
.r-tag { font-size: 10px; padding: 2px 8px; border-radius: 100px; font-weight: 600; flex-shrink: 0; }
.r-tag.c { background: #dcfce7; color: #16a34a; }
.r-tag.p { background: var(--amber-light); color: var(--amber-dark); }
.r-tag.s { background: var(--red-light); color: var(--red); }

/* SCROLLING STRIP */
.strip { background: var(--ink); padding: 18px 0; overflow: hidden; position: relative; }
.strip::before, .strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; }
.strip::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.strip::after  { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.strip-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.strip-item { display: flex; align-items: center; gap: 16px; padding: 0 24px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.28); white-space: nowrap; }
.sdot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* PILLARS */
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.pillar { background: #fff; border: 1px solid var(--grey-2); border-radius: 16px; padding: 48px 44px; position: relative; overflow: hidden; transition: all .25s; }
.pillar:hover { border-color: #d1d5db; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.pillar.red-top::before   { background: linear-gradient(90deg, var(--red), var(--amber)); }
.pillar.amber-top::before { background: linear-gradient(90deg, var(--amber), var(--red)); }
.pillar-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 22px; }
.pillar-icon.r { background: var(--red-light); }
.pillar-icon.a { background: var(--amber-light); }
.pillar h3 { font-size: 22px; margin-bottom: 14px; }
.pillar p { margin-bottom: 28px; }

/* PROBLEM GRID */
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prob-card { background: #fff; border: 1px solid var(--grey-2); border-radius: 14px; padding: 30px; transition: all .25s; position: relative; overflow: hidden; }
.prob-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #d1d5db; }
.prob-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: opacity .25s; }
.prob-card.red-top::before   { background: var(--red); }
.prob-card.amber-top::before { background: var(--amber); }
.prob-card:hover::before { opacity: 1; }
.p-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.p-icon.r { background: var(--red-light); }
.p-icon.a { background: var(--amber-light); }
.prob-card h3 { font-size: 15px; margin-bottom: 8px; }
.prob-card p  { font-size: 13px; color: var(--grey-4); }

/* WHY / DARK SECTION */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 48px; margin-bottom: 40px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 32px 28px; transition: all .3s; }
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); }
.why-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 18px; }
.why-icon.r { background: rgba(218,53,83,0.15); }
.why-icon.a { background: rgba(238,167,72,0.15); }
.why-card h3 { color: #fff; font-size: 15px; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; }

/* COMPARE BOX */
.compare-box { border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.compare-col { padding: 40px 36px; }
.compare-col:first-child { border-right: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }
.compare-col:last-child  { background: rgba(255,255,255,0.04); }
.compare-head { font-size: 13px; font-weight: 700; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 8px; }
.compare-head.without { color: #c94456; }
.compare-head.with { color: #16a34a; }
.c-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
.c-item:last-child { border-bottom: none; padding-bottom: 0; }
.c-item.without { color: #c94456; }
.c-item.with { color: #16a34a; font-weight: 500; }
.cx { color: #c94456; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.ck { color: #16a34a; font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* CARDS */
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.card { background: #fff; border: 1px solid var(--grey-2); border-radius: 12px; padding: 26px; transition: all .2s; position: relative; overflow: hidden; }
.card:hover { border-color: #d1d5db; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); }
.tag { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; display: inline-block; margin-bottom: 13px; }
.tag-red   { background: var(--red-light);   color: var(--red);        border: 1px solid rgba(218,53,83,0.2);  }
.tag-amber { background: var(--amber-light); color: var(--amber-dark); border: 1px solid rgba(238,167,72,0.25); }
.card h3 { font-size: 14px; margin-bottom: 8px; }
.card p  { font-size: 13px; color: var(--grey-4); line-height: 1.65; }

/* SUB-SECTION LABELS */
.sub-label { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 16px; margin-top: 44px; padding-bottom: 10px; border-bottom: 1px solid var(--grey-2); display: flex; align-items: center; gap: 10px; color: var(--grey-4); }
.sub-label:first-of-type { margin-top: 0; }
.sub-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--red); flex-shrink: 0; }
.sub-dot.amber { background: var(--amber); }

/* DIGITAL BANNER */
.digital-banner { background: var(--ink); padding: 96px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); position: relative; overflow: hidden; }
.digital-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(238,167,72,0.04) 1px, transparent 1px); background-size: 32px 32px; }
.digital-banner::after { content: ''; position: absolute; top: 50%; right: -100px; transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(218,53,83,0.1), transparent 65%); pointer-events: none; }
.dig-inner { max-width: var(--w); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.dig-text h2 { margin-bottom: 16px; }
.dig-text p.light { margin-bottom: 32px; color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.75; }
.dig-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dig-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 22px 20px; transition: border-color .3s; }
.dig-stat:hover { border-color: rgba(238,167,72,0.25); }
.dig-num { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin-bottom: 4px; }
.dig-lbl { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* BSM */
.bsm-card { border: 1px solid var(--grey-2); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-sm); }
.bsm-left { padding: 52px 48px; background: #fff; border-right: 1px solid var(--grey-2); }
.bsm-left h3 { font-size: 26px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.bsm-left p { font-size: 15px; line-height: 1.8; }
.bsm-right { padding: 52px 48px; background: var(--off); }
.bsm-list-head { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.bsm-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bsm-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--grey-5); line-height: 1.4; }
.bsm-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.testi-card { background: #fff; border: 1px solid var(--grey-2); border-radius: 14px; padding: 36px 32px; transition: all .25s; }
.testi-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(218,53,83,0.06); transform: translateY(-2px); }
.quote-mark { font-family: Georgia, serif; font-size: 60px; line-height: 0.6; color: var(--red); display: block; margin-bottom: 18px; opacity: 0.4; }
.testi-card blockquote { font-size: 14px; line-height: 1.8; color: var(--grey-5); font-style: normal; margin-bottom: 24px; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.av { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.av.r { background: var(--red-light);   color: var(--red);        border: 1px solid rgba(218,53,83,0.15); }
.av.a { background: var(--amber-light); color: var(--amber-dark); border: 1px solid rgba(238,167,72,0.2);  }
.testi-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--grey-3); margin-top: 2px; }

/* FAQ */
.faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-left h2 { margin-bottom: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: #fff; border: 1px solid var(--grey-2); border-radius: 10px; overflow: hidden; }
.faq-item summary { padding: 18px 20px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 18px; color: var(--red); font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--grey-1); }
.faq-item[open] summary { background: var(--red-light); color: var(--red); border-bottom: 1px solid rgba(218,53,83,0.15); }
.faq-item p { padding: 16px 20px; font-size: 14px; color: var(--grey-4); line-height: 1.75; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info .sec-lead { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-icon.r { background: var(--red-light); }
.contact-icon.a { background: var(--amber-light); }
.contact-detail a, .contact-detail span { font-size: 15px; color: var(--grey-5); text-decoration: none; }
.contact-detail a:hover { color: var(--red); }
.contact-badges { display: flex; flex-direction: column; gap: 8px; }
.contact-badge { font-size: 13px; color: var(--grey-4); font-weight: 500; }

/* FOOTER */
footer { background: var(--ink); padding: 0; border-top: 1px solid rgba(255,255,255,0.04); width: 100%; }
.ft-inner { width: 100%; margin: 0 auto; padding: 0 48px; }
.ft-bot { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 8px; }

/* FADE UP ANIMATION */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* SYSTEMS SECTION TAG OVERRIDES */
#systems .tag-red   { background: #dcfce7; color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }
#systems .tag-amber { background: #dcfce7; color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }

/* RESPONSIVE: 1024px */
@media (max-width: 1024px) {
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .sec-inner, .nav-in, .hero, .dig-inner, .ft-inner { padding-left: 28px; padding-right: 28px; }
  .grid3 { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .bsm-card { grid-template-columns: 1fr; }
  .bsm-left { border-right: none; border-bottom: 1px solid var(--grey-2); }
  .dig-inner { gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .compare-box { grid-template-columns: 1fr; }
  .compare-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* RESPONSIVE: 768px */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-in .nav-cta { display: none !important; }
  .mobile-nav .nav-cta { display: inline-flex !important; }
  .hamburger { display: flex; }
  .nav-logo img { height: 32px; }
  .nav-in { padding-left: 20px; padding-right: 20px; }
  .calendly-inline-widget { min-width: 100% !important; width: 100% !important; }
  .hide-mobile { display: none; }
  #contact .sec-inner > div { grid-template-columns: 1fr !important; }
  .hero-lead br { display: none; }
  .proof-line { display: none; }
  #contact .sec-inner > div { grid-template-columns: 1fr !important; }
  #cursor, #cursor-ring { display: none !important; }
  * { cursor: auto !important; }
}
  h1 { font-size: 34px; letter-spacing: -0.8px; }
  h2 { font-size: 28px; letter-spacing: -0.5px; }
  .hero { padding: 72px 20px 0; }
  .sec-inner { padding-left: 20px; padding-right: 20px; }
  .section, .section-off, .section-ink { padding: 72px 0; }
  .cta-row { flex-direction: column; align-items: center; }
  .proof-line { flex-direction: column; gap: 8px; }
  .proof-sep { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 36px 28px; }
  .prob-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .dig-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .dig-stats { grid-template-columns: 1fr 1fr; }
  .digital-banner { padding: 72px 0; }
  .bsm-left, .bsm-right { padding: 36px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .sec-header-split { flex-direction: column; align-items: flex-start; }
  .ft-inner { padding: 0 20px; }
  .ft-bot { flex-direction: column; gap: 6px; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
}

/* RESPONSIVE: 480px */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .dig-stats { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
/* Custom cursor */
* { cursor: none !important; }

#cursor {
  width: 12px;
  height: 12px;
  background: #da3553;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(218,53,83,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  transform: translate(-50%, -50%);
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor { transform: translate(-50%, -50%) scale(1.8); background: #eea748; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 48px; height: 48px; border-color: rgba(238,167,72,0.5); }
