/* FONTS */
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-v7-latin_latin-ext-regular.495024935267.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-v7-latin_latin-ext-500.da4fb0d79cdd.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-v7-latin_latin-ext-600.0aed8bb280fa.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-v7-latin_latin-ext-700.6c8c923d83d1.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-v7-latin_latin-ext-800.c6c83271da10.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-v7-latin_latin-ext-900.00b656839d83.woff2")
    format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin_latin-ext-italic.1ea02acba63f.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin_latin-ext-500italic.95be4a5ba8c2.woff2")
    format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-regular.da03732a27e1.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-500.51205681a1ba.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-600.2ede57db1a3a.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, Arial, sans-serif;
  --cyan: #0dcaf0;
  --cyan-d: #0a8aa8;
  --cyan-soft: #e1f7fd;
  --navy: #0f1820;
  --navy-2: #16222c;
  --ink: #111a22;
  --slate: #5f6e79;
  --cream: #f4f1ea;
  --soft: #eef1f2;
  --line: #e7e3d8;
  --line-w: #e8edf0;
  --line-d: rgba(255, 255, 255, 0.13);
  --bg: #f6f3ec;
  --r: 18px;
  --r-lg: 26px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--cyan);
  color: #04323c;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 999px;
}
.lbl::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.lbl.dk {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-d);
  color: #cfd8de;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  padding: 7px 8px 7px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.btn .ic,
.btt .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:hover .ic {
  transform: rotate(-45deg);
}
.btn-cy {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}
.btn-cy .ic {
  background: var(--ink);
  color: var(--cyan);
}
.btn-out {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-out .ic {
  background: var(--ink);
  color: #fff;
}
.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn-light .ic {
  background: var(--cyan);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost .ic {
  background: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.09s;
}
.reveal.d2 {
  transition-delay: 0.18s;
}
.reveal.d3 {
  transition-delay: 0.27s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.04em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.4s;
}
.logo i {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-bk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cyan);
  padding: 7px 8px 7px 18px;
  border-radius: 999px;
  transition: transform 0.25s;
}
.nav-bk .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.nav-bk:hover {
  transform: translateY(-2px);
}
.nav-bk:hover .ic {
  transform: rotate(-45deg);
}
header.scrolled {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
header.scrolled .logo {
  color: var(--ink);
}
.logo img {
  height: 28px;
  width: auto;
  display: block;
}
.logo .logo-dark {
  display: none;
}
header.scrolled .logo .logo-light {
  display: none;
}
header.scrolled .logo .logo-dark {
  display: block;
}
header.scrolled .nav-links a {
  color: var(--slate);
}
header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--ink);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  position: relative;
  z-index: 95;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.menu-btn:focus {
  outline: none;
}
header.scrolled .menu-btn {
  color: var(--ink);
}
header.menu-open {
  background: transparent !important;
  box-shadow: none;
}
header.menu-open .logo,
header.menu-open .menu-btn {
  color: #fff;
}
@media (max-width: 980px) {
  .nav-links,
  .nav-bk {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}

/* MOBILE MENU */
.mscrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 22, 0.55);
  z-index: 84;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.mscrim.open {
  opacity: 1;
  visibility: visible;
}
.mmenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86%, 380px);
  background: var(--navy);
  color: #fff;
  z-index: 96;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 38px 50px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  visibility: hidden;
  box-shadow: none;
}
.mmenu.open {
  transform: none;
  visibility: visible;
}
.mmenu .mclose {
  position: absolute;
  top: 20px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.mmenu a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-d);
  transition:
    color 0.2s,
    padding-left 0.25s;
}
.mmenu a:hover,
.mmenu a.active {
  color: var(--cyan);
  padding-left: 8px;
}
.mmenu .mbk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 34px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cyan);
  padding: 10px 12px 10px 26px;
  border-radius: 999px;
  border: none;
}
.mmenu .mbk .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 981px) {
  .mmenu {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-radius: 0;
}
.hero .bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image:
    linear-gradient(120deg, rgba(15, 24, 32, 0.96), rgba(15, 24, 32, 0.72)),
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 202, 240, 0.3), transparent 64%);
  top: -180px;
  right: -120px;
  z-index: 1;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 46px;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  letter-spacing: -0.04em;
  margin: 24px 0 26px;
  max-width: 15ch;
}
.hero h1 .em {
  color: var(--cyan);
}
.hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.76);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-d);
  margin-top: 60px;
}
.hero-strip .wrap {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-strip .t {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.hero-strip .logos {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-strip .logos span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
}

section {
  padding: 104px 0;
}

/* STATS */
.stats {
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  text-align: center;
  padding: 10px 30px;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: none;
}
.stat .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat .l {
  color: var(--slate);
  font-size: 0.9rem;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }
  .stat:last-child {
    border-bottom: none;
  }
}

.shead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.shead h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 700;
}
.shead p {
  color: var(--slate);
}

/* SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -34px rgba(17, 26, 34, 0.3);
}
.lchip {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.lchip--cyan {
  background: #e1f7fd;
  color: #0a8aa8;
}
.lchip--slate {
  background: #e2e8ee;
  color: #2c3a47;
}
.lchip--green {
  background: #d8f3ea;
  color: #0b7a5e;
}
.lchip--blue {
  background: #dde9fb;
  color: #2563a8;
}
.lchip--gold {
  background: #f0ead8;
  color: #9a7b2e;
}
.lchip--purple {
  background: #e7e2f7;
  color: #5a47a8;
}
.svc h3 {
  font-size: 1.22rem;
  margin-bottom: 9px;
  font-weight: 700;
}
.svc p {
  color: var(--slate);
  font-size: 0.92rem;
}
@media (max-width: 920px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* ONE COLUMN */
section.one-col {
  padding: 52px 0;
}
.ocol {
  padding: 0;
}
.ocol .shead {
  margin-bottom: 32px;
}
.ocol-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  text-align: justify;
}
.ocol-body p {
  margin-bottom: 1.1em;
}
.ocol-body a {
  color: var(--cyan-d);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tcol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) {
  .tcol-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* PORTRAIT PANEL */
.ptest {
  background: var(--navy);
  color: #fff;
  border-radius: 34px;
  overflow: hidden;
}
.ptest-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}
.ptest .ph {
  position: relative;
  min-height: 460px;
}
.ptest .ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ptest .tx {
  padding: 64px 60px;
}
.ptest .tx .lbl {
  margin-bottom: 26px;
}
.ptest blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  border: none;
  margin: 0 0 26px;
}
.ptest .who {
  font-weight: 600;
}
.ptest .who span {
  display: block;
  color: #9fb0bd;
  font-weight: 400;
  font-size: 0.9rem;
}
.ptest .tx .btn {
  margin-top: 36px;
}
@media (max-width: 920px) {
  .ptest-grid {
    grid-template-columns: 1fr;
  }
  .ptest .ph {
    min-height: 300px;
  }
  .ptest .tx {
    padding: 40px 32px;
  }
}

/* STATEMENT */
.statement {
  text-align: center;
  padding: 120px 0;
}
.statement p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--ink);
}
.statement .em {
  color: var(--cyan-d);
}

/* HIGHLIGHT */
.hl {
  background: var(--cyan);
  border-radius: 34px;
  color: var(--ink);
  overflow: hidden;
}
.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 56px;
}
.hl h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  margin: 16px 0 18px;
}
.hl .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hl .bl {
  font-size: 0.95rem;
  color: #06414f;
}
.hl-chart {
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #fff;
}
.hl-chart .ct {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb0bd;
  margin-bottom: 16px;
}
.hl-chart img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
}
.hl-quote {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
}
.hl-quote p {
  font-size: 0.9rem;
}
.hl-quote .who {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 920px) {
  .hl-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 32px;
  }
}

/* STATS CARD */
.scard {
  background: var(--cyan);
  border-radius: 34px;
  color: var(--ink);
  overflow: hidden;
}
.scard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 56px;
}
.scard h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  margin: 16px 0 18px;
}
.scard .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.scard .bl {
  font-size: 0.95rem;
  max-width: 34ch;
  color: #06414f;
}
.scard-chart {
  background: rgba(15, 24, 32, 0.92);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  color: #fff;
}
.scard-chart .ct {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb0bd;
  margin-bottom: 16px;
}
.scard-chart svg {
  width: 100%;
  height: 130px;
  display: block;
}
.scard-quote {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
  color: var(--ink);
}
.scard-quote p {
  font-size: 0.9rem;
}
.scard-quote .who {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 920px) {
  .scard-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 32px;
  }
}

/* DETAIL LIST */
.detail .shead {
  margin-bottom: 50px;
}
.drow {
  display: grid;
  grid-template-columns: 64px 1fr 300px;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.3s;
}
.drow:last-child {
  border-bottom: 1px solid var(--line);
}
.drow:hover {
  padding-left: 10px;
}
.drow .dn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--cyan-d);
}
.drow .dc h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.drow .dc p {
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 52ch;
  margin-bottom: 12px;
}
.drow .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.drow .tags span {
  font-size: 0.74rem;
  color: var(--slate);
  background: var(--soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.drow .dimg {
  height: 170px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--soft);
}
.drow .dimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}
.drow:hover .dimg img {
  transform: scale(1.06);
}
@media (max-width: 920px) {
  .drow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .drow:hover {
    padding-left: 0;
  }
  .drow:hover .dimg img {
    transform: none;
  }
  .drow .dimg {
    height: 200px;
  }
  .drow .dn {
    font-size: 1.2rem;
  }
}

/* TESTIMONIAL CARDS */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.tcard.cy {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tcard .stars {
  color: var(--cyan-d);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.tcard.cy .stars {
  color: var(--cyan);
}
.tcard p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.tcard.cy .bn {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cyan-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cyan-d);
  font-size: 0.82rem;
}
.tcard .who .nm {
  font-weight: 600;
  font-size: 0.9rem;
}
.tcard .who .rl {
  color: var(--slate);
  font-size: 0.8rem;
}
.tcards-wrap {
  position: relative;
}
.t-dots {
  display: none;
}
.t-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 920px) {
  .tcards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    grid-template-columns: unset;
  }
  .tcards::-webkit-scrollbar {
    display: none;
  }
  .tcard {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .tcard:first-child {
    border-left: 1px solid var(--line);
    border-radius: var(--r-lg) 0 0 var(--r-lg);
  }
  .tcard:last-child {
    border-right: 1px solid var(--line);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
  }
  .t-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .t-dot {
    width: 28px;
    height: 28px;
    border: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .t-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    transition:
      width 0.25s,
      border-radius 0.25s,
      background 0.25s;
  }
  .t-dot.active::before {
    width: 28px;
    border-radius: 4px;
    background: var(--cyan-d);
  }
}

/* COMPARISON */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-panel {
  display: flex;
  flex-direction: column;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 46px 44px;
  flex: 1;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  transition: color 0.3s;
}
.compare .col-sub {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.compare ul {
  list-style: none;
  display: grid;
  gap: 15px;
}
.compare li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  align-items: flex-start;
}
.compare li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--slate);
  transition: stroke 0.3s;
}
.compare .col-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.compare-panel.left .col-btn {
  justify-content: flex-end;
}
.compare-panel.right .col-btn {
  justify-content: flex-start;
}
/* hover only on real pointer devices */
@media (hover: hover) and (pointer: fine) {
  .compare-panel:hover .compare-card {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
  }
  .compare-panel:hover .compare-card h3 {
    color: #fff;
  }
  .compare-panel:hover .col-sub {
    color: rgba(255, 255, 255, 0.55);
  }
  .compare-panel:hover li svg {
    stroke: var(--cyan);
  }
  .compare-panel:hover .btn {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--ink);
  }
  .compare-panel:hover .btn .ic {
    background: var(--ink);
    color: var(--cyan);
  }
}
@media (max-width: 760px) {
  .compare {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .compare-panel.left .col-btn,
  .compare-panel.right .col-btn {
    justify-content: center;
  }
  .compare-panel.left .compare-card {
    background: var(--cyan);
    border-color: var(--cyan);
  }
  .compare-panel.left li svg {
    stroke: #06414f;
  }
  .compare-panel.right {
    color: var(--slate);
  }
  .compare-panel.right li svg {
    stroke: #b3bcc2;
  }
}

/* FAQ */
.faq-controls {
  max-width: 840px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: flex-end;
}
.faq-toggle-all {
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.faq-toggle-all:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0 28px;
}
.faq-cat-title {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 22px 0 10px;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.faq .pl {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
}
.faq.open .pl {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: rotate(45deg);
}
.faq .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq .ans p {
  color: var(--slate);
  font-size: 0.96rem;
  padding: 0 4px 26px;
}

/* BLOG */
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.post:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -34px rgba(17, 26, 34, 0.3);
}
.post .pimg {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--soft);
}
.post .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}
.post:hover .pimg img {
  transform: scale(1.05);
}
.post .pbody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post .meta {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan-d);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
}
.post h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
  transition: color 0.3s;
}
.post:hover h3 {
  color: var(--cyan-d);
}
.post .more {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
}
@media (max-width: 920px) {
  .bgrid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

.blog-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* CTA + FOOTER */
.footwrap {
  background: var(--navy);
  color: #9fb0bd;
  border-radius: 0;
  margin-top: 60px;
  overflow: hidden;
}
.cta {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line-d);
}
.cta-in {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.cta h2 .em {
  color: var(--cyan);
}
.cta .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cta .right p {
  font-size: 1rem;
}
.fmap {
  width: 100%;
  line-height: 0;
}
.fmap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.65;
}
.ftop {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 54px 0 44px;
  border-bottom: 1px solid var(--line-d);
}
.ftop .logo {
  color: #fff;
  margin-bottom: 14px;
}
.ftop .brand p {
  font-size: 0.92rem;
  max-width: 26ch;
  margin-bottom: 16px;
}
.ftop .brand .row {
  font-size: 0.86rem;
  margin-bottom: 6px;
}
.ftop .brand .socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.ftop .brand .socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.ftop .brand .socials a:hover {
  color: var(--cyan);
}
.fcol h4 {
  color: #fff;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.fcol a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 11px;
  transition:
    color 0.25s,
    transform 0.25s;
}
.fcol a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}
.fcol .ci {
  font-size: 0.84rem;
  margin-bottom: 11px;
  line-height: 1.5;
}
.fcol .ci b {
  display: block;
  color: #cdd8e0;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fbot {
  padding: 24px 0 30px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 920px) {
  .cta-in {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ftop {
    grid-template-columns: 1fr 1fr;
  }
}

/* COOKIE CONSENT */
.cc {
  position: fixed;
  bottom: 28px;
  right: 28px;
  max-width: 420px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  z-index: 9999;
  box-shadow:
    0 24px 64px -8px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cc[hidden] {
  display: none;
}
.cc-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cc-text h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.cc-text p {
  font-size: 0.85rem;
  color: #9fb0bd;
  line-height: 1.6;
}
.cc-text a {
  color: var(--cyan);
  text-decoration: underline;
}
.cc-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-reject {
  background: none;
  border: none;
  color: #9fb0bd;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.cc-reject:hover {
  color: #fff;
}
@media (max-width: 480px) {
  .cc {
    left: 16px;
    right: 16px;
    bottom: 80px;
    max-width: none;
  }
}

/* BACK TO TOP */
.btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--body);
  font-size: 1rem;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s,
    transform 0.35s;
  padding: 0;
}
.btt.show {
  opacity: 1;
  transform: none;
}
.btt svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.btt-track {
  stroke: rgba(13, 202, 240, 0.2);
}
.btt-prog {
  stroke: var(--cyan);
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
}
.btt .ic {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: #fff;
  font: inherit;
  transform: rotate(-90deg);
}

@media (max-width: 760px) {
  .btt {
    display: none;
  }
}

/* ============================================================
   SERVICES & PRICING LIST — START  (copy this block)
   Relies on these existing variables: --cyan --cyan-d --cyan-soft
   --navy --ink --slate --line --soft --bg --r-lg --display --serif --body
   ============================================================ */
.svc-page {
  padding: 64px 0 110px;
}
.svc-intro {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.svc-intro h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.svc-intro h2 .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--cyan-d);
}
.svc-intro p {
  color: var(--slate);
  font-size: 1.04rem;
}
.svc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.svc-meta .pill {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan-d);
  background: var(--cyan-soft);
  border-radius: 999px;
  padding: 8px 16px;
}

.svc-list {
  max-width: 920px;
  margin: 0 auto 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  transition: background 0.25s;
}
.svc-list .svc-row:first-child {
  border-top: none;
}
.svc-row:hover {
  background: var(--soft);
}
.svc-row .svc-n {
  font-family: var(--display);
  font-weight: 700;
  color: var(--cyan-d);
  font-size: 0.92rem;
}
.svc-row .svc-main {
  min-width: 0;
}
.svc-row .svc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.svc-row .svc-brand .tag {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan-d);
  background: var(--cyan-soft);
  padding: 4px 9px;
  border-radius: 999px;
}
.svc-row .svc-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.svc-row .svc-desc {
  color: var(--slate);
  font-size: 0.92rem;
  max-width: 60ch;
}
.svc-row .svc-price {
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.svc-row .svc-price .amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.svc-row .svc-price .amt span {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate);
  margin-left: 4px;
}
.svc-row .svc-price .unit {
  font-size: 0.66rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.svc-row.feat {
  background: var(--cyan-soft);
}
.svc-row.feat:hover {
  background: #d2f0f9;
}

.svc-foot {
  max-width: 920px;
  margin: 36px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--slate);
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 22px;
  }
  .svc-row .svc-n {
    display: none;
  }
  .svc-row .svc-price {
    flex-direction: row;
    align-items: baseline;
    text-align: left;
    gap: 8px;
    margin-top: 6px;
  }
  .svc-row .svc-price .amt {
    font-size: 1.25rem;
  }
}
/* ============================================================
   SERVICES & PRICING LIST — END
   ============================================================ */

/* ============================================================
   PROSE / PRIVACY PAGE
   ============================================================ */
.prose-hero {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--line);
}
.prose-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 700px;
}
.prose-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.prose-section:last-child {
  border-bottom: none;
}
.prose-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.prose-col h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--ink);
}
.prose-body {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose-body p {
  margin-bottom: 12px;
}
.prose-body p:last-child {
  margin-bottom: 0;
}
.prose-body ul,
.prose-body ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.prose-body li {
  margin-bottom: 5px;
}
.prose-body a {
  color: var(--cyan-d);
  text-decoration: underline;
}
.prose-body h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 28px 0 10px;
  color: var(--cyan-d);
}
.prose-body h4 {
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 20px 0 8px;
  color: var(--cyan-d);
}
@media (max-width: 760px) {
  .prose-hero {
    padding: 56px 0 36px;
  }
  .prose-section {
    padding: 40px 0;
  }
  .prose-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ============================================================
   PROSE / PRIVACY PAGE — END
   ============================================================ */

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */
.art-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.art-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 24, 32, 0.9) 0%,
    rgba(15, 24, 32, 0.45) 55%,
    rgba(15, 24, 32, 0.15) 100%
  );
}
.art-hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 32px 56px;
  color: #fff;
}
.art-hero-back {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  transition: color 0.2s;
}
.art-hero-back:hover {
  color: var(--cyan);
}
.art-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.06;
  max-width: 820px;
  margin-bottom: 20px;
}
.art-meta {
  display: flex;
  gap: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.art-outer {
  padding: 64px 0 80px;
}
.art-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.art-main-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16/9;
}
.art-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Article body blocks */
.art-body > * + * {
  margin-top: 22px;
}
.bb-para {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--ink);
}
.bb-para p {
  margin-bottom: 14px;
}
.bb-para p:last-child {
  margin-bottom: 0;
}
.bb-para a {
  color: var(--cyan-d);
  text-decoration: underline;
}
.bb-para strong {
  font-weight: 700;
}
.bb-para em {
  font-style: italic;
}
.bb-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bb-list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.65;
}
.bb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.bb-h2 {
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 16px;
}
.bb-h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--cyan-d);
  margin: 36px 0 12px;
}
.bb-h4 {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--cyan-d);
  margin-top: 4px;
}
.bb-quote {
  border-left: 3px solid var(--cyan);
  padding: 12px 0 12px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--slate);
}
/* Sidebar */
.art-sidebar-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.art-rel-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: opacity 0.2s;
}
.art-rel-post:hover {
  opacity: 0.75;
}
.art-rel-img {
  flex: 0 0 80px;
  height: 56px;
  border-radius: var(--r);
  overflow: hidden;
}
.art-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-rel-body {
  flex: 1;
  min-width: 0;
}
.art-rel-date {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-d);
  margin-bottom: 4px;
}
.art-rel-body p {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
/* Article FAQ */
.art-faq {
  padding: 56px 0 80px;
  border-top: 1px solid var(--line);
}
.art-faq-title {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
@media (max-width: 860px) {
  .art-layout {
    grid-template-columns: 1fr;
  }
  .art-sidebar {
    order: -1;
  }
  .art-hero {
    min-height: 360px;
  }
  .art-hero-content h1 {
    font-size: 1.8rem;
  }
  .art-outer {
    padding: 40px 0 56px;
  }
  .art-main-img {
    margin-bottom: 32px;
  }
}
/* ============================================================
   BLOG ARTICLE PAGE — END
   ============================================================ */

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */
.art-listing-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.55;
}
.listing-outer {
  padding: 72px 0 96px;
}
.post-excerpt {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 16px;
}
.listing-empty {
  color: var(--slate);
  font-size: 0.95rem;
}
/* ============================================================
   BLOG LISTING PAGE — END
   ============================================================ */

/* ============================================================
   CONTACT CTA BLOCK
   ============================================================ */
.block-cta {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
  margin-top: 64px;
}
.block-cta-in {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.block-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  max-width: 700px;
}
.block-cta h2 .em {
  color: var(--cyan);
}
.block-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.block-cta-right p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .block-cta {
    padding: 56px 0;
    margin-top: 40px;
  }
  .block-cta-in {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* ============================================================
   CONTACT CTA BLOCK — END
   ============================================================ */
