/* ═══════════════════════════════════════
   HOME.CSS — index.php
   ═══════════════════════════════════════ */

/* ─── Hero ─── */
section.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, var(--navy-light) 0%, var(--navy) 70%);
  position: relative;
  overflow: hidden;
  padding: 140px 32px 100px;
}
.hero .noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .glow {
  position: absolute; top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,165,92,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(44px, 6.5vw, 82px);
  color: #fff; line-height: 1.08;
  margin: 0 0 28px; font-weight: 400;
  max-width: 860px; position: relative;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p.sub {
  font-size: 18px; color: var(--text-light);
  max-width: 580px; line-height: 1.75;
  margin: 0 auto; font-weight: 400;
  position: relative;
}
.hero .cta-row {
  display: flex; gap: 16px; margin-top: 48px;
  flex-wrap: wrap; justify-content: center;
  position: relative;
}
.trust-strip {
  display: flex; gap: 48px; margin-top: 80px;
  flex-wrap: wrap; justify-content: center;
  position: relative;
}
.trust-item {
  font-size: 11px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em; font-weight: 500;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.trust-item::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); opacity: 0.4;
}

/* ─── Reimagined ─── */
section.reimagined {
  padding: 120px 32px;
  background: var(--warm-white);
}
.reimagined-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.reimagined h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--navy); line-height: 1.15;
  margin: 0 0 28px; font-weight: 400;
}
.reimagined .intro {
  font-size: 17px; color: var(--text-body);
  line-height: 1.85; max-width: 620px; margin: 0 auto 40px;
}
.reimagined .pullquote {
  font-family: var(--f-display);
  font-size: 22px; color: var(--navy);
  line-height: 1.6; max-width: 600px;
  margin: 0 auto; font-style: italic;
}

/* ─── Feature Index ─── */
.feature-index {
  max-width: 1100px; margin: 72px auto 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 40px rgba(10,22,40,0.06);
}
.feature-index a {
  display: block; padding: 32px 20px;
  background: var(--navy); text-decoration: none;
  text-align: center; transition: background 0.3s;
}
.feature-index a:hover { background: var(--navy-mid); }
.feature-index .num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--gold); opacity: 0.5; margin-bottom: 10px;
}
.feature-index .name {
  font-size: 12.5px; color: rgba(255,255,255,0.7);
  font-weight: 500; letter-spacing: 0.03em; line-height: 1.5;
}

/* ─── Feature Sections ─── */
section.feature {
  padding: 120px 32px;
  position: relative; overflow: hidden;
}
section.feature.dark { background: var(--navy); }
section.feature.light { background: var(--warm-white); }
section.feature.dark::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,165,92,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.feature-inner {
  max-width: 1100px; margin: 0 auto; position: relative;
}
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.feature-counter {
  font-family: var(--f-mono); font-size: 13px;
  color: var(--gold); opacity: 0.5; margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.feature h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1; margin: 0 0 20px; font-weight: 400;
}
.feature.dark h2 { color: #fff; }
.feature.light h2 { color: var(--navy); }
.feature h2 em { font-style: italic; color: var(--gold); }
.feature .subheadline {
  font-size: 19px; color: var(--gold);
  line-height: 1.5; margin: 0 0 24px; font-weight: 500;
}
.feature .body {
  font-size: 16px; line-height: 1.85;
  margin: 0; max-width: 540px;
}
.feature.dark .body { color: var(--text-light); }
.feature.light .body { color: var(--text-body); }
.feature .explore-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px; font-size: 13px;
  color: var(--gold); text-decoration: none; font-weight: 600;
  letter-spacing: 0.04em;
}
.feature .explore-link .arrow {
  font-size: 18px; transition: transform 0.3s;
}
.feature .explore-link:hover .arrow { transform: translateX(4px); }

.highlights { padding-top: 60px; }
.highlight-item {
  padding: 24px 28px; margin-bottom: 12px;
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.feature.dark .highlight-item { background: rgba(200,165,92,0.04); }
.feature.light .highlight-item { background: rgba(10,22,40,0.03); }
.highlight-title {
  font-size: 14.5px; font-weight: 600; margin-bottom: 4px;
}
.feature.dark .highlight-title { color: #fff; }
.feature.light .highlight-title { color: var(--navy); }
.highlight-desc { font-size: 13.5px; line-height: 1.6; }
.feature.dark .highlight-desc { color: var(--text-light); }
.feature.light .highlight-desc { color: var(--text-body); }

/* ─── Heritage Section ─── */
section.heritage {
  padding: 120px 32px; background: var(--cream);
  border-top: 1px solid rgba(10,22,40,0.04);
}
.heritage-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.heritage h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 58px);
  color: var(--navy); line-height: 1.1;
  margin: 0 0 24px; font-weight: 400;
}
.heritage h2 em { font-style: italic; color: var(--gold); }
.heritage p {
  font-size: 17px; color: var(--text-body);
  line-height: 1.85; max-width: 640px; margin: 0 auto 20px;
}
.heritage p.muted {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; max-width: 600px;
}
.heritage-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 64px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 40px rgba(10,22,40,0.06);
}
.heritage-stats .stat-card {
  padding: 40px 24px; background: var(--navy); text-align: center;
}
.heritage-stats .stat-label {
  font-size: 10px; color: var(--gold);
  letter-spacing: 0.2em; font-weight: 600; margin-bottom: 12px;
  text-transform: uppercase; opacity: 0.6;
}
.heritage-stats .stat-value {
  font-family: var(--f-display); font-size: 28px;
  color: #fff; margin-bottom: 6px;
}
.heritage-stats .stat-sub {
  font-size: 12px; color: rgba(255,255,255,0.35);
}

/* ─── Finishes ─── */
section.finishes {
  padding: 0px 32px 120px 32px; background: var(--navy);
}
.finishes-inner { max-width: 1000px; margin: 0 auto; }
.finishes-header { text-align: center; margin-bottom: 56px; }
.finishes-header .tag { justify-content: center; }
.finishes-header h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff; line-height: 1.1;
  margin: 0 0 16px; font-weight: 400;
}
.finishes-header h2 em { font-style: italic; color: var(--gold); }
.finishes-header p {
  font-size: 16px; color: var(--text-light);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}
.finishes-toggle {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 48px;
}
.finishes-toggle button {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; padding: 12px 32px;
  border-radius: 4px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.finishes-toggle button.active {
  background: var(--gold); color: var(--navy);
}
.finish-display {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.finish-preview {
  border-radius: 12px; overflow: hidden;
  min-height: 360px;
  display: flex; align-items: flex-end; padding: 32px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}
.finish-preview::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.finish-preview-inner { position: relative; z-index: 2; }

.finish-preview-label {
  font-size: 11px; color: #E8E4DC;
  letter-spacing: 0.15em; font-weight: 600; margin-bottom: 8px;
  text-transform: uppercase; opacity: 0.7;
}
.finish-preview-name {
  font-family: var(--f-display); font-size: 32px; color: #fff;
}
.finish-info { display: flex; flex-direction: column; justify-content: center; }
.finish-tagline {
  font-family: var(--f-display); font-size: 32px; color: #fff;
  margin: 0 0 16px; font-style: italic; font-weight: 400;
}
.finish-desc {
  font-size: 16px; color: var(--text-light);
  line-height: 1.8; margin: 0 0 28px;
}
.finish-note {
  font-size: 13px; color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* ─── Certified Network ─── */
section.certified-network {
  padding: 140px 32px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.certified-network::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,165,92,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.certified-network::after {
  content: ""; position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,165,92,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cert-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
}
.cert-header {
  text-align: center; max-width: 820px; margin: 0 auto 80px;
}
.cert-header .tag { justify-content: center; }
.cert-header h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  color: #fff; line-height: 1.1;
  margin: 0 0 24px; font-weight: 400;
  letter-spacing: -0.01em;
}
.cert-header h2 em {
  font-style: italic; color: var(--gold); display: block;
}
.cert-header p {
  font-size: 18px; color: var(--text-light);
  line-height: 1.7; max-width: 680px; margin: 0 auto;
  font-weight: 300;
}

/* Cert benchmarks */
.cert-standards {
  background: linear-gradient(135deg, rgba(200,165,92,0.05) 0%, rgba(10,22,40,0.5) 100%);
  border: 1px solid rgba(200,165,92,0.15);
  border-radius: 12px;
  padding: 56px 48px;
  margin-bottom: 80px;
  position: relative;
}
.cert-benchmarks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,165,92,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.cert-benchmark {
  background: var(--navy-deep);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.3s;
}
.cert-benchmark:hover { background: var(--navy-mid); }
.benchmark-number {
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px; font-weight: 400;
}
.benchmark-number sup {
  font-size: 0.5em; vertical-align: super; margin-left: 3px;
}
.benchmark-label {
  font-size: 12px; color: #fff;
  font-weight: 600; letter-spacing: 0.06em; margin-bottom: 6px;
}
.benchmark-sub {
  font-size: 11.5px; color: rgba(255,255,255,0.4);
  font-weight: 300; line-height: 1.5;
}

/* ─── Social Proof ─── */
section.social-proof {
  padding: 140px 32px;
  background: var(--warm-white);
  position: relative;
}
.sp-inner { max-width: 1200px; margin: 0 auto; }
.sp-header {
  max-width: 820px; margin: 0 auto 80px; text-align: center;
}
.sp-header .tag { justify-content: center; }
.sp-header h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy); line-height: 1.1;
  margin: 0 0 24px; font-weight: 400;
}
.sp-header h2 em { font-style: italic; color: var(--gold); }
.sp-header p {
  font-size: 17px; color: var(--text-body);
  line-height: 1.7; max-width: 580px; margin: 0 auto;
}

/* Featured testimonial */
.test-featured {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 0; margin-bottom: 32px;
  background: var(--navy); border-radius: 16px;
  overflow: hidden; transition: all 0.4s ease;
}
.test-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.15);
}
.tf-image {
  min-height: 360px; position: relative;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light), rgba(200,165,92,0.1));
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 32px;
}
.tf-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.5) 0%, transparent 50%);
}
.tf-car-badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 6px;
  background: rgba(200,165,92,0.15); border: 1px solid rgba(200,165,92,0.3);
  font-family: var(--f-mono); font-size: 10px;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase;
  width: fit-content;
}
.tf-specs {
  position: relative; z-index: 2; margin-top: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.tf-spec-tag {
  font-size: 10px; color: rgba(255,255,255,0.5);
  padding: 4px 10px; border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.tf-content {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.tf-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.tf-quote {
  font-family: var(--f-display); font-size: 24px;
  color: #fff; line-height: 1.45; font-style: italic;
  margin-bottom: 32px; font-weight: 400;
}
.tf-author-name {
  font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 4px;
}
.tf-author-detail {
  font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.tf-verified {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--gold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 8px;
  display: flex; align-items: center; gap: 6px;
}
.tf-verified::before {
  content: "\2713"; display: inline-flex;
  width: 16px; height: 16px; background: rgba(200,165,92,0.2);
  border-radius: 50%; align-items: center;
  justify-content: center; font-size: 8px;
}

/* Testimonial grid */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 80px;
}
.test-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: 12px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  transition: all 0.4s ease;
  position: relative;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.08);
  border-color: var(--gold);
}
.test-card::before {
  content: "\201C";
  position: absolute; top: 24px; right: 28px;
  font-family: var(--f-display); font-size: 72px;
  color: var(--gold); opacity: 0.1; line-height: 1;
  pointer-events: none;
}
.test-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.test-star {
  width: 16px; height: 16px; border-radius: 2px;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  font-size: 10px; color: var(--navy);
}
.test-quote {
  font-size: 15px; color: var(--text-body);
  line-height: 1.8; font-style: italic;
  flex: 1; margin-bottom: 28px;
}
.test-footer {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid rgba(10,22,40,0.06);
}
.test-author-name {
  font-size: 14px; color: var(--navy);
  font-weight: 600; margin-bottom: 2px;
}
.test-author-car { font-size: 12px; color: var(--text-muted); }
.test-badge {
  font-family: var(--f-mono); font-size: 9px;
  color: var(--gold); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(200,165,92,0.08);
  border: 1px solid rgba(200,165,92,0.15);
  white-space: nowrap;
}

/* Gallery */
.gallery-header { text-align: center; margin: 0 auto 48px; }
.gallery-header h3 {
  font-family: var(--f-display); font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy); line-height: 1.15; margin: 0 0 12px; font-weight: 400;
}
.gallery-header h3 em { font-style: italic; color: var(--gold); }
.gallery-header p {
  font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
}
.gallery-item {
  border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
}
.gallery-item:hover {
  transform: scale(1.02); z-index: 2;
  box-shadow: 0 16px 48px rgba(10,22,40,0.15);
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-fill {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.gallery-item:hover .gallery-fill { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--f-body); font-size: 12px;
  color: #fff; font-weight: 500;
}
.gallery-caption-sub {
  font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px;
}

/* Gallery fills */
.gf-1 { background: linear-gradient(135deg, #1a2a44, #2a3a5c, rgba(200,165,92,0.1)); }
.gf-2 { background: linear-gradient(135deg, #2a1a1a, #4a2a2a, rgba(200,165,92,0.08)); }
.gf-3 { background: linear-gradient(135deg, #0E1E36, #1a3254, rgba(200,165,92,0.12)); }
.gf-4 { background: linear-gradient(135deg, #1a2a20, #2a4a32, rgba(200,165,92,0.08)); }
.gf-5 { background: linear-gradient(135deg, #2a2a2a, #4a4a4a, rgba(200,165,92,0.1)); }
.gf-6 { background: linear-gradient(135deg, #3a3a4a, #1a1a2a, rgba(200,165,92,0.12)); }

/* ─── Compare ─── */
section.compare {
  padding: 120px 32px; background: var(--warm-white);
}
.compare-inner { max-width: 1100px; margin: 0 auto; }
.compare-header { margin-bottom: 48px; }
.compare-header h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--navy); line-height: 1.1;
  margin: 0 0 16px; font-weight: 400;
}
.compare-header h2 em { font-style: italic; color: var(--gold); }
.compare-header p {
  font-size: 16px; color: var(--text-body);
  max-width: 520px; line-height: 1.7;
}
.compare-table-wrap {
  overflow-x: auto; border-radius: 10px;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: 0 2px 32px rgba(10,22,40,0.04);
}
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 760px;
}
.compare-table th {
  padding: 16px 18px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  background: #F4F2ED;
  border-bottom: 2px solid rgba(10,22,40,0.06);
}
.compare-table th.sppf {
  color: var(--navy); background: rgba(200,165,92,0.1);
}
.compare-table td {
  padding: 13px 18px; font-size: 12.5px;
  font-weight: 400; color: var(--text-muted);
  background: #fff; line-height: 1.5;
  border-bottom: 1px solid rgba(10,22,40,0.04);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.compare-table td.sppf {
  background: rgba(200,165,92,0.03); color: var(--navy);
}

/* ─── App Preview ─── */
section.app-preview {
  padding: 120px 32px; background: var(--navy);
  border-top: 1px solid rgba(200,165,92,0.08);
}
.app-preview-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px;
  align-items: center;
}
.app-phone-mini {
  width: 200px; height: 400px; margin: 0 auto;
  border-radius: 28px; border: 2px solid rgba(200,165,92,0.25);
  background: linear-gradient(170deg, #111820, #0a1018);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.app-phone-mini::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 80px; height: 20px;
  background: #0a1018; border-radius: 0 0 12px 12px;
}
.app-phone-content {
  text-align: center; padding: 40px 20px 20px;
}
.app-phone-logo {
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: 0.12em; margin-bottom: 16px;
}
.app-phone-score {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--gold); margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 28px; color: var(--gold);
}
.app-phone-label {
  font-family: var(--f-mono); font-size: 8px; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7;
}
.app-phone-nfc {
  margin-top: 20px; padding: 10px 14px; border-radius: 10px;
  background: rgba(200,165,92,0.1); border: 1px solid rgba(200,165,92,0.2);
  font-family: var(--f-mono); font-size: 8px; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.app-info h2 {
  font-family: var(--f-display); font-size: clamp(34px, 4.5vw, 52px);
  color: #fff; line-height: 1.1; margin: 0 0 20px; font-weight: 400;
}
.app-info h2 em { font-style: italic; color: var(--gold); }
.app-info p {
  font-size: 16px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 16px;
}
.app-features-mini {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px; margin-bottom: 32px;
}
.app-feat-chip {
  padding: 8px 16px; border-radius: 20px;
  background: rgba(200,165,92,0.06);
  border: 1px solid rgba(200,165,92,0.15);
  font-size: 12px; color: var(--gold); font-weight: 500;
}
.app-link {
  font-size: 13px; color: var(--gold); font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}
.app-link .arrow { transition: transform 0.3s; }
.app-link:hover .arrow { transform: translateX(4px); }

/* ─── Journal Teaser ─── */
section.journal-teaser {
  padding: 120px 32px; background: var(--warm-white); color: var(--navy);
}
.jt-inner { max-width: 1200px; margin: 0 auto; }
.jt-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.jt-header h2 {
  font-family: var(--f-display); font-size: clamp(32px, 4vw, 48px);
  color: var(--navy); line-height: 1.1; margin: 0; font-weight: 400;
}
.jt-header h2 em { font-style: italic; color: var(--gold); }
.jt-view-all {
  font-size: 13px; color: var(--gold); font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.jt-view-all .arrow { transition: transform 0.3s; }
.jt-view-all:hover .arrow { transform: translateX(4px); }
.jt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.jt-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(10,22,40,0.04);
  text-decoration: none; display: block;
  transition: all 0.4s ease;
}
.jt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,22,40,0.08);
  border-color: var(--gold);
}
.jt-thumb { height: 180px; position: relative; overflow: hidden; }
.jt-thumb-inner {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.jt-card:hover .jt-thumb-inner { transform: scale(1.04); }
.jt-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--f-mono); font-size: 9px; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(10,22,40,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,165,92,0.2);
}
.jt-body { padding: 24px 22px; }
.jt-date {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 8px;
}
.jt-title {
  font-family: var(--f-display); font-size: 20px;
  color: var(--navy); line-height: 1.2; margin-bottom: 10px;
}
.jt-excerpt {
  font-size: 13px; color: var(--text-body); line-height: 1.65;
}

/* ─── FAQ ─── */
section.faq { padding: 120px 32px; background: var(--warm-white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy); line-height: 1.1;
  margin: 0 0 48px; font-weight: 400;
}
.faq-item { border-bottom: 1px solid rgba(10,22,40,0.07); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-body);
}
.faq-question-text {
  font-size: 15.5px; color: var(--navy);
  font-weight: 500; padding-right: 20px;
}
.faq-icon {
  font-size: 20px; color: var(--gold); font-weight: 300;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.22,1,.36,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 14.5px; color: var(--text-body);
  line-height: 1.8; margin: 0; padding: 0 0 22px;
}

/* ─── Contact ─── */
section.contact {
  padding: 120px 32px;
  background: linear-gradient(175deg, var(--navy) 0%, #0C1F38 100%);
  text-align: center;
}
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-inner .tag { justify-content: center; }
.contact h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 56px);
  color: #fff; line-height: 1.1;
  margin: 0 0 20px; font-weight: 400;
}
.contact h2 em { font-style: italic; color: var(--gold); }
.contact p.intro {
  font-size: 16px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 40px;
}
.contact-alt {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
.contact-alt a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-alt a:hover {
  color: var(--gold);
}
.contact-alt-label {
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.contact-alt-row {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.contact-alt-item {
  font-size: 14px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 6px;
}

/* ─── Home Responsive ─── */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .highlights { padding-top: 0; }
  /* ... existing rules ... */
  .feature-index {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .feature-index::-webkit-scrollbar { display: none; }
  .finish-display { grid-template-columns: 1fr; gap: 24px; }
  .heritage-stats { grid-template-columns: 1fr; }
  .test-featured { grid-template-columns: 1fr; }
  .tf-image { min-height: 240px; }
  .tf-content { padding: 36px 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item.span-2 { grid-column: span 2; }
  .cert-benchmarks { grid-template-columns: repeat(2, 1fr); }
  .app-preview-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-phone-mini { width: 160px; height: 320px; }
  .jt-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 20px; }
}
@media (max-width: 560px) {
  .hero { padding: 120px 20px 60px; }
  .feature-index { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .gallery-item.span-2 { grid-column: span 1; }
  .cert-benchmarks { grid-template-columns: 1fr; }

  .feature-index {
    grid-template-columns: repeat(5, 75vw);
    gap: 8px;
  }
  .feature-index a {
    padding: 24px 16px;
  }
  .feature-index .name {
    font-size: 12px;
    white-space: normal;
  }
  .intro-video-content { padding-bottom: 20px; }
}


/* ─── Intro Video ─── */
section.intro-video {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 80px;
}
.intro-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.intro-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.65) 100%);
  pointer-events: none;
}
.intro-video-content {
  position: relative; z-index: 2;
  text-align: center;
}
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: rgba(255,255,255,0.55);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.3s;
}
.scroll-cue:hover { color: var(--gold); }
.scroll-arrow {
  font-size: 20px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.intro-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.25) 0%, rgba(10,22,40,0.65) 100%);
  pointer-events: none;
}
.intro-video-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}



/* ─── Feature Index Icons ─── */
.fi-icon {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.feature-index a:hover .fi-icon { opacity: 1; }
.fi-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(1.2);
}

/* ─── Feature Display (Alternating Layout) ─── */
.feature-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-display.reverse .feature-image { order: 2; }
.feature-display.reverse .feature-content { order: 1; }

.feature-image {
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  position: relative;
}
.feature-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  z-index: 1;
}
.feature-image-inner {
  position: relative; z-index: 2;
}
.feature-image-inner .feature-counter {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  opacity: 0.6;
}
.feature-image-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 400;
}
.feature-image-inner h2 em {
  font-style: italic;
  color: var(--gold);
}
.feature-image-inner .feature-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* Gradient fills for each feature image */
.fi-1 { background: linear-gradient(135deg, #0E1E36 0%, #1a3254 40%, rgba(200,165,92,0.08) 100%); }
.fi-2 { background: linear-gradient(135deg, #1a1a2a 0%, #2a2a3a 40%, rgba(200,165,92,0.12) 100%); }
.fi-3 { background: linear-gradient(135deg, #132744 0%, #1a3a5a 40%, rgba(200,165,92,0.06) 100%); }
.fi-4 { background: linear-gradient(135deg, #1a2030 0%, #2a3a4a 40%, rgba(200,165,92,0.12) 100%); }
.fi-5 { background: linear-gradient(135deg, #0a1628 0%, #1a2a44 40%, rgba(200,165,92,0.08) 100%); }

/* Feature content side */
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-content .tag { margin-bottom: 16px; }
.feature-content .body {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 100%;
}
.feature.dark .feature-content .body { color: var(--text-light); }
.feature.light .feature-content .body { color: var(--text-body); }

/* Compact bullet list */
.feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.feature-points li {
  padding: 10px 0 10px 18px;
  position: relative;
  font-size: 13px;
  line-height: 1.55;
}
.feature-points li:not(:last-child) {
  border-bottom: 1px solid rgba(200,165,92,0.06);
}
.feature.light .feature-points li:not(:last-child) {
  border-color: rgba(10,22,40,0.06);
}
.feature-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.feature-points strong { font-weight: 600; }
.feature.dark .feature-points li { color: var(--text-light); }
.feature.light .feature-points li { color: var(--text-body); }
.feature.dark .feature-points strong { color: #fff; }
.feature.light .feature-points strong { color: var(--navy); }

/* Responsive */
@media (max-width: 900px) {
  .feature-display {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-display.reverse .feature-image,
  .feature-display.reverse .feature-content { order: unset; }
  .feature-image { min-height: 280px; }
}


/* ═══ PARALLAX STRIP ═══ */
.parallax-wrap {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
}
.parallax-img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 160%;
  top: -30%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  pointer-events: none;
  display: block;
}
.parallax-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.parallax-fade.to-navy {
  background: linear-gradient(180deg,
    var(--navy) 0%, transparent 20%, transparent 80%, var(--navy) 100%);
}
.parallax-fade.to-cream {
  background: linear-gradient(180deg,
    var(--cream) 0%, transparent 20%, transparent 80%, var(--cream) 100%);
}

/* Split section helpers */
.no-pad-bottom { padding-bottom: 0; }
.no-pad-top { padding-top: 0; }

/* ═══ FULL-WIDTH BG VARIANT ═══ */
section.bg-full {
  position: relative;
  overflow: hidden;
}
.bg-full .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  z-index: 1;
  pointer-events: none;
}
.bg-full > * {
  position: relative;
  z-index: 2;
}
section.bg-full h2 { color: #fff; }
section.bg-full h2 em { color: var(--gold); font-style: italic; }
section.bg-full p { color: rgba(255, 255, 255, 0.6); }
section.bg-full p.muted { color: rgba(255, 255, 255, 0.4); }
section.bg-full.heritage { border-top: none; }

/* Glass stat cards */
.heritage-stats.glass { box-shadow: none; }
.heritage-stats.glass .stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
}
.heritage-stats.glass .stat-value { color: rgba(255, 255, 255, 0.9); }
.heritage-stats.glass .stat-sub { color: rgba(255, 255, 255, 0.35); }

/* Glass benchmark cards */
.cert-benchmarks.glass .cert-benchmark {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
}
.cert-standards.glass-wrap {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.cert-standards.glass-wrap .cert-benchmarks {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}


/* ═══ PROCESS VISUAL — Individual bg per step ═══ */
.process-visual {
  padding: 120px 32px;
  background: var(--navy);
  overflow: hidden;
}
.pv-container {
  max-width: 1200px;
  margin: 0 auto;
}
.pv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pv-step {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  cursor: default;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1),
              box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}
.pv-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* Background image */
.pv-step-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.pv-step:hover .pv-step-bg {
  transform: scale(1.06);
}
/* Overlay gradient */
.pv-step-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.1) 0%,
    rgba(10, 22, 40, 0.4) 100%);
  z-index: 1;
}
/* Content */
.pv-step-content {
  position: relative;
  z-index: 2;
}
.pv-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  opacity: 0.6;
}
.pv-title {
  font-family: var(--f-display);
  font-size: 28px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.pv-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 900px) {
  .pv-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-step { min-height: 360px; }
}
@media (max-width: 560px) {
  .pv-grid { grid-template-columns: 1fr; }
  .pv-step { min-height: 300px; }
}


.pv-explore-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  background: rgba(200, 165, 92, 0.08);
  border: 1px solid rgba(200, 165, 92, 0.2);
  transition: all 0.3s;
}
.pv-explore-link:hover {
  background: var(--gold);
  color: var(--navy);
}
.pv-explore-link span {
  transition: transform 0.3s;
}
.pv-explore-link:hover span {
  transform: translateX(4px);
}

/* ─── Explore Link — Base (works outside .feature sections) ─── */
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.explore-link .arrow {
  font-size: 18px;
  transition: transform 0.3s;
}
.explore-link:hover .arrow {
  transform: translateX(4px);
}

/* ─── Feature Image Title Color Overrides ─── */
.feature-image-inner h2.title-light { color: #fff; }
.feature-image-inner h2.title-dark { color: var(--navy); }

/* ─── Smaller stat/benchmark cards ─── */
.heritage-stats .stat-card {
  padding: 28px 24px;
}
.heritage-stats .stat-value {
  font-size: 24px;
  margin-bottom: 4px;
}
.heritage-stats .stat-label {
  margin-bottom: 8px;
}
.cert-benchmark {
  padding: 24px 24px;
}
.benchmark-number {
  font-size: 36px;
  margin-bottom: 6px;
}
.benchmark-label {
  margin-bottom: 4px;
}

.partner-intro {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 8px;
}

/* ─── Gallery Image ─── */
.gallery-fill img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.22,1,.36,1);
}
.lightbox.open {
  opacity: 1; pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 8px; object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.lightbox.open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute; top: 28px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; background: none;
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.lightbox-caption {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.lightbox-caption-title {
  font-size: 15px; color: #fff; font-weight: 500;
}
.lightbox-caption-sub {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ─── Video Grain Overlay ─── */
.video-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2' height='2'%3E%3Crect width='1' height='1' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 2px 2px;
}
/* ─── Intro Video Responsive ─── */
@media (max-width: 900px) {
  section.intro-video {
    min-height: 100vh;
    min-height: 100svh;
  }
  .intro-video-bg {
    object-position: center center;
  }
}
@media (max-width: 560px) {
  .intro-video-content {
    padding-bottom: 40px;
  }
}

/* ─── Intro Video ─── */
.intro-video-desktop {
  display: block;
}
.intro-video-mobile {
  display: none;
}

@media (max-width: 900px) {
  .intro-video-desktop {
    display: none;
  }
  .intro-video-mobile {
    display: block;
  }  
}



/* Remove dash before tags */
.tag::before {
  display: none !important;
}

/* Triple tag font size */
.tag {
  font-size: 20px !important;
  letter-spacing: 1px;
}