
:root {
  --ink: #111827;
  --muted: #627089;
  --green: #063b2b;
  --green-2: #0f5f3d;
  --gold: #d6a936;
  --line: rgba(9, 62, 42, .16);
  --soft: #f5f7f1;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site-page {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(214, 169, 54, .08), transparent 18%, transparent 82%, rgba(35, 129, 95, .10)),
    repeating-linear-gradient(0deg, rgba(9, 62, 42, .045) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(9, 62, 42, .045) 0 1px, transparent 1px 40px),
    #f4f7f1;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 14px clamp(18px, 3vw, 54px);
  background: rgba(31, 39, 36, .98);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid #8ad6ad;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.brand strong,
.brand span { display: block; }
.brand strong { font-size: 18px; letter-spacing: .08em; }
.brand span { font-size: 12px; color: rgba(255,255,255,.72); margin-top: 4px; }

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.nav-pill a {
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-pill a:hover,
.nav-pill a.active { background: rgba(255,255,255,.08); color: white; }

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.header-link {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wa-btn,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.wa-btn,
.primary-btn {
  color: white;
  background: linear-gradient(135deg, #22985d, #075c37);
  box-shadow: 0 18px 40px rgba(8, 92, 55, .22);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  color: var(--ink);
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  padding: clamp(68px, 8vw, 106px) 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #68748a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.03;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.tag {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214,169,54,.45);
  background: rgba(255, 215, 62, .25);
  color: #082d20;
  font-size: 13px;
  font-weight: 900;
}

.visual-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--green);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(5, 42, 31, .16);
}

.visual-card img,
.media-card img,
.article-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card img { height: 280px; }
.visual-text {
  padding: 24px;
  color: white;
  background: #063b2b;
}
.visual-text .eyebrow { color: var(--gold); margin-bottom: 10px; }
.visual-text h3 { margin-bottom: 8px; color: white; }
.visual-text p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.55; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 54px;
}

.stat-card,
.info-card,
.article-card,
.calc-card,
.partner-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(26, 54, 43, .08);
}

.stat-card {
  min-height: 108px;
  padding: 22px;
}

.stat-card small {
  display: block;
  color: var(--green-2);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 60px 0;
}

.section-card {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 60px rgba(19, 60, 45, .08);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #063b2b;
  transition: transform .22s ease, box-shadow .22s ease;
}

.media-card:hover {
  transform: scale(1.08);
  z-index: 3;
  box-shadow: 0 24px 60px rgba(6, 59, 43, .24);
}

.media-card img { height: 150px; }
.media-caption {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: white;
  font-weight: 900;
  line-height: 1.25;
}

.steps,
.article-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.partner-card {
  padding: 24px;
}

.num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #063b2b;
  font-size: 12px;
  font-weight: 900;
}

.info-card p,
.partner-card p {
  color: var(--muted);
  line-height: 1.55;
}

.dark-band {
  margin: 60px 0;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 34px;
  background: radial-gradient(circle at 80% 10%, rgba(126, 210, 161, .22), transparent 36%), linear-gradient(135deg, #062e22, #123d24);
  color: white;
  overflow: hidden;
}

.dark-band h2,
.dark-band h3 { color: white; }
.dark-band p { color: rgba(255,255,255,.78); line-height: 1.65; }

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.app-grid h2 {
  max-width: 560px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.phone-panel {
  position: relative;
  min-height: 390px;
}

.app-window {
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.035));
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.app-window.one { width: 68%; height: 210px; left: 0; top: 10px; padding: 28px; }
.app-window.two { width: 58%; height: 210px; right: 0; top: 82px; padding: 24px; }
.app-window.three { width: 72%; right: 8%; bottom: 0; padding: 24px; }

.chart-line {
  height: 70px;
  margin-top: 28px;
  border-bottom: 3px solid rgba(214,169,54,.72);
  transform: skewY(-12deg);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 82px;
}
.mini-bars span { width: 28px; border-radius: 12px 12px 0 0; background: linear-gradient(#91e4ad, #14935d); }

.article-hero {
  padding: 74px 0 40px;
}

.article-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 4.4vw, 66px);
}

.article-grid {
  padding-bottom: 72px;
}

.article-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 66px rgba(6, 59, 43, .16);
}

.article-card.dark {
  background: #063b2b;
  color: white;
}

.article-card img {
  height: 150px;
  background: #e8f0ea;
}

.article-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.article-card .eyebrow { font-size: 11px; color: var(--green-2); margin-bottom: 16px; }
.article-card.dark .eyebrow { color: var(--gold); }
.article-card p { color: var(--muted); line-height: 1.55; }
.article-card.dark p { color: rgba(255,255,255,.78); }
.read-more { margin-top: auto; color: var(--green-2); font-weight: 900; }
.article-card.dark .read-more { color: white; }

.article-layout {
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 24px;
}

.article-layout h1 {
  font-size: clamp(38px, 4.2vw, 64px);
}

.article-layout p,
.article-layout li {
  color: #4d5c73;
  font-size: 18px;
  line-height: 1.75;
}

.article-layout img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 28px;
  margin: 28px 0 34px;
  box-shadow: 0 24px 62px rgba(6, 59, 43, .12);
}

.article-layout h2 {
  margin-top: 44px;
  font-size: clamp(28px, 3vw, 42px);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: 30px;
  border-radius: 26px;
  background: #063b2b;
  color: white;
}

.cta-panel p { margin: 0; color: rgba(255,255,255,.78); }

.calc-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .9fr);
  gap: 44px;
  align-items: start;
  padding: 72px 0;
}

.calc-card {
  padding: 30px;
}

.calc-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.calc-card input,
.calc-card select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 800;
}

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.calc-result {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  background: #e7f5ec;
}

.option-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 28px;
}

.option-links a {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  transition: transform .18s ease, box-shadow .18s ease;
}

.option-links a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(6,59,43,.14);
}

.option-links strong { display:block; margin-bottom: 10px; font-size: 18px; }
.option-links span { color: var(--green-2); font-weight: 900; font-size: 13px; }

.rent-terms {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.rent-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.rent-row.highlight {
  padding: 18px;
  border: 1px solid rgba(34, 152, 93, .25);
  border-radius: 18px;
  background: #e8f5ee;
}

.rent-row span { color: var(--muted); font-size: 18px; }
.rent-row strong { font-size: 18px; }

.footer {
  margin-top: 70px;
  padding: 44px 24px;
  background: #08291f;
  color: rgba(255,255,255,.68);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr; }
  .nav-pill { overflow-x: auto; justify-content: flex-start; }
  .header-actions { justify-content: flex-start; }
  .hero, .split, .app-grid, .calc-section { grid-template-columns: 1fr; }
  .stats, .steps, .article-grid, .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-grid { grid-template-columns: 1fr; }
  .media-card:hover { transform: none; }
}

@media (max-width: 640px) {
  .page-shell { padding: 0 16px; }
  h1 { font-size: 38px; }
  .stats, .steps, .article-grid, .partner-grid, .option-links, .calc-fields { grid-template-columns: 1fr; }
  .visual-card img { height: 230px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}


/* Clean rebuild layer: fixes broken generated pages without touching the main DOS GROUP hero. */
.sub-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  padding: 18px clamp(24px, 4vw, 64px);
  background: rgba(35, 42, 39, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
}
.sub-header .brand { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 14px; }
.sub-header .brand-mark { width: 46px; height: 46px; border-radius: 16px; border: 2px solid #8fd5af; display: grid; place-items: center; font-weight: 900; }
.sub-header .brand strong { display: block; letter-spacing: .04em; }
.sub-header .brand span span { display: block; color: rgba(255,255,255,.72); font-size: 13px; margin-top: 4px; }
.sub-header .nav-pill { justify-self: center; display: flex; align-items: center; gap: 4px; padding: 8px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); box-shadow: inset 0 1px rgba(255,255,255,.06); }
.sub-header .nav-pill a { color: rgba(255,255,255,.86); text-decoration: none; font-size: 13px; font-weight: 900; letter-spacing: .03em; padding: 13px 20px; border-radius: 999px; white-space: nowrap; }
.sub-header .nav-pill a.active, .sub-header .nav-pill a:hover { background: rgba(255,255,255,.10); color: #fff; }
.sub-header .header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.sub-header .header-link { color: rgba(255,255,255,.85); text-decoration: none; font-size: 13px; font-weight: 900; letter-spacing: .04em; padding: 13px 18px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.sub-header .wa-btn { text-decoration: none; color: #fff; font-weight: 900; padding: 14px 24px; border-radius: 999px; background: linear-gradient(135deg, #239a63, #0f6f42); box-shadow: 0 18px 45px rgba(13,112,70,.28); }

.site-page, .articles-page, .partnership-page, .article-detail {
  margin: 0;
  color: #111827;
  background:
    linear-gradient(90deg, rgba(215,185,92,.18), transparent 18%, transparent 82%, rgba(68,151,126,.16)),
    repeating-linear-gradient(0deg, rgba(9,55,40,.055) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(9,55,40,.045) 0 1px, transparent 1px 44px),
    #f4f7f1;
  overflow-x: hidden;
}
.page-shell { width: min(1180px, calc(100vw - 48px)); margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(66px, 8vw, 110px) 0 56px;
}
.eyebrow, .article-kicker { margin: 0 0 14px; color: #667187; font-weight: 900; letter-spacing: .28em; font-size: 14px; text-transform: uppercase; }
.hero h1, .article-hero h1, .hub-hero h1, .partner-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}
.lead, .hub-hero p, .partner-hero p, .article-hero p { max-width: 760px; margin: 24px 0 0; color: #5d6b82; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.primary-btn, .secondary-btn, .article-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}
.primary-btn, .article-cta { background: linear-gradient(135deg, #20945d, #0d653d); color: #fff; box-shadow: 0 18px 38px rgba(16,113,69,.22); }
.secondary-btn { color: #101827; background: transparent; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-tags span, .tag-pill { display: inline-flex; align-items: center; min-height: 38px; padding: 0 16px; border-radius: 999px; border: 1px solid #d7ba50; background: #fff4bf; color: #063d2b; font-size: 13px; font-weight: 900; }

.visual-card {
  overflow: hidden;
  border-radius: 28px;
  background: #063524;
  border: 1px solid rgba(7,63,44,.18);
  box-shadow: 0 35px 80px rgba(9,51,38,.15);
}
.visual-card img { display: block; width: 100%; height: 320px; object-fit: cover; filter: brightness(1.06) saturate(1.04); }
.visual-caption { min-height: 142px; padding: 28px; background: #073a28; color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.visual-caption small { color: #e1bd3e; font-weight: 900; letter-spacing: .18em; }
.visual-caption strong { font-size: 24px; line-height: 1.18; }
.visual-caption span { color: rgba(255,255,255,.78); line-height: 1.5; }

.rate-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 6px 0 48px; }
.rate-card, .step-card, .article-card, .partner-card, .info-panel {
  border: 1px solid rgba(8,70,48,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 65px rgba(24,52,42,.08);
}
.rate-card { padding: 22px 24px; }
.rate-card small { display: block; color: #087049; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.rate-card strong { display: block; margin-top: 10px; font-size: 22px; }

.split-block, .feature-block, .closing-panel { margin: 34px 0; padding: clamp(34px, 5vw, 64px); border-radius: 30px; background: rgba(255,255,255,.82); border: 1px solid rgba(8,70,48,.10); box-shadow: 0 28px 80px rgba(19,59,44,.08); }
.split-block { display: grid; grid-template-columns: .9fr 1.25fr; gap: 38px; align-items: center; }
.split-block h2, .feature-block h2, .closing-panel h2 { margin: 0 0 18px; font-size: clamp(30px, 3.4vw, 48px); line-height: 1.08; }
.split-block p, .feature-block p, .closing-panel p { color: #5d6b82; font-size: 17px; line-height: 1.65; }
.media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.media-card { display: flex; flex-direction: column; overflow: visible; transition: transform .25s ease; }
.media-card:hover { transform: translateY(-6px); z-index: 5; }
.media-card img { width: 100%; height: 168px; object-fit: cover; border-radius: 18px 18px 0 0; transition: transform .28s ease, box-shadow .28s ease; transform-origin: center; }
.media-card:hover img { transform: scale(1.24); box-shadow: 0 28px 70px rgba(8,49,35,.25); }
.media-caption { min-height: 74px; display: flex; align-items: center; padding: 16px; background: #063d2b; color: #fff; border-radius: 0 0 18px 18px; font-weight: 900; }
.step-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.step-card { min-height: 170px; padding: 24px; }
.step-card small { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; background: #d9ad32; color: #062f22; font-weight: 900; }
.step-card h3 { margin: 24px 0 10px; font-size: 22px; line-height: 1.15; }
.step-card p { margin: 0; color: #5d6b82; line-height: 1.55; }

.terms-card { padding: 30px; max-width: 610px; }
.terms-row { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(8,70,48,.12); align-items: center; }
.terms-row:last-of-type { border-bottom: 0; }
.terms-row span { color: #5d6b82; font-size: 19px; }
.terms-row strong { font-size: 20px; }

.dark-cta { margin: 56px 0 0; border-radius: 32px; padding: clamp(36px, 5vw, 70px); color: #fff; background: linear-gradient(135deg, #052a1e, #17442d); display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; overflow: hidden; }
.dark-cta img { width: 100%; height: 320px; object-fit: cover; border-radius: 24px; opacity: .58; filter: saturate(.95) brightness(.95); }
.dark-cta h2 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.05; }
.dark-cta p { color: rgba(255,255,255,.84); line-height: 1.7; font-size: 18px; }

.hub-hero, .partner-hero, .article-hero { width: min(1060px, calc(100vw - 48px)); margin: 0 auto; padding: clamp(78px, 9vw, 116px) 0 44px; }
.article-grid { width: min(1180px, calc(100vw - 48px)); margin: 0 auto 80px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.article-card { display: flex; flex-direction: column; min-height: 430px; padding: 20px; color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(9,56,40,.16); }
.article-card.dark { background: #053625; color: #fff; }
.article-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 16px; background: #e5eee8; }
.article-card small { margin-top: 22px; color: #0b7a4f; font-weight: 900; letter-spacing: .16em; }
.article-card.dark small { color: #e0b83f; }
.article-card h3 { margin: 18px 0 10px; font-size: 24px; line-height: 1.12; }
.article-card p { color: #5d6b82; line-height: 1.55; }
.article-card.dark p { color: rgba(255,255,255,.8); }
.article-card strong { margin-top: auto; color: #04724a; }
.article-card.dark strong { color: #fff; }
.article-content { width: min(860px, calc(100vw - 48px)); margin: 0 auto 90px; padding: 38px; border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: 0 25px 70px rgba(14,52,39,.08); }
.article-cover { width: 100%; height: 360px; object-fit: cover; border-radius: 24px; margin-bottom: 28px; }
.article-content h2 { font-size: 32px; margin: 34px 0 12px; }
.article-content p, .article-content li { color: #4d5f75; font-size: 18px; line-height: 1.72; }

.partner-grid { width: min(1120px, calc(100vw - 48px)); margin: 0 auto 80px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.partner-card { padding: 28px; min-height: 230px; }
.partner-card h3 { margin: 0 0 14px; font-size: 26px; }
.partner-card p { color: #5d6b82; line-height: 1.62; }

@media (max-width: 980px) {
  .sub-header { grid-template-columns: 1fr; justify-items: start; }
  .sub-header .nav-pill { justify-self: stretch; overflow-x: auto; max-width: calc(100vw - 48px); }
  .sub-header .header-actions { justify-self: start; flex-wrap: wrap; }
  .hero, .split-block, .dark-cta { grid-template-columns: 1fr; }
  .rate-strip, .step-grid, .article-grid, .partner-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .page-shell, .hub-hero, .partner-hero, .article-hero, .article-content, .article-grid, .partner-grid { width: min(100% - 28px, 1180px); }
  .hero h1, .article-hero h1, .hub-hero h1, .partner-hero h1 { font-size: 38px; }
  .rate-strip, .step-grid, .article-grid, .partner-grid, .media-grid { grid-template-columns: 1fr; }
}

/* Unified top header for service pages: same shell as the main DOS GROUP page. */
.site-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  min-height: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(10, 16, 18, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-page .brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 224px;
  color: #ffffff;
  text-decoration: none;
}

.site-page .brand > span {
  margin-top: 0;
  color: inherit;
  font-size: inherit;
}

.site-page .brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  border: 2px solid rgba(159, 224, 184, 0.78);
  background: rgba(31, 122, 77, 0.18);
  border-radius: 16px;
}

.site-page .brand strong,
.site-page .brand small {
  display: block;
}

.site-page .brand strong {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.site-page .brand small {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.site-page .nav {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  max-width: min(760px, 52vw);
  padding: 6px;
  margin: 0 18px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-page .nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-page .nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: #9fe0b8;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-page .nav a:hover,
.site-page .nav a[aria-current="page"],
.site-page .nav a.is-active {
  color: #ffffff;
  background: rgba(159, 224, 184, 0.1);
}

.site-page .nav a:hover::after,
.site-page .nav a[aria-current="page"]::after,
.site-page .nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-page .header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: max-content;
}

.site-page .investor-login {
  position: relative;
  display: inline-grid;
  min-height: 46px;
  align-content: center;
  min-width: 164px;
  padding: 0 18px;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  background:
    radial-gradient(circle at 84% 16%, rgba(159, 224, 184, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(159, 224, 184, 0.22);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-page .investor-login::after {
  position: absolute;
  top: -36%;
  bottom: -36%;
  left: -54%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: investorLoginSheen 5.2s ease-in-out infinite;
}

.site-page .investor-login:hover {
  transform: translateY(-2px);
  background: rgba(159, 224, 184, 0.1);
  border-color: rgba(159, 224, 184, 0.42);
}

.site-page .investor-login span,
.site-page .investor-login strong {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.05;
}

.site-page .investor-login span {
  color: #9fe0b8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-page .investor-login strong {
  margin-top: 3px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.site-page .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 44px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
  background: linear-gradient(135deg, #2a9b63, #127649);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(18, 118, 73, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-page .header-cta:hover {
  transform: translateY(-2px);
}

@keyframes investorLoginSheen {
  0%,
  55% {
    left: -56%;
    opacity: 0;
  }

  66% {
    opacity: 1;
  }

  82%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .site-page .site-header {
    gap: 12px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-page .brand {
    min-width: 188px;
  }

  .site-page .brand small {
    display: none;
  }

  .site-page .nav {
    max-width: none;
    margin: 0 8px;
  }

  .site-page .nav a {
    padding: 0 9px;
    font-size: 11px;
  }

  .site-page .header-cta {
    min-width: 102px;
    padding: 0 16px;
  }
}

@media (max-width: 1050px) {
  .site-page .nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-page .site-header {
    align-items: flex-start;
  }

  .site-page .header-cta {
    display: none;
  }
}
