/* ==========================================================================
   OnlineCare AI — Shared page components
   Built on the tokens defined in style.css. Every inner page composes
   these blocks, so nothing has to be re-styled per page.

    1. Section rhythm        8. Testimonials
    2. Page hero             9. CTA band
    3. Cards & grids        10. Blog
    4. Split media/text     11. Forms
    5. Mock UI panels       12. Legal / prose
    6. Stats & counters     13. Utilities
    7. Flow, timeline, FAQ  14. Scroll reveal + responsive
   ========================================================================== */

/* ==========================================================================
   1. Section rhythm
   ========================================================================== */

.sec { padding: var(--sec-y) 0; }
.sec--tight { padding: clamp(36px, 4.4vw, 64px) 0; }
.sec--flush-top { padding-top: 0; }
.sec--flush-bottom { padding-bottom: 0; }

.sec-alt {
  position: relative;
  background: linear-gradient(180deg, rgba(9, 18, 44, 0), rgba(9, 18, 44, .72) 18%, rgba(9, 18, 44, .72) 82%, rgba(9, 18, 44, 0));
}

.sec-head { max-width: 780px; margin: 0 auto clamp(30px, 3.6vw, 54px); text-align: center; }
.sec-head h2 {
  margin: 14px 0 0;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(27px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -1.1px;
  line-height: 1.12;
}
.sec-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.68;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border: 1px solid rgba(143, 63, 255, .42);
  border-radius: 999px;
  background: rgba(30, 16, 62, .55);
  color: #d3b6ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: ocPulse 2.4s ease-in-out infinite;
}

@keyframes ocPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

/* ==========================================================================
   2. Page hero
   ========================================================================== */

.page-hero { position: relative; padding: clamp(30px, 4vw, 60px) 0 clamp(28px, 3.4vw, 50px); overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% 40% auto -10%;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 48, 233, .16), transparent 62%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: -20% -12% auto 52%;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 190, 205, .13), transparent 62%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
}
.page-hero-grid--center { grid-template-columns: minmax(0, 1fr); max-width: 900px; margin-inline: auto; text-align: center; }
.page-hero-grid--center .hero-actions, .page-hero-grid--center .tag-row { justify-content: center; }

.page-hero h1 {
  margin: 18px 0 0;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(31px, 4.1vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.6px;
}
.page-hero .lede {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.68;
}
.page-hero-grid--center .lede { margin-inline: auto; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: #7f8aa8; margin-bottom: 20px; }
.crumbs a { color: #9fb0d4; transition: color .2s var(--ease); }
.crumbs a:hover { color: var(--cyan); }
.crumbs i { font-size: 10px; opacity: .6; }
.crumbs [aria-current] { color: #e6ebfa; }

/* ==========================================================================
   3. Cards & grids
   ========================================================================== */

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.oc-card {
  position: relative;
  height: 100%;
  padding: clamp(22px, 2.1vw, 30px);
  border: 1px solid rgba(113, 149, 215, .22);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(14, 26, 58, .92), rgba(6, 15, 37, .95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.oc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(143, 63, 255, .12), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.oc-card:hover { transform: translateY(-6px); border-color: rgba(143, 63, 255, .5); box-shadow: 0 26px 60px rgba(0, 0, 0, .34); }
.oc-card:hover::after { opacity: 1; }
.oc-card > * { position: relative; z-index: 1; }

.oc-card h3 { margin: 16px 0 8px; font-size: clamp(17px, 1.4vw, 20px); font-weight: 700; line-height: 1.35; }
.oc-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.oc-card--flat:hover { transform: none; }
.oc-card--link { display: flex; flex-direction: column; }
.oc-card--link .link-arrow { margin-top: auto; padding-top: 18px; }

.ico-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  font-size: 23px;
  color: #dfe6ff;
  background: linear-gradient(145deg, rgba(126, 48, 233, .34), rgba(39, 85, 214, .3));
  border: 1px solid rgba(143, 63, 255, .3);
  box-shadow: 0 10px 26px rgba(84, 40, 190, .22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.oc-card:hover .ico-badge { transform: translateY(-3px) rotate(-5deg); box-shadow: 0 16px 34px rgba(84, 40, 190, .34); }
.ico-badge--teal { background: linear-gradient(145deg, rgba(8, 201, 203, .3), rgba(6, 141, 155, .28)); border-color: rgba(16, 213, 214, .34); color: #b7f6f7; }
.ico-badge--blue { background: linear-gradient(145deg, rgba(51, 133, 255, .3), rgba(30, 60, 180, .3)); border-color: rgba(51, 133, 255, .34); color: #c5dcff; }
.ico-badge--pink { background: linear-gradient(145deg, rgba(242, 97, 191, .28), rgba(150, 40, 130, .28)); border-color: rgba(242, 97, 191, .32); color: #ffcdee; }
.ico-badge--green { background: linear-gradient(145deg, rgba(63, 230, 176, .26), rgba(20, 130, 110, .26)); border-color: rgba(63, 230, 176, .32); color: #b9ffe6; }
.ico-badge--red { background: linear-gradient(145deg, rgba(255, 83, 104, .26), rgba(150, 20, 50, .28)); border-color: rgba(255, 83, 104, .34); color: #ffc6ce; }
.ico-badge--lg { width: 66px; height: 66px; flex-basis: 66px; border-radius: 20px; font-size: 29px; }

/* row-style card (icon left, copy right) */
.row-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid rgba(113, 149, 215, .2);
  border-radius: var(--r-md);
  background: rgba(11, 22, 51, .8);
  height: 100%;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}
.row-card:hover { transform: translateX(4px); border-color: rgba(143, 63, 255, .46); background: rgba(19, 33, 74, .9); }
.row-card h3, .row-card h4 { margin: 0 0 7px; font-size: 16.5px; font-weight: 700; line-height: 1.35; }
.row-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* highlighted / featured card */
.oc-card--feature {
  border-color: rgba(143, 63, 255, .45);
  background: linear-gradient(150deg, rgba(38, 20, 88, .92), rgba(8, 20, 52, .95));
}
.oc-card--teal { border-color: rgba(16, 213, 214, .4); background: linear-gradient(150deg, rgba(5, 52, 66, .92), rgba(6, 18, 44, .95)); }

/* ==========================================================================
   4. Split media / text
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 70px);
  align-items: center;
}
.split + .split { margin-top: clamp(48px, 6vw, 90px); }
.split-copy h2 {
  margin: 16px 0 0;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.9px;
}
.split-copy > p { margin: 16px 0 0; color: var(--muted); font-size: clamp(15px, 1.05vw, 17px); line-height: 1.75; }
.split--flip .split-media { order: 2; }

.check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: #d7ddee; }
.check-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 12px;
  color: #051a1a;
  background: linear-gradient(145deg, #3fe6b0, #10d5d6);
}
.check-list strong { color: #fff; font-weight: 600; }

/* ==========================================================================
   5. Mock UI panels (built in CSS — no image weight)
   ========================================================================== */

.mock {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(113, 149, 215, .26);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(14, 27, 60, .96), rgba(5, 13, 34, .98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), var(--shadow);
}
.mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(143, 63, 255, .5), transparent 42%, transparent 62%, rgba(16, 213, 214, .42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.mock-bar { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid rgba(113, 149, 215, .16); margin-bottom: 16px; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 9px; height: 9px; border-radius: 50%; background: #2b3b64; display: block; }
.mock-dots i:first-child { background: #ff5368; }
.mock-dots i:nth-child(2) { background: #ffb02e; }
.mock-dots i:nth-child(3) { background: #3fe6b0; }
.mock-bar span { font-size: 12.5px; color: #93a0c0; letter-spacing: .4px; }
.mock-bar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #6fe9c4; font-size: 11.5px; }
.mock-bar .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #3fe6b0; box-shadow: 0 0 8px #3fe6b0; animation: ocPulse 1.8s ease-in-out infinite; }

/* chat bubbles */
.mock-chat { display: grid; gap: 12px; }
.bubble {
  max-width: 86%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid rgba(113, 149, 215, .2);
  background: rgba(13, 25, 57, .9);
  color: #dbe2f4;
}
.bubble--me {
  justify-self: end;
  border-color: rgba(143, 63, 255, .4);
  background: linear-gradient(120deg, rgba(90, 35, 190, .55), rgba(48, 60, 190, .5));
  color: #fff;
}
.bubble--ai { border-color: rgba(16, 213, 214, .28); background: linear-gradient(120deg, rgba(6, 45, 60, .8), rgba(9, 20, 48, .9)); }
.bubble small { display: block; margin-top: 7px; color: #8b98b8; font-size: 11.5px; }
.bubble-typing { display: inline-flex; gap: 5px; align-items: center; }
.bubble-typing i { width: 6px; height: 6px; border-radius: 50%; background: #57e5e2; animation: ocType 1.3s ease-in-out infinite; }
.bubble-typing i:nth-child(2) { animation-delay: .18s; }
.bubble-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes ocType {
  0%, 60%, 100% { opacity: .28; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* list rows */
.mock-list { display: grid; gap: 9px; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(113, 149, 215, .18);
  border-radius: 13px;
  background: rgba(10, 20, 47, .84);
  font-size: 13.5px;
  color: #d3dbef;
}
.mock-row i:first-child { color: #9c6bff; font-size: 16px; }
.mock-row .val { margin-left: auto; color: #7fe9e6; font-weight: 600; font-size: 13px; }
.mock-row--ok { border-color: rgba(63, 230, 176, .3); }
.mock-row--warn { border-color: rgba(255, 176, 46, .3); }
.mock-row--warn i:first-child { color: #ffb02e; }

/* bar chart */
.mock-bars { display: flex; align-items: flex-end; gap: clamp(6px, 1.2vw, 12px); height: 148px; padding-top: 10px; }
.mock-bars div {
  flex: 1;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #9a4bff, #3b6bff 60%, #08c9cb);
  opacity: .85;
  transform-origin: bottom;
  animation: ocGrow .9s var(--ease) backwards;
}
.mock-bars div:nth-child(1) { height: 42%; animation-delay: .05s; }
.mock-bars div:nth-child(2) { height: 64%; animation-delay: .12s; }
.mock-bars div:nth-child(3) { height: 51%; animation-delay: .19s; }
.mock-bars div:nth-child(4) { height: 79%; animation-delay: .26s; }
.mock-bars div:nth-child(5) { height: 68%; animation-delay: .33s; }
.mock-bars div:nth-child(6) { height: 92%; animation-delay: .4s; }
.mock-bars div:nth-child(7) { height: 74%; animation-delay: .47s; }
@keyframes ocGrow { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: .85; } }

.mock-legend { display: flex; justify-content: space-between; margin-top: 10px; color: #7f8aa8; font-size: 11.5px; }

/* progress rings */
.ring-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 14px; text-align: center; }
.ring {
  --p: 60;
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#8f3fff calc(var(--p) * 1%), rgba(255, 255, 255, .07) 0);
  position: relative;
}
.ring::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #071232; }
.ring span { position: relative; font-size: 17px; font-weight: 700; }
.ring--teal { background: conic-gradient(#10d5d6 calc(var(--p) * 1%), rgba(255, 255, 255, .07) 0); }
.ring--green { background: conic-gradient(#3fe6b0 calc(var(--p) * 1%), rgba(255, 255, 255, .07) 0); }
.ring-row p { margin: 0; color: var(--muted); font-size: 12.5px; }

/* wallet-style card */
.wallet-card {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(143, 63, 255, .38);
  background: linear-gradient(125deg, #3a1a86, #1c2c86 55%, #05505c);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
  overflow: hidden;
}
.wallet-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
}
.wallet-card .wc-top { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: #d5c9ff; }
.wallet-card .wc-num { margin: 22px 0 6px; font-size: clamp(17px, 1.6vw, 21px); font-weight: 700; letter-spacing: 2.6px; }
.wallet-card .wc-foot { display: flex; justify-content: space-between; font-size: 12px; color: #c9d3f2; }
.wallet-card + .wallet-card { margin-top: 12px; }

/* floating badge over a mock */
.float-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(143, 63, 255, .4);
  border-radius: 14px;
  background: rgba(8, 19, 47, .95);
  box-shadow: var(--shadow);
  font-size: 12.5px;
  font-weight: 600;
  animation: ocFloat 5.5s ease-in-out infinite;
}
.float-badge i { color: var(--cyan); font-size: 15px; }
.float-badge--tr { top: -14px; right: -10px; }
.float-badge--bl { bottom: -16px; left: -12px; animation-delay: .9s; }
@keyframes ocFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ==========================================================================
   6. Stats & counters
   ========================================================================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid rgba(113, 149, 215, .22);
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(16, 28, 62, .88), rgba(6, 16, 39, .92));
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; padding: 6px 8px; }
.stat + .stat { border-left: 1px solid rgba(113, 149, 215, .16); }
.stat-num {
  display: block;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { display: block; margin-top: 10px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ==========================================================================
   7. Flow, timeline, FAQ accordion
   ========================================================================== */

.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: clamp(16px, 2vw, 26px); counter-reset: flow; }
.flow-step {
  position: relative;
  padding: clamp(22px, 2vw, 28px);
  border: 1px solid rgba(113, 149, 215, .22);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(13, 25, 57, .92), rgba(6, 15, 37, .95));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.flow-step:hover { transform: translateY(-5px); border-color: rgba(143, 63, 255, .48); }
.flow-step .step-n {
  counter-increment: flow;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #7c2ae8, #4b3ce0);
  box-shadow: 0 0 22px rgba(118, 38, 234, .34);
}
.flow-step .step-n::before { content: counter(flow, decimal-leading-zero); }
.flow-step:nth-child(even) .step-n { background: linear-gradient(145deg, #0788a1, #0a5fbf); box-shadow: 0 0 22px rgba(0, 191, 219, .3); }
.flow-step h3 { margin: 0 0 9px; font-size: 17px; font-weight: 700; line-height: 1.35; }
.flow-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #7438cc, transparent);
}

/* accordion */
.acc { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.acc-item {
  border: 1px solid rgba(113, 149, 215, .22);
  border-radius: var(--r-md);
  background: rgba(10, 20, 47, .78);
  overflow: hidden;
  transition: border-color .28s var(--ease), background .28s var(--ease);
}
.acc-item:hover { border-color: rgba(143, 63, 255, .4); }
.acc-item.is-open { border-color: rgba(16, 213, 214, .55); background: rgba(8, 24, 52, .9); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(15px, 1.5vw, 20px) clamp(16px, 1.6vw, 24px);
  border: 0;
  background: transparent;
  color: #f1f4ff;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.acc-btn .acc-ico {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(16, 213, 214, .4);
  color: var(--cyan);
  font-size: 13px;
  transition: transform .34s var(--ease), background .28s var(--ease), color .28s var(--ease);
}
.acc-item.is-open .acc-ico { transform: rotate(180deg); background: var(--grad-teal); border-color: transparent; color: #04202a; }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .36s var(--ease); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { margin: 0; padding: 0 clamp(16px, 1.6vw, 24px) clamp(16px, 1.6vw, 22px); color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* ==========================================================================
   8. Testimonials
   ========================================================================== */

.quote-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(22px, 2.1vw, 30px);
  border: 1px solid rgba(113, 149, 215, .22);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(14, 26, 58, .92), rgba(6, 15, 37, .95));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.quote-card:hover { transform: translateY(-5px); border-color: rgba(143, 63, 255, .45); }
.stars { color: #ffc14d; font-size: 13px; letter-spacing: 2px; }
.quote-card blockquote { margin: 16px 0 22px; color: #dde3f4; font-size: 15px; line-height: 1.75; }
.quote-who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #7c2ae8, #08c9cb);
}
.quote-who strong { display: block; font-size: 14.5px; }
.quote-who span { display: block; color: var(--muted); font-size: 12.5px; }

/* ==========================================================================
   9. CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 64px) clamp(22px, 3.4vw, 60px);
  border: 1px solid rgba(143, 63, 255, .42);
  border-radius: var(--r-xl);
  text-align: center;
  background: radial-gradient(circle at 12% 0%, rgba(143, 63, 255, .3), transparent 46%),
              radial-gradient(circle at 88% 100%, rgba(6, 190, 205, .26), transparent 46%),
              linear-gradient(120deg, #1b1152, #0b1442 52%, #052b48);
  box-shadow: var(--shadow);
}
.cta-band h2 {
  margin: 0 auto;
  max-width: 760px;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1px;
}
.cta-band p { margin: 16px auto 0; max-width: 640px; color: #c3cbe4; font-size: clamp(14.5px, 1.05vw, 17px); line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.cta-note { margin-top: 18px; color: #9aa5c4; font-size: 12.5px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }

/* ==========================================================================
   10. Blog
   ========================================================================== */

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 18px;
  border: 1px solid rgba(113, 149, 215, .28);
  border-radius: 999px;
  background: rgba(10, 20, 47, .8);
  color: #c4cdE4;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: .25s var(--ease);
}
.chip:hover { border-color: rgba(143, 63, 255, .55); color: #fff; transform: translateY(-2px); }
.chip.is-active { background: var(--grad-brand); border-color: transparent; color: #fff; font-weight: 600; }

.search-box { position: relative; max-width: 420px; width: 100%; }
.search-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #7a86a6; font-size: 15px; pointer-events: none; }
.search-box input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1px solid rgba(113, 149, 215, .28);
  border-radius: 999px;
  background: rgba(8, 17, 40, .9);
  color: var(--text);
  font-size: 14.5px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search-box input::placeholder { color: #6f7b9b; }
.search-box input:focus { outline: 0; border-color: rgba(16, 213, 214, .6); box-shadow: 0 0 0 4px rgba(16, 213, 214, .12); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: clamp(18px, 2vw, 28px); }

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(113, 149, 215, .22);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(14, 26, 58, .92), rgba(6, 15, 37, .95));
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}
.blog-card:hover { transform: translateY(-7px); border-color: rgba(143, 63, 255, .5); box-shadow: 0 28px 62px rgba(0, 0, 0, .36); }

.blog-cover {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #fff;
  font-size: 46px;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .16), transparent 52%),
    linear-gradient(135deg, #5a1fb8, #2a3fb0 56%, #056a78);
}
.blog-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
}
.blog-cover i { position: relative; z-index: 1; transition: transform .4s var(--ease); }
.blog-card:hover .blog-cover i { transform: scale(1.12) rotate(-6deg); }
.blog-cover--mind { background: radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .16), transparent 52%), linear-gradient(135deg, #7b1f8f, #3b2a9e 58%, #0a5a7a); }
.blog-cover--care { background: radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .16), transparent 52%), linear-gradient(135deg, #0b6f7d, #12457f 58%, #3a1e8a); }
.blog-cover--meds { background: radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .16), transparent 52%), linear-gradient(135deg, #0d6a5c, #12507f 58%, #4a2093); }
.blog-cover--tech { background: radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .16), transparent 52%), linear-gradient(135deg, #4b2093, #1c3fa8 58%, #06808f); }

.blog-body { display: flex; flex-direction: column; flex: 1; padding: clamp(18px, 1.8vw, 24px); }
.blog-tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 213, 214, .34);
  background: rgba(5, 44, 55, .6);
  color: #8ceef0;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.blog-body h3 { margin: 14px 0 10px; font-size: clamp(17px, 1.3vw, 19.5px); font-weight: 700; line-height: 1.38; }
.blog-body p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.68; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: auto; color: #7f8aa8; font-size: 12.5px; }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #55618a; }

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(22px, 2.6vw, 36px);
  border: 1px solid rgba(143, 63, 255, .38);
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 92% 8%, rgba(6, 190, 205, .16), transparent 44%),
              linear-gradient(140deg, rgba(31, 17, 76, .94), rgba(6, 16, 42, .96));
  box-shadow: var(--shadow);
}
.blog-featured .blog-cover { border-radius: 18px; aspect-ratio: 4 / 3; font-size: 62px; }
.blog-featured h2 {
  margin: 16px 0 12px;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.8px;
}
.blog-featured p { color: var(--muted); font-size: clamp(14.5px, 1.05vw, 16.5px); line-height: 1.72; }

.link-arrow { display: inline-flex; align-items: center; gap: 9px; color: #bd66ff; font-size: 14px; font-weight: 600; transition: gap .25s var(--ease), color .25s var(--ease); }
.link-arrow:hover { gap: 14px; color: #d79bff; }

.pager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: clamp(32px, 4vw, 52px); }
.pager button {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(113, 149, 215, .26);
  border-radius: 12px;
  background: rgba(10, 20, 47, .8);
  color: #c4cde4;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s var(--ease);
}
.pager button:hover:not(:disabled) { border-color: rgba(143, 63, 255, .55); color: #fff; transform: translateY(-2px); }
.pager button.is-active { background: var(--grad-brand); border-color: transparent; color: #fff; }
.pager button:disabled { opacity: .38; cursor: not-allowed; }

.empty-state { padding: clamp(36px, 5vw, 64px) 20px; text-align: center; color: var(--muted); }
.empty-state i { font-size: 40px; color: #4d5a80; }
.empty-state h3 { margin: 16px 0 8px; color: #e7ebf8; font-size: 19px; }
.empty-state p { margin: 0; font-size: 14.5px; }

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(16, 213, 214, .34);
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 8% 20%, rgba(6, 190, 205, .18), transparent 46%),
              linear-gradient(120deg, rgba(5, 40, 58, .92), rgba(9, 16, 44, .95));
}
.newsletter h2 { margin: 0 0 10px; font-family: Font_Rodona, Inter, sans-serif; font-size: clamp(22px, 2.2vw, 32px); font-weight: 800; line-height: 1.2; }
.newsletter p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form .field { flex: 1 1 220px; margin: 0; }

/* ==========================================================================
   11. Forms
   ========================================================================== */

.form-card {
  padding: clamp(24px, 2.8vw, 40px);
  border: 1px solid rgba(113, 149, 215, .24);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(15, 27, 60, .92), rgba(6, 15, 37, .95));
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }
.field > label { display: block; margin-bottom: 8px; color: #d5dcf0; font-size: 13.5px; font-weight: 600; }
.field .req { color: #ff7d90; }

.input, .textarea, .select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(113, 149, 215, .26);
  border-radius: var(--r-sm);
  background: rgba(7, 16, 38, .92);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  line-height: 1.5;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: #6f7b9b; }
.input:focus, .textarea:focus, .select:focus {
  outline: 0;
  border-color: rgba(16, 213, 214, .62);
  box-shadow: 0 0 0 4px rgba(16, 213, 214, .12);
  background: rgba(9, 20, 46, .96);
}
.textarea { min-height: 148px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237f8aa8'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.select option { background: #0a1533; color: var(--text); }

.field-error { display: none; margin-top: 7px; color: #ff8b9c; font-size: 12.5px; }
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: #ff5368; box-shadow: 0 0 0 4px rgba(255, 83, 104, .1); }
.field.has-error .field-error { display: block; }

.check-line { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.check-line input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 18px; accent-color: #8f3fff; }
.check-line a { color: #bd66ff; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(63, 230, 176, .45);
  background: rgba(8, 52, 44, .7);
  color: #c8ffe9;
  font-size: 14px;
}
.form-status.is-visible { display: flex; align-items: center; gap: 10px; animation: ocFadeUp .4s var(--ease); }

/* contact meta cards */
.contact-tile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid rgba(113, 149, 215, .2);
  border-radius: var(--r-md);
  background: rgba(11, 22, 51, .8);
  height: 100%;
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}
.contact-tile:hover { transform: translateY(-4px); border-color: rgba(16, 213, 214, .45); }
.contact-tile h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.contact-tile p { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.contact-tile a { color: #6fe4e2; font-size: 14px; font-weight: 600; word-break: break-word; }
.contact-tile a:hover { color: #a9f4f2; }

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 32vw, 380px);
  border: 1px solid rgba(113, 149, 215, .24);
  border-radius: var(--r-xl);
  background:
    linear-gradient(rgba(113, 149, 215, .08) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(90deg, rgba(113, 149, 215, .08) 1px, transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 50% 46%, rgba(143, 63, 255, .2), transparent 55%),
    linear-gradient(150deg, rgba(11, 22, 51, .94), rgba(5, 13, 34, .96));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.map-pin {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(145deg, #8f3fff, #08c9cb);
  box-shadow: 0 0 0 10px rgba(143, 63, 255, .12), 0 0 34px rgba(143, 63, 255, .5);
  animation: ocFloat 4.5s ease-in-out infinite;
}
.map-frame h3 { margin: 0 0 8px; font-size: 19px; }
.map-frame p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ==========================================================================
   12. Legal / prose
   ========================================================================== */

.prose-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(26px, 3.4vw, 56px); align-items: start; }
.prose-nav { position: sticky; top: 96px; padding: 22px; border: 1px solid rgba(113, 149, 215, .22); border-radius: var(--r-lg); background: rgba(10, 20, 47, .8); }
.prose-nav h2 { margin: 0 0 14px; font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: #8a95b5; }
.prose-nav a { display: block; padding: 8px 0; color: #b6c0da; font-size: 14px; line-height: 1.5; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.prose-nav a:hover { color: var(--cyan); padding-left: 5px; }

.prose { max-width: 820px; }
.prose h2 {
  margin: clamp(34px, 3.6vw, 52px) 0 14px;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -.5px;
  scroll-margin-top: 100px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; font-size: 17px; font-weight: 700; }
.prose p, .prose li { color: #c3cbe0; font-size: 15px; line-height: 1.82; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { color: #6fe4e2; }
.prose a:hover { text-decoration: underline; }
.prose-updated { display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border: 1px solid rgba(113, 149, 215, .26); border-radius: 999px; background: rgba(10, 20, 47, .8); color: var(--muted); font-size: 13px; }

/* article body (blog detail) */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(28px, 3.6vw, 60px); align-items: start; }
.article-body { max-width: 780px; }
.article-body > p:first-of-type { font-size: clamp(16px, 1.2vw, 19px); color: #dbe1f2; line-height: 1.8; }
.article-body h2 { margin: clamp(32px, 3.4vw, 48px) 0 14px; font-family: Font_Rodona, Inter, sans-serif; font-size: clamp(21px, 2vw, 29px); font-weight: 800; letter-spacing: -.5px; }
.article-body h3 { margin: 28px 0 10px; font-size: 18px; font-weight: 700; }
.article-body p { margin: 0 0 18px; color: #c3cbe0; font-size: 15.5px; line-height: 1.85; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 22px; color: #c3cbe0; }
.article-body li { margin-bottom: 10px; font-size: 15.5px; line-height: 1.8; }
.article-body blockquote {
  margin: 26px 0;
  padding: 20px 24px;
  border-left: 3px solid #8f3fff;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: rgba(23, 18, 62, .6);
  color: #e2e6f6;
  font-size: 16px;
  line-height: 1.75;
}
.article-side { position: sticky; top: 96px; display: grid; gap: 16px; }
.share-row { display: flex; gap: 10px; flex-wrap: wrap; }
.share-row a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(113, 149, 215, .28);
  border-radius: 50%;
  color: #c4cde4;
  transition: .25s var(--ease);
}
.share-row a:hover { background: var(--grad-brand); border-color: transparent; color: #fff; transform: translateY(-3px); }

.note-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: clamp(16px, 1.7vw, 22px);
  border: 1px solid rgba(255, 176, 46, .34);
  border-radius: var(--r-md);
  background: rgba(46, 32, 8, .42);
  color: #f0dfbf;
  font-size: 14px;
  line-height: 1.7;
}
.note-box i { color: #ffb02e; font-size: 19px; flex: 0 0 auto; margin-top: 1px; }
.note-box--info { border-color: rgba(16, 213, 214, .34); background: rgba(5, 38, 48, .5); color: #cdeef0; }
.note-box--info i { color: var(--cyan); }

/* ==========================================================================
   13. Utilities
   ========================================================================== */

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid rgba(113, 149, 215, .26);
  border-radius: 999px;
  background: rgba(8, 17, 40, .8);
  color: #c7d0e8;
  font-size: 13px;
}
.tag i { color: var(--cyan); font-size: 14px; }

.mw-780 { max-width: 780px; }

.to-top {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 900;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(143, 63, 255, .45);
  border-radius: 50%;
  background: rgba(8, 17, 40, .92);
  color: #d6c3ff;
  font-size: 17px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: .3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad-brand); border-color: transparent; color: #fff; }

/* team */
.team-card { text-align: center; }
.team-avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: 27px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #7c2ae8, #08c9cb);
  box-shadow: 0 0 0 8px rgba(143, 63, 255, .1), 0 12px 30px rgba(0, 0, 0, .3);
  transition: transform .3s var(--ease);
}
.oc-card:hover .team-avatar { transform: scale(1.06); }
.team-card h3 { margin: 0 0 4px; font-size: 17.5px; }
.team-role { display: block; margin-bottom: 12px; color: #7fe9e6; font-size: 12.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }

/* ==========================================================================
   14. Scroll reveal + responsive
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="zoom"] { transform: scale(.95); }
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes ocFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-badge, .map-pin, .mock-bars div, .eyebrow::before, .bubble-typing i { animation: none !important; }
}

/* --- breakpoints --- */
@media (max-width: 1199.98px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prose-layout { grid-template-columns: 1fr; }
  .prose-nav { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
}

@media (max-width: 991.98px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-grid .split-media { order: 2; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-featured { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; }
}

@media (max-width: 767.98px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
  .float-badge { position: static; display: inline-flex; margin-top: 12px; animation: none; }
  .cta-actions .btn-grad, .cta-actions .btn-ghost, .cta-actions .btn-teal { width: 100%; }
  .hero-actions > * { width: 100%; }
  .newsletter-form .btn-grad { width: 100%; }
  .mock-bars { height: 118px; }
}

@media (max-width: 575.98px) {
  .mock { padding: 14px; border-radius: 18px; }
  .bubble { max-width: 94%; font-size: 13.5px; }
  .stat-strip { padding: 22px 16px; }
  .acc-btn { gap: 12px; }
  .chip { padding: 8px 14px; font-size: 12.5px; }
  .prose-nav { padding: 18px; }
}

@media (min-width: 1800px) {
  .container-oc { max-width: 1620px; }
}

/* ==========================================================================
   15. App screenshots (real device mockups)
   ========================================================================== */

.device {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, .55));
  transition: transform .45s var(--ease);
}
.device--lg { max-width: 340px; }
.device--sm { max-width: 236px; }
.split-media:hover .device,
.device-solo:hover .device { transform: translateY(-8px); }

/* a glow puck behind the phone so it lifts off the dark page */
.device-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 40px) 0;
}
.device-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(420px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 63, 255, .3), rgba(16, 213, 214, .12) 45%, transparent 68%);
  pointer-events: none;
}
.device-stage > * { position: relative; z-index: 1; }

/* two or three phones fanned out */
.device-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 26px);
}
/* flex-basis 0 lets the phones share the column instead of overflowing it */
.device-row .device { flex: 1 1 0; min-width: 0; max-width: 246px; }
.device-row .device:nth-child(odd) { transform: translateY(18px) scale(.94); }
.device-row .device:nth-child(2) { z-index: 2; }
.device-row .device:hover { transform: translateY(-6px) scale(1); z-index: 3; }

/* screenshot gallery */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}
.shot { text-align: center; }
.shot .device { max-width: 100%; }
.shot h3 { margin: 22px 0 8px; font-size: 16.5px; font-weight: 700; }
.shot p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.65; }

/* numbered getting-started steps beside a phone */
.howto { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); gap: clamp(30px, 4.4vw, 70px); align-items: center; }
.howto-steps { counter-reset: howto; display: grid; gap: 14px; }
.howto-step {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: clamp(18px, 1.9vw, 24px);
  border: 1px solid rgba(113, 149, 215, .2);
  border-radius: var(--r-md);
  background: rgba(11, 22, 51, .8);
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}
.howto-step:hover { transform: translateX(4px); border-color: rgba(143, 63, 255, .5); }
.howto-step .n {
  counter-increment: howto;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-family: Font_Rodona, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #7c2ae8, #4b3ce0);
  box-shadow: 0 0 20px rgba(118, 38, 234, .34);
}
.howto-step .n::before { content: counter(howto); }
.howto-step h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 700; }
.howto-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.howto-step .badge-store { display: inline-flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.howto-step .badge-store img { width: 132px; height: auto; }

@media (max-width: 991.98px) {
  .howto { grid-template-columns: 1fr; }
  .howto .device-stage { order: -1; }
}
@media (max-width: 767.98px) {
  .device-row { flex-wrap: wrap; }
  .device-row .device { max-width: 210px; }
  .device-row .device:nth-child(odd) { transform: none; }
}
