/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: #F7F5F0;
  color: #1A1A2E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --navy:       #000080;
  --navy-deep:  #00004F;
  --navy-dark:  #06061C;
  --gold:       #D4AF37;
  --gold-light: #F0C845;
  --gold-dark:  #A87F25;
  --off-white:  #F7F5F0;
  --near-black: #0D0D0D;
  --text:       #1A1A2E;
  --text-muted: #5A5A7A;
  --border:     rgba(212,175,55,.15);
  --serif:      'Lora', Georgia, serif;
  --sans:       'Poppins', system-ui, sans-serif;
  --max:        1160px;
  --radius:     14px;
  --pad-section:100px;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.15;
  font-weight: 700;
}
.overline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--pad-section) 0; }
.section-header { margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(212,175,55,.45);
}
.btn-outline:hover {
  background: rgba(212,175,55,.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: var(--off-white);
}
.btn-navy:hover { background: #0000A0; transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* Store badge buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  background: #0D0D0D;
  color: #fff;
  border-radius: 10px;
  font-size: 12px;
  transition: all .2s;
  border: 1px solid rgba(255,255,255,.1);
}
.store-btn:hover { background: #222; transform: translateY(-1px); }
.store-btn .store-icon { font-size: 22px; line-height: 1; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn .store-text small { font-size: 9px; letter-spacing: .06em; opacity: .65; }
.store-btn .store-text strong { font-size: 13px; font-weight: 700; }
.store-btn-light {
  background: #F7F5F0;
  color: #0D0D0D;
  border-color: rgba(0,0,0,.1);
}
.store-btn-light:hover { background: #ece9e2; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(0,0,80,.95);
  backdrop-filter: blur(16px);
  border-color: rgba(212,175,55,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; }
.nav-logo-text {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .12em;
  background: linear-gradient(130deg, #F0C845, #D4AF37, #A87F25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(247,245,240,.8);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all .25s;
}
#nav-mobile {
  display: none;
  background: rgba(0,0,80,.98);
  border-top: 1px solid rgba(212,175,55,.12);
  padding: 20px 24px;
}
#nav-mobile.open { display: block; }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-links a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(247,245,240,.85);
  border-bottom: 1px solid rgba(212,175,55,.1);
  transition: color .2s;
}
.nav-mobile-links a:last-child { border-bottom: none; }
.nav-mobile-links a:hover { color: var(--gold); }
.nav-mobile-cta { margin-top: 20px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, #000060 0%, #000040 50%, #06061C 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(0,0,160,.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-content {}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(212,175,55,.7);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(130deg, #F0C845, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: rgba(247,245,240,.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-pillars {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(212,175,55,.42);
  margin-top: 36px;
}
.hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark img {
  width: min(340px, 90%);
  height: auto;
  filter: drop-shadow(0 0 80px rgba(212,175,55,.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(247,245,240,.3);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212,175,55,.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Apps Section ─────────────────────────────────────────────────────────── */
#apps { background: var(--off-white); }
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.app-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.app-card-banner {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.app-card-banner.clientele {
  background: linear-gradient(135deg, #000060 0%, #000090 60%, #0000C0 100%);
}
.app-card-banner.pharmascript {
  background: linear-gradient(135deg, #001A00 0%, #003300 60%, #004D00 100%);
}
.app-banner-icon {
  width: 96px;
  height: 96px;
  position: relative;
  z-index: 1;
}
.app-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.app-banner-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.app-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.app-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.app-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.app-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.app-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Blog Section ─────────────────────────────────────────────────────────── */
#blog { background: #EFECE4; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}
.post-card-img {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}
.post-card-img.brand  { background: linear-gradient(135deg, #000060, #000090); }
.post-card-img.app1   { background: linear-gradient(135deg, #000060, #0000B0); }
.post-card-img.app2   { background: linear-gradient(135deg, #001A00, #004D00); }
.post-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
.post-tag {
  position: relative;
  z-index: 1;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.post-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(90,90,122,.6);
}
.post-read-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s, gap .2s;
}
.post-read-link:hover { color: var(--gold-dark); gap: 9px; }

/* ── About Section ────────────────────────────────────────────────────────── */
#about {
  background: linear-gradient(155deg, #000060 0%, #000040 50%, #06061C 100%);
  position: relative;
  overflow: hidden;
}
#about .hero-bg-grid { opacity: .6; }
.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .section-title { color: var(--off-white); }
.about-content .section-sub { color: rgba(247,245,240,.6); }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.12);
  border-radius: 10px;
  padding: 20px;
  transition: border-color .25s, background .25s;
}
.pillar:hover {
  background: rgba(212,175,55,.06);
  border-color: rgba(212,175,55,.3);
}
.pillar-icon { font-size: 22px; margin-bottom: 10px; }
.pillar-name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--off-white);
  margin-bottom: 4px;
}
.pillar-desc { font-size: 12px; color: rgba(247,245,240,.45); line-height: 1.5; }
.about-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mark img { width: min(280px, 90%); opacity: .9; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--near-black);
  padding: 60px 24px 32px;
  border-top: 1px solid rgba(212,175,55,.08);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo img { width: 32px; height: 32px; }
.footer-brand-name {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .12em;
  background: linear-gradient(130deg, #F0C845, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(247,245,240,.35);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,245,240,.25);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(247,245,240,.5);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(247,245,240,.06);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(247,245,240,.22); }
.footer-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(212,175,55,.35);
}

/* ── Page Hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(155deg, #000060 0%, #000040 50%, #06061C 100%);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-bg-grid { opacity: .5; }
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); color: var(--off-white); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(247,245,240,.6); }

/* ── Blog List Page ───────────────────────────────────────────────────────── */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-list-section { background: var(--off-white); }

/* ── Blog Post Page ───────────────────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  padding: 80px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.post-content {}
.post-header { margin-bottom: 48px; }
.post-header-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.post-header-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-header-meta span::before {
  content: '·';
  margin-right: 16px;
  opacity: .4;
}
.post-header-meta span:first-child::before { display: none; }
.post-body {
  font-size: 16px;
  line-height: 1.85;
  color: #2A2A3E;
}
.post-body p { margin-bottom: 24px; }
.post-body h2 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  margin: 36px 0 12px;
}
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 36px 0;
  background: rgba(212,175,55,.04);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  font-family: var(--serif);
  line-height: 1.55;
}
.post-body ul {
  list-style: none;
  margin-bottom: 24px;
}
.post-body ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}
.post-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.post-sidebar { position: sticky; top: 100px; }
.post-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.post-sidebar-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--off-white);
  margin-bottom: 10px;
}
.post-sidebar-card p {
  font-size: 13px;
  color: rgba(247,245,240,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.post-cta-section {
  background: linear-gradient(135deg, #000060, #000090);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.post-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.post-cta-section h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--off-white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.post-cta-section p {
  font-size: 15px;
  color: rgba(247,245,240,.55);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.post-cta-section .btn-group {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ── Apps Page ────────────────────────────────────────────────────────────── */
.apps-detail { background: var(--off-white); }
.app-detail-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.app-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.app-detail-visual.clientele {
  background: linear-gradient(155deg, #000050 0%, #000090 100%);
}
.app-detail-visual.pharmascript {
  background: linear-gradient(155deg, #001500 0%, #004500 100%);
}
.app-detail-visual img {
  width: 140px;
  height: 140px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(212,175,55,.25));
}
.app-detail-info { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.app-detail-name {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}
.app-detail-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.app-detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.app-detail-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.app-detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.adf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { order: 2; }
  .hero-mark { order: 1; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-title { font-size: clamp(42px, 7vw, 62px); }
  .hero-mark img { width: min(240px, 70%); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-mark { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .app-detail-card { grid-template-columns: 1fr; }
  .app-detail-visual { min-height: 240px; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --pad-section: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(38px, 9vw, 56px); }
  .apps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .store-badges { flex-direction: column; }
}
