/* ============================================================
   Campbell River Marketing — Inner pages
   Warm orange theme system (per-page accent) on the shared navy base.
   Bright oranges = fills / gradients / glows only.
   Deep oranges (Rust/Burnt/Bronze) = text + buttons (WCAG AA on white).
   Dark bands use navy + orange glow so white text always passes AA.
   ============================================================ */

/* ---------- Per-page accent themes ---------- */
:root {
  --accent: #FC6600; --accent-strong: #964000; --accent-tint: rgba(252,102,0,.10);
  --accent-grad: linear-gradient(135deg,#FC6600,#B1560F);
  --accent-glow: rgba(252,102,0,.45); --accent-b: rgba(252,102,0,.22); --accent-hover: #7a3400;
}
.crm-theme--orange  { --accent:#FC6600; --accent-strong:#964000; --accent-tint:rgba(252,102,0,.10); --accent-grad:linear-gradient(135deg,#FC6600,#B1560F); --accent-glow:rgba(252,102,0,.45); --accent-b:rgba(252,102,0,.22); --accent-hover:#7a3400; }
.crm-theme--tiger   { --accent:#FD6A02; --accent-strong:#8B4000; --accent-tint:rgba(253,106,2,.10); --accent-grad:linear-gradient(135deg,#FD6A02,#8B4000); --accent-glow:rgba(253,106,2,.45); --accent-b:rgba(253,106,2,.22); --accent-hover:#6f3300; }
.crm-theme--gold    { --accent:#F9A602; --accent-strong:#8B4000; --accent-tint:rgba(249,166,2,.12); --accent-grad:linear-gradient(135deg,#F9A602,#B3672B); --accent-glow:rgba(249,166,2,.40); --accent-b:rgba(249,166,2,.28); --accent-hover:#6f3300; }
.crm-theme--apricot { --accent:#EF820D; --accent-strong:#964000; --accent-tint:rgba(239,130,13,.10); --accent-grad:linear-gradient(135deg,#EF820D,#B1560F); --accent-glow:rgba(239,130,13,.45); --accent-b:rgba(239,130,13,.24); --accent-hover:#7a3400; }
.crm-theme--honey   { --accent:#EB9605; --accent-strong:#8B4000; --accent-tint:rgba(235,150,5,.12); --accent-grad:linear-gradient(135deg,#EB9605,#B3672B); --accent-glow:rgba(235,150,5,.40); --accent-b:rgba(235,150,5,.28); --accent-hover:#6f3300; }
.crm-theme--ochre   { --accent:#CC7722; --accent-strong:#8B4000; --accent-tint:rgba(204,119,34,.12); --accent-grad:linear-gradient(135deg,#CC7722,#8B4000); --accent-glow:rgba(204,119,34,.40); --accent-b:rgba(204,119,34,.28); --accent-hover:#6f3300; }
.crm-theme--fire    { --accent:#FDA50F; --accent-strong:#964000; --accent-tint:rgba(253,165,15,.12); --accent-grad:linear-gradient(135deg,#FDA50F,#B3672B); --accent-glow:rgba(253,165,15,.40); --accent-b:rgba(253,165,15,.28); --accent-hover:#7a3400; }
.crm-theme--carrot  { --accent:#EF7215; --accent-strong:#964000; --accent-tint:rgba(239,114,21,.10); --accent-grad:linear-gradient(135deg,#EF7215,#964000); --accent-glow:rgba(239,114,21,.45); --accent-b:rgba(239,114,21,.24); --accent-hover:#7a3400; }

/* Re-theme the shared chrome/components on inner (themed) pages. */
body[class*="crm-theme--"] .eyebrow { color: var(--accent-strong); background: var(--accent-tint); border-color: var(--accent-b); }
body[class*="crm-theme--"] { --cta: var(--accent-strong); --cta-strong-hover: var(--accent-hover); }
body[class*="crm-theme--"] .btn--outline:hover { border-color: var(--accent); color: var(--accent-strong); }
body[class*="crm-theme--"] .nav__phone svg { color: var(--accent); }
/* Reused FAQ / chips pick up the page accent on themed pages. */
body[class*="crm-theme--"] .acc__item.open { border-color: var(--accent); }
body[class*="crm-theme--"] .acc__item.open .acc__icn { background: var(--accent-strong); }
body[class*="crm-theme--"] .acc__q:hover { color: var(--accent-strong); }
body[class*="crm-theme--"] .chip svg { color: var(--accent-strong); }
body[class*="crm-theme--"] .chip:hover { border-color: var(--accent); color: var(--navy-800); }
body[class*="crm-theme--"] .faq__intro .btn--primary { background: var(--navy-800); }
body[class*="crm-theme--"] .hero__trust-txt b, body[class*="crm-theme--"] .grad { color: var(--accent-strong); }

/* ---------- Brand logo (header + footer) ----------
   With an uploaded logo the image is the brand on desktop; on mobile the header
   swaps to the compact mark + wordmark text. Without a logo, the built-in
   mark + wordmark show as before. */
.brand__img { display: block; height: 40px; width: auto; }
.footer .brand__img { height: 46px; }
.brand.has-logo .brand__mark { display: none; }
.header .brand.has-logo .brand__text { display: none; }
@media (max-width: 900px) {
	.header .brand.has-logo .brand__img { display: none; }
	.header .brand.has-logo .brand__mark { display: inline-block; }
	.header .brand.has-logo .brand__text { display: inline-block; }
}

/* ---------- Header: Services dropdown ---------- */
.nav__dd { position: relative; }
.nav__dd-t { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dd-t svg { width: 13px; height: 13px; transition: transform .2s; }
.nav__dd-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 280px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 120; }
.nav__dd:hover .nav__dd-menu, .nav__dd:focus-within .nav__dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dd:hover .nav__dd-t svg { transform: rotate(180deg); }
.nav__dd-menu a { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 9px; font-weight: 500; font-size: .9rem; color: var(--slate-700); }
.nav__dd-menu a:hover { background: var(--slate-100); color: var(--navy-800); }
.nav__dd-menu a .di { width: 30px; height: 30px; flex: none; border-radius: 8px; display: grid; place-items: center; background: var(--accent-tint); }
.nav__dd-menu a .di svg { width: 17px; height: 17px; color: var(--accent-strong); }
.nav__dd-menu a small { display: block; color: var(--slate-500); font-size: .76rem; font-weight: 400; }
.nav__dd-menu a b { font-family: var(--f-display); font-weight: 600; font-size: .9rem; }
.nav__dd-menu .allsvc { justify-content: center; color: var(--accent-strong); font-weight: 600; margin-top: 5px; padding-top: 12px; border-top: 1px solid var(--border); border-radius: 0; }
.drawer__sub { display: grid; gap: 2px; margin: 2px 0 6px 12px; padding-left: 10px; border-left: 2px solid var(--accent-b); }
.drawer__sub a { padding: 9px 10px !important; font-size: .92rem !important; color: var(--slate-600) !important; }

/* ---------- Shared inner helpers ---------- */
.isection { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.isection--tight { padding-block: clamp(40px, 5vw, 72px); }
.ihead { max-width: 760px; margin: 0 auto clamp(36px,5vw,56px); text-align: center; }
.ihead.left { margin-inline: 0; text-align: left; }
.ihead .eyebrow { margin-bottom: 16px; }
.ihead h2 { font-size: clamp(1.8rem,3.4vw,2.7rem); }
.ihead p { margin-top: 14px; font-size: 1.08rem; color: var(--slate-600); }
.acc-word { color: var(--accent-strong); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: var(--slate-500); margin-bottom: 20px; }
.breadcrumb a { color: var(--slate-600); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent-strong); }
.breadcrumb span.sep { color: var(--slate-300); }
.breadcrumb .cur { color: var(--accent-strong); font-weight: 600; }

/* ============================================================
   Page hero
   ============================================================ */
.ihero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(36px,6vw,64px));
  padding-bottom: clamp(48px,7vw,84px);
  background:
    radial-gradient(1100px 560px at 85% -10%, var(--accent-tint), transparent 62%),
    radial-gradient(760px 460px at 5% 8%, var(--accent-tint), transparent 58%),
    linear-gradient(180deg,#fff,var(--paper));
}
.ihero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: center; }
.ihero h1 { font-size: clamp(2.3rem,4.6vw,3.6rem); color: var(--navy-900); }
.ihero h1 .acc { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ihero__sub { margin-top: 20px; max-width: 560px; font-size: clamp(1.05rem,1.4vw,1.2rem); color: var(--slate-600); line-height: 1.6; }
.ihero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.ihero__chips { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.ihero__chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-family: var(--f-display); color: var(--navy-800); font-size: .94rem; }
.ihero__chip svg { width: 20px; height: 20px; color: var(--accent-strong); flex: none; }
/* hero visual: stacked accent card */
.ihero__art { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 340px; background: var(--navy-800);
  background-image: radial-gradient(460px 300px at 20% 12%, var(--accent-glow), transparent 60%), radial-gradient(420px 280px at 92% 92%, rgba(255,255,255,.08), transparent 55%);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: clamp(26px,3vw,40px); color: #fff; }
.ihero__art h3 { color: #fff; font-size: 1.15rem; }
.ihero__artstats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ihero__artstat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); padding: 16px; }
.ihero__artstat b { display: block; font-family: var(--f-display); font-size: 1.7rem; line-height: 1;
  background: linear-gradient(135deg,#fff,var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ihero__artstat small { color: var(--slate-300); font-size: .8rem; }

/* ============================================================
   Intro split (text + checklist | card)
   ============================================================ */
.isplit { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,60px); align-items: center; }
.isplit__body h2 { font-size: clamp(1.7rem,3vw,2.4rem); }
.isplit__body p { margin-top: 16px; color: var(--slate-600); font-size: 1.05rem; line-height: 1.65; }
.icheck { display: grid; gap: 12px; margin-top: 24px; }
.icheck li { display: flex; gap: 12px; align-items: flex-start; }
.icheck .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); }
.icheck .tick svg { width: 15px; height: 15px; color: var(--accent-strong); }
.icheck b { font-family: var(--f-display); color: var(--navy-800); font-weight: 600; }
.icheck span { color: var(--slate-600); }
.icheck em { font-style: normal; display: block; color: var(--slate-600); font-weight: 400; margin-top: 2px; font-size: .95rem; }
.isplit__card { position: relative; border-radius: var(--r-xl); padding: clamp(26px,3vw,38px); background: var(--navy-800); color: #fff; overflow: hidden; box-shadow: var(--shadow-lg);
  background-image: radial-gradient(420px 280px at 88% 6%, var(--accent-glow), transparent 60%); }
.isplit__card .big { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.4rem,4vw,3.2rem); line-height: 1;
  background: linear-gradient(135deg,#fff,var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.isplit__card p { color: var(--slate-300); margin-top: 10px; }
.isplit__card hr { border: none; border-top: 1px solid rgba(255,255,255,.14); margin: 20px 0; }

/* ============================================================
   Benefits grid
   ============================================================ */
.ibenefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ibenefit { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: transform .28s, box-shadow .28s, border-color .28s; position: relative; overflow: hidden; }
.ibenefit::before { content:""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.ibenefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.ibenefit:hover::before { transform: scaleX(1); }
.ibenefit__ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: var(--accent-tint); }
.ibenefit__ic svg { width: 26px; height: 26px; color: var(--accent-strong); stroke-width: 1.9; }
.ibenefit h3 { font-size: 1.12rem; margin-bottom: 8px; }
.ibenefit p { font-size: .95rem; color: var(--slate-600); line-height: 1.6; }

/* ============================================================
   Common issues (problem -> solution)
   ============================================================ */
.iissues { background: var(--paper); }
.iissues-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.iissue { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; display: grid; gap: 16px; }
.iissue__p { display: flex; gap: 13px; }
.iissue__badge { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(220,38,38,.10); }
.iissue__badge svg { width: 21px; height: 21px; color: #dc2626; }
.iissue__p h3 { font-size: 1.08rem; color: var(--navy-900); }
.iissue__p p { font-size: .93rem; color: var(--slate-600); margin-top: 3px; }
.iissue__s { display: flex; gap: 13px; padding-top: 15px; border-top: 1px dashed var(--slate-200); }
.iissue__s .tick { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-tint); }
.iissue__s .tick svg { width: 21px; height: 21px; color: var(--accent-strong); }
.iissue__s b { font-family: var(--f-display); color: var(--accent-strong); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 3px; }
.iissue__s p { font-size: .95rem; color: var(--slate-700); }

/* ============================================================
   Approach (numbered steps)
   ============================================================ */
.iapproach-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.istep { position: relative; padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--border); transition: transform .28s, box-shadow .28s; }
.istep:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.istep__n { font-family: var(--f-display); font-weight: 700; font-size: 2.3rem; line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; }
.istep h3 { font-size: 1.08rem; margin-bottom: 7px; }
.istep p { font-size: .92rem; color: var(--slate-600); line-height: 1.6; }

/* ============================================================
   Includes (what's included checklist)
   ============================================================ */
.iincludes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 34px; }
.iinc { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--slate-100); }
.iinc .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); margin-top: 1px; }
.iinc .tick svg { width: 14px; height: 14px; color: var(--accent-strong); }
.iinc b { font-family: var(--f-display); font-weight: 600; color: var(--navy-800); }
.iinc span { color: var(--slate-600); font-size: .95rem; }

/* ============================================================
   Stat band (navy + accent glow)
   ============================================================ */
.istatband { position: relative; overflow: hidden; background: var(--navy-900); color: #fff;
  background-image: radial-gradient(700px 360px at 12% 0%, var(--accent-glow), transparent 55%), radial-gradient(600px 360px at 90% 100%, var(--accent-glow), transparent 58%); }
.istatband .ihead h2, .istatband .ihead p { color: #fff; }
.istatband .ihead p { color: var(--slate-300); }
.istatband-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.istat { text-align: center; padding: 26px 16px; border-radius: var(--r-lg); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.istat b { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(2rem,3.6vw,2.8rem); line-height: 1;
  background: linear-gradient(135deg,#fff,var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.istat small { color: var(--slate-300); font-size: .92rem; margin-top: 8px; display: block; }

/* ============================================================
   Feature rows (alternating)
   ============================================================ */
.ifeature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.ifeature + .ifeature { margin-top: clamp(40px,5vw,72px); }
.ifeature:nth-child(even) .ifeature__media { order: 2; }
.ifeature__media { position: relative; min-height: 300px; border-radius: var(--r-xl); overflow: hidden; background: var(--navy-800);
  background-image: radial-gradient(420px 280px at 24% 16%, var(--accent-glow), transparent 60%); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.ifeature__media svg { width: 40%; height: auto; color: #fff; opacity: .9; }
.ifeature__body h3 { font-size: clamp(1.3rem,2.2vw,1.7rem); }
.ifeature__body p { margin-top: 14px; color: var(--slate-600); line-height: 1.65; }
.ifeature__body .icheck { margin-top: 18px; }

/* ============================================================
   Compare (us vs typical)
   ============================================================ */
.icompare-wrap { max-width: 860px; margin-inline: auto; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.icompare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.icompare-row + .icompare-row { border-top: 1px solid var(--border); }
.icompare-row > div { padding: 16px 20px; display: flex; align-items: center; gap: 10px; }
.icompare-head { background: var(--navy-800); color: #fff; font-family: var(--f-display); }
.icompare-head .us { background: var(--accent-grad); }
.icompare-head > div { font-weight: 600; }
.icompare-row .feat { font-weight: 500; color: var(--navy-800); }
.icompare-row .us svg { color: var(--accent-strong); }
.icompare-row .them svg { color: var(--slate-400); }
.icompare-row svg { width: 20px; height: 20px; flex: none; }
.icompare-row .us { background: var(--accent-tint); font-weight: 600; color: var(--navy-800); }
.icompare-row .them { color: var(--slate-500); }

/* ============================================================
   Pricing
   ============================================================ */
.ipricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.iprice { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; }
.iprice.feat { border-color: transparent; box-shadow: var(--shadow-lg); position: relative; }
.iprice.feat::before { content:""; position:absolute; inset:0 0 auto 0; height:4px; background: var(--accent-grad); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.iprice__tag { display: inline-block; align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-strong); background: var(--accent-tint); padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 14px; }
.iprice h3 { font-size: 1.2rem; }
.iprice__from { margin: 12px 0 4px; font-family: var(--f-display); font-weight: 700; font-size: 2.2rem; color: var(--navy-900); }
.iprice__from small { font-size: .9rem; color: var(--slate-500); font-weight: 500; }
.iprice__desc { color: var(--slate-600); font-size: .94rem; margin-bottom: 18px; }
.iprice__list { display: grid; gap: 10px; margin-bottom: 22px; }
.iprice__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--slate-700); }
.iprice__list svg { width: 17px; height: 17px; color: var(--accent-strong); flex: none; margin-top: 3px; }
.iprice .btn { margin-top: auto; }

/* ============================================================
   CTA band + quote (navy + accent glow)
   ============================================================ */
.ictaband { position: relative; overflow: hidden; }
.ictaband__card { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--navy-800); color: #fff; padding: clamp(36px,5vw,64px); text-align: center; box-shadow: var(--shadow-lg);
  background-image: radial-gradient(560px 340px at 15% 0%, var(--accent-glow), transparent 55%), radial-gradient(520px 320px at 92% 100%, var(--accent-glow), transparent 58%); }
.ictaband__card .eyebrow { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.ictaband__card h2 { color: #fff; margin: 16px 0 12px; font-size: clamp(1.8rem,3.4vw,2.7rem); }
.ictaband__card p { color: var(--slate-300); font-size: 1.08rem; max-width: 620px; margin: 0 auto; }
.ictaband__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.ictaband .btn--cta { background: var(--accent); color: #071a2e; }
.ictaband .btn--cta:hover { background: #fff; color: var(--navy-900); }
.ictaband .btn--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; }

.iquote { position: relative; overflow: hidden; background: var(--navy-900); color: #fff;
  background-image: radial-gradient(640px 380px at 50% 0%, var(--accent-glow), transparent 58%); }
.iquote__in { max-width: 820px; margin-inline: auto; text-align: center; }
.iquote__mark { font-family: var(--f-display); font-size: 4rem; line-height: .5; color: var(--accent); }
.iquote blockquote { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.4; letter-spacing: -.01em; margin: 10px 0 18px; }
.iquote cite { font-style: normal; color: var(--slate-300); font-size: .96rem; }
.iquote cite b { color: #fff; }

/* ============================================================
   Services hub grid + cross-links
   ============================================================ */
.svc-hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-hub-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; transition: transform .28s, box-shadow .28s, border-color .28s; }
.svc-hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-hub-card__ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 16px; background: var(--accent-tint); }
.svc-hub-card__ic svg { width: 27px; height: 27px; color: var(--accent-strong); stroke-width: 1.85; }
.svc-hub-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.svc-hub-card p { font-size: .95rem; color: var(--slate-600); line-height: 1.6; flex: 1; }
.svc-hub-card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-display); font-weight: 600; color: var(--accent-strong); font-size: .94rem; }
.svc-hub-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-hub-card:hover .svc-hub-card__link svg { transform: translateX(4px); }

.iother-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.iother-card { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; transition: .2s; }
.iother-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.iother-card .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--accent-tint); }
.iother-card .ic svg { width: 22px; height: 22px; color: var(--accent-strong); }
.iother-card b { font-family: var(--f-display); font-weight: 600; color: var(--navy-800); font-size: .98rem; display: block; }
.iother-card small { color: var(--slate-500); font-size: .84rem; }

/* ============================================================
   Case studies (detailed)
   ============================================================ */
.cstudies { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.cstudy {
  display: grid; grid-template-columns: 288px 1fr; gap: clamp(26px, 3.5vw, 52px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(26px, 3.2vw, 44px); align-items: start;
}
.cstudy__tag { display: inline-block; font-family: var(--f-display); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-strong); background: var(--accent-tint); padding: 5px 12px; border-radius: var(--r-pill); }
.cstudy__name { font-size: clamp(1.3rem, 2vw, 1.65rem); margin: 14px 0 4px; }
.cstudy__meta { display: grid; gap: 9px; margin-top: 16px; }
.cstudy__meta div { display: flex; align-items: center; gap: 9px; color: var(--slate-600); font-size: .9rem; }
.cstudy__meta svg { width: 16px; height: 16px; color: var(--accent-strong); flex: none; }
.cstudy__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.cstudy__tags span { font-size: .74rem; font-weight: 500; color: var(--slate-600); background: var(--slate-100); border: 1px solid var(--hair); padding: 4px 10px; border-radius: var(--r-pill); }
.cstudy__tags span:empty { display: none; }
.cstudy__body { display: grid; gap: 22px; }
.cstudy__block h4 { font-family: var(--f-display); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--accent-strong); margin-bottom: 8px; }
.cstudy__block > p { color: var(--slate-600); line-height: 1.65; font-size: 1rem; }
.cstudy__do { display: grid; gap: 10px; }
.cstudy__do li { display: flex; gap: 11px; color: var(--slate-700); font-size: .96rem; line-height: 1.5; }
.cstudy__do svg { width: 18px; height: 18px; color: var(--accent-strong); flex: none; margin-top: 2px; }
.cstudy__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cstudy__metric { background: var(--paper); border: 1px solid var(--hair); border-radius: var(--r-md); padding: 18px 14px; text-align: center; }
.cstudy__metric b { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2rem); background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.cstudy__metric small { color: var(--slate-500); font-size: .8rem; margin-top: 7px; display: block; }
.cstudy__quote { border-left: 3px solid var(--accent); padding: 2px 0 2px 18px; color: var(--navy-800); font-family: var(--f-display); font-weight: 500; font-style: italic; line-height: 1.5; }
.cstudy__quote cite { display: block; font-style: normal; font-weight: 400; color: var(--slate-500); font-size: .84rem; margin-top: 7px; }
@media (max-width: 820px) { .cstudy { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 520px) { .cstudy__results { grid-template-columns: 1fr; } }

/* ============================================================
   Contact page specifics
   ============================================================ */
.icontact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,4vw,48px); align-items: start; }
.icontact-info { display: grid; gap: 16px; }
.icontact-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--border); border-radius: var(--r-md); background: #fff; }
.icontact-item .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); }
.icontact-item .ic svg { width: 22px; height: 22px; color: var(--accent-strong); }
.icontact-item b { font-family: var(--f-display); color: var(--navy-800); display: block; }
.icontact-item small { color: var(--slate-500); font-size: .82rem; }
.icontact-item a { color: var(--slate-700); }
.icontact-item a:hover { color: var(--accent-strong); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .ibenefits-grid, .svc-hub-grid, .iother-grid { grid-template-columns: repeat(2,1fr); }
  .iapproach-grid, .istatband-grid { grid-template-columns: repeat(2,1fr); }
  .ipricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 900px) {
  .ihero__grid, .isplit, .ifeature, .icontact-grid { grid-template-columns: 1fr; }
  .ifeature:nth-child(even) .ifeature__media { order: 0; }
  .ihero__art, .ifeature__media { min-height: 260px; }
  .iissues-grid, .iincludes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .ibenefits-grid, .svc-hub-grid, .iother-grid, .iapproach-grid { grid-template-columns: 1fr; }
  .istatband-grid { grid-template-columns: 1fr 1fr; }
  .icompare-row { grid-template-columns: 1.2fr .8fr .8fr; }
  .icompare-row > div { padding: 12px; font-size: .9rem; }
}
