﻿:root {
  --bg:          #05141D;
  --bg-2:        #071E2B;
  --bg-card:     #091C29;
  --bg-card-h:   #0C2333;
  --green:       #1B4D3E;
  --gold:        #C8A86B;
  --gold-l:      #DFBE88;
  --gold-dim:    rgba(200,168,107,0.14);
  --gold-glow:   rgba(200,168,107,0.22);
  --text:        #EDE9E1;
  --text-2:      #8BA5B5;
  --text-3:      #4E6878;
  --border:      rgba(255,255,255,0.07);
  --border-g:    rgba(200,168,107,0.2);
  --r:           18px;
  --r-s:         10px;
  --t:           all 0.38s cubic-bezier(.4,0,.2,1);
  --f-serif:     'Playfair Display', Georgia, serif;
  --f-sans:      'DM Sans', system-ui, sans-serif;
  --shadow-deep: 0 32px 80px rgba(0,0,0,0.5);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  background:
    linear-gradient(170deg,
      #040E16 0%,
      #071C2B 28%,
      #051521 55%,
      #071B27 78%,
      #040F18 100%
    );
  background-attachment: fixed;
  color:var(--text);font-family:var(--f-sans);line-height:1.7;overflow-x:hidden
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

.container{width:100%;max-width:1200px;margin:0 auto;padding:0 32px}
.section{padding:60px 0}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-header .eyebrow {
  background: var(--gold-dim);
  border: 1px solid var(--border-g);
  padding: 7px 18px;
  border-radius: 100px;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s;
}
.section-header .eyebrow:hover { background: rgba(200,168,107,0.2); }
.section-header .eyebrow::before,
.section-header .eyebrow::after  { display: none; }

.section-header h2 {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.sh-bar {
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-l), rgba(200,168,107,0));
  margin: 0 auto 24px;
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(.4,0,.2,1) 0.35s;
}
.reveal.visible .sh-bar { width: 72px; }

.section-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--r-s);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}
.btn i { transition: transform .35s ease; }
.btn:hover i { transform: translateX(3px); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.btn-gold:hover::after  { transform: translateX(100%); }
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,168,107,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(200,168,107,0.05);
}
.btn-full { width:100%; justify-content:center }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(5,20,29,0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .3s;
}
.nav-logo:hover {
  background: rgba(255,255,255,1);
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 10px 22px !important;
  border-radius: var(--r-s) !important;
  font-weight: 600 !important;
  transition: var(--t) !important;
}
.nav-cta:hover {
  background: var(--gold-l) !important;
  transform: translateY(-1px) !important;
  color: var(--bg) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  transition: var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 768px) {
  .hero { min-height: 78vh; }
  .hero-bg img { object-position: 25% center; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,20,29,0.92) 0%, rgba(5,20,29,0.78) 55%, rgba(5,20,29,0.88) 100%);
}

#particles-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.g1 { width: 600px; height: 600px; background: rgba(27,77,62,0.18); top: -150px; left: -180px; }
.g2 { width: 450px; height: 450px; background: rgba(200,168,107,0.06); bottom: 60px; right: -100px; }

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 148px;
  padding-bottom: 80px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,168,107,0.1);
  border: 1px solid var(--border-g);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .8px;
  margin-bottom: 36px;
  animation: fadeDown .8s ease .1s both;
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.35;transform:scale(1.6)}
}

.hero-title {
  font-family: var(--f-serif);
  margin-bottom: 28px;
  animation: fadeUp 1s ease .3s both;
}
.ht-line1 {
  display: block;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  color: rgba(237,233,225,0.72);
  margin-bottom: 6px;
  letter-spacing: .2px;
}
.ht-line2 {
  display: block;
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.ht-line3 {
  display: block;
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
}
.ht-line3 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(139,165,181,0.95);
  margin: 0 0 44px;
  line-height: 1.85;
  animation: fadeUp 1s ease .5s both;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 1s ease .7s both;
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .9s both;
}
.htag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(139,165,181,0.8);
  font-weight: 500;
  transition: color .3s;
}
.htag i { font-size: 11px; }
.htag:hover { color: var(--gold); }
.htag-sep { color: rgba(139,165,181,0.4); font-size: 14px; }

.hero-metrics {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,20,29,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 0;
}

.hmetric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 0 24px;
  cursor: default;
}
.hmetric:hover .hm-val { color: var(--gold-l); }

.hm-val {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  transition: color .35s;
}
.hm-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .3px;
}
.hm-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.hero-cursor-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,107,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity .5s ease;
  opacity: 0;
  z-index: 1;
  will-change: transform, opacity;
}

.hero-scroll {
  position: absolute;
  bottom: 86px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-track {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
  0%  { transform:scaleY(0); transform-origin:top; }
  50% { transform:scaleY(1); transform-origin:top; }
  51% { transform:scaleY(1); transform-origin:bottom; }
  100%{ transform:scaleY(0); transform-origin:bottom; }
}

@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

.marquee-strip {
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border-g);
  border-bottom: 1px solid var(--border-g);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--text-2);
  padding: 0 18px;
  transition: color .3s;
}
.marquee-content span:hover { color: var(--gold); }

.marquee-content .sep {
  color: var(--gold) !important;
  font-size: 16px;
  padding: 0 4px;
  opacity: .6;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.services {
  background: rgba(7,28,43,0.55);
  padding: 64px 0 68px;
}
.services .section-header { margin-bottom: 44px; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-130%) skewX(-12deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(220%) skewX(-12deg); opacity: 0; }
}

.svc-card.reveal {
  opacity: 0;
  transform: translateX(-56px) translateY(16px);
  transition: opacity .9s cubic-bezier(.22,.68,0,1.2), transform .9s cubic-bezier(.22,.68,0,1.2);
}
.svc-card.svc-flip.reveal {
  transform: translateX(56px) translateY(16px);
}
.svc-card.reveal.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.svc-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color .38s ease, box-shadow .38s ease;
  position: relative;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 38%,
    rgba(200,168,107,0.06) 48%,
    rgba(200,168,107,0.1)  53%,
    rgba(200,168,107,0.06) 58%,
    transparent 68%
  );
  transform: translateX(-130%) skewX(-12deg);
  animation: shimmerSweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.svc-list .svc-card:nth-child(1)::after { animation-delay: 0s; }
.svc-list .svc-card:nth-child(2)::after { animation-delay: 1.25s; }
.svc-list .svc-card:nth-child(3)::after { animation-delay: 2.5s; }
.svc-list .svc-card:nth-child(4)::after { animation-delay: 3.75s; }

.svc-card:hover {
  border-color: var(--border-g);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.svc-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,20,29,.55) 0%,
    rgba(27,77,62,.15) 100%
  );
}

.svc-num {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--f-serif);
  font-size: 64px;
  font-weight: 800;
  color: rgba(200,168,107,.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.svc-card.svc-flip {
  grid-template-columns: 1fr 300px;
}
.svc-card.svc-flip .svc-img {
  order: 2;
  border-right: none;
}
.svc-card.svc-flip .svc-body {
  order: 1;
  border-left: none;
  border-right: 1px solid var(--border);
}

.svc-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.svc-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.svc-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.svc-card:hover .svc-icon { background: rgba(200,168,107,0.22); transform: scale(1.06); }

.svc-title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

.svc-tagline {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 14px;
  font-style: italic;
}
.svc-tagline em { font-style: italic; }

.svc-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

.svc-list-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.svc-list-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.svc-list-items li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  padding: 16px;
  transition: var(--t);
}
.platform-card:hover {
  border-color: var(--border-g);
  background: rgba(200,168,107,0.05);
  transform: translateY(-3px);
}
.pc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.pc-google { background: rgba(66,133,244,.15); color: #4285F4; }
.pc-meta   { background: rgba(24,119,242,.15); color: #1877F2; }
.pc-tiktok { background: rgba(255,255,255,.07); color: var(--text); }
.pc-info { display: flex; flex-direction: column; gap: 2px; }
.pc-info strong { font-size: 13px; font-weight: 600; }
.pc-info span   { font-size: 12px; color: var(--text-2); }

.process {
  background: rgba(5,16,26,0.35);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200,168,107,.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.process-card {
  background: var(--bg-card);
  padding: 44px 36px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.process-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  border-radius: 0 0 2px 2px;
}
.process-card:nth-child(1)::after { background: linear-gradient(to right, #4FC3F7, #81D4FA); }
.process-card:nth-child(2)::after { background: linear-gradient(to right, var(--gold), var(--gold-l)); }
.process-card:nth-child(3)::after { background: linear-gradient(to right, #4DD0C3, #80DEEA); }
.process-card:nth-child(4)::after { background: linear-gradient(to right, #BA88DC, #CE93D8); }
.process-card:hover::after { transform: scaleX(1); }
.process-card:hover {
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pc-num {
  font-family: var(--f-serif);
  font-size: 44px;
  font-weight: 800;
  color: rgba(200,168,107,.12);
  line-height: 1;
  transition: var(--t);
}
.process-card:hover .pc-num { color: rgba(200,168,107,.4); }

.pc-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.process-card:hover .pc-icon-wrap { transform: scale(1.1); }

.process-card:nth-child(1) .pc-icon-wrap { background: rgba(79,195,247,0.12); color: #4FC3F7; }
.process-card:nth-child(2) .pc-icon-wrap { background: rgba(200,168,107,0.14); color: var(--gold); }
.process-card:nth-child(3) .pc-icon-wrap { background: rgba(77,208,195,0.12); color: #4DD0C3; }
.process-card:nth-child(4) .pc-icon-wrap { background: rgba(186,136,220,0.12); color: #BA88DC; }

.process-card h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.pc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.process-card:nth-child(1) .pc-tag { color: #4FC3F7; background: rgba(79,195,247,0.10); }
.process-card:nth-child(2) .pc-tag { color: var(--gold); background: var(--gold-dim); }
.process-card:nth-child(3) .pc-tag { color: #4DD0C3; background: rgba(77,208,195,0.10); }
.process-card:nth-child(4) .pc-tag { color: #BA88DC; background: rgba(186,136,220,0.10); }

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.pc-list li i { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

.process-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.pf-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.pf-left i { color: var(--gold); font-size: 20px; flex-shrink: 0; }

.about { background: rgba(7,27,39,0.5); }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.av-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.av-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  will-change: transform;
}
.about-visual:hover .av-img-wrap img { transform: scale(1.04); }

.av-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(5,20,29,0.7) 100%
  );
}

.av-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-deep);
  z-index: 2;
}
.av-floating-card i {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.av-floating-card strong { display: block; font-size: 14px; font-weight: 600; }
.av-floating-card span  { display: block; font-size: 12px; color: var(--text-2); margin-top: 2px; }

.av-bg-shape {
  position: absolute;
  top: -20px; left: -20px;
  width: 180px; height: 180px;
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  z-index: -1;
  opacity: 0.5;
}

.about-text .section-header { text-align: left; margin: 0 0 32px; }
.about-text .section-header .eyebrow::before { display: block; }
.about-text .section-header .eyebrow::after  { display: none; }

.about-text h2 {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }

.about-text p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  transition: var(--t);
}
.pillar:hover { border-color: var(--border-g); }

.pillar-icon {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.pillar span   { display: block; font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

.about-pillars-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px 40px;
  margin-bottom: 64px;
}

.apt-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px 32px;
  border-radius: var(--r-s);
  transition: background .3s;
}
.apt-item:hover { background: rgba(200,168,107,0.05); }
.apt-item:hover .apt-icon { background: rgba(200,168,107,0.22); transform: scale(1.08); }

.apt-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.apt-item strong {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.apt-item span {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  display: block;
}

.apt-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.about-inner-title {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--text);
}
.about-inner-title em { font-style: italic; color: var(--gold); }

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.acl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-s);
  border: 1px solid transparent;
  transition: border-color .3s, background .3s;
  margin: 0 -16px;
}
.acl-item:hover {
  border-color: var(--border-g);
  background: rgba(200,168,107,0.04);
}

.acl-icon {
  width: 28px; height: 28px;
  background: var(--gold-dim);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.acl-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.acl-item strong { font-size: 14px; font-weight: 600; color: var(--text); }
.acl-item span   { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px 40px;
  margin-top: 64px;
}

.astat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.astat-val {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.astat-label {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}

.astat-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.promise-banner {
  background: var(--green);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.promise-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.promise-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.promise-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}
.promise-quote i {
  font-size: 28px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 4px;
}
.promise-quote blockquote {
  font-family: var(--f-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.promise-inner .btn-gold {
  background: var(--gold);
  color: var(--bg);
  flex-shrink: 0;
}

.contact { background: rgba(4,14,22,0.4); }

.contact-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-form-side form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fg label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}

.fg input,
.fg select,
.fg textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--r-s);
  padding: 13px 18px;
  font-family: var(--f-sans);
  font-size: 15px;
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: var(--bg-card-h);
  box-shadow: 0 0 0 3px rgba(200,168,107,0.1);
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-3); }
.fg select option { background: var(--bg-card); color: var(--text); }
.fg textarea { resize: vertical; min-height: 140px; }

.form-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: -6px;
}

.form-feedback {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-s);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--t);
}
.form-feedback.show { padding: 14px; max-height: 80px; }
.form-feedback.success { background: rgba(27,77,62,.2); color: #5DB88A; border: 1px solid rgba(93,184,138,.2); }
.form-feedback.error   { background: rgba(191,80,80,.12); color: #E07070; border: 1px solid rgba(191,80,80,.2); }

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: var(--t);
}
.ci-card:hover { border-color: var(--border-g); }

.ci-icon {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ci-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
}
.ci-card a,
.ci-card span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--t);
}
.ci-card a:hover { color: var(--gold); }

.ci-promise {
  margin-top: 8px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(200,168,107,0.04);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-promise i { color: var(--gold); font-size: 18px; opacity: .5; margin-top: 3px; flex-shrink: 0; }
.ci-promise p {
  font-family: var(--f-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.6;
}

.footer {
  background: rgba(4,12,20,0.7);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-logo { height: 30px; width: auto; margin-bottom: 14px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-3);
  transition: var(--t);
}
.footer-col a:hover { color: var(--gold); }

.footer-contact-col {
  display: flex;
  flex-direction: column;
}
.footer-contact-col a,
.footer-contact-col span {
  font-size: 13px;
  color: var(--text-3);
  transition: var(--t);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact-col a:hover { color: var(--gold); }
.footer-contact-col i { color: var(--gold); font-size: 11px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-3); }
.heart { color: #C05050; }

@media (max-width: 1100px) {

  .hero-content { padding-top: 130px; padding-bottom: 70px; }


  .about-wrap { grid-template-columns: 1fr; gap: 60px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .av-floating-card { bottom: 20px; right: 20px; }
  .about-pillars-top { padding: 36px 24px; }
  .apt-item { padding: 0 20px; }


  .svc-card              { grid-template-columns: 240px 1fr; }
  .svc-card.svc-flip     { grid-template-columns: 1fr 240px; }
  .svc-body { padding: 32px 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }


  .about-pillars-top { flex-direction: column; gap: 28px; }
  .apt-divider { width: 60px; height: 1px; }
  .apt-item { padding: 0; }


  .about-stats { flex-direction: column; gap: 28px; }
  .astat-sep { width: 60px; height: 1px; }


  .hero-metrics { flex-wrap: wrap; gap: 16px; padding: 22px 20px; }
  .hm-divider   { display: none; }
  .hmetric      { min-width: calc(50% - 10px); }
}

@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .container { padding: 0 20px; }


  .acl-item { margin: 0; }


  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(5,20,29,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li   { width: 100%; }
  .nav-links a    { display: block; padding: 14px 28px; font-size: 16px; }
  .nav-cta        { margin: 10px 28px 0 !important; display: block !important; text-align: center !important; padding: 14px 22px !important; }
  .hamburger      { display: flex; }


  .hero-content { padding-top: 88px; padding-bottom: 32px; }
  .hero-scroll  { bottom: 60px; }
  .process-footer { flex-direction: column; align-items: flex-start; }


  .svc-card,
  .svc-card.svc-flip              { grid-template-columns: 1fr; }
  .svc-card.svc-flip .svc-img    { order: 0; }
  .svc-card.svc-flip .svc-body   { order: 0; border-right: none; }
  .svc-img  { height: 220px; }
  .svc-img img { height: 220px; }
  .svc-body { padding: 28px 24px; border-left: none; border-top: 1px solid var(--border); }
  .platforms-grid { grid-template-columns: 1fr; }


  .about-wrap { gap: 40px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .about-stats { padding: 28px 20px; margin-top: 40px; }
  .av-floating-card { bottom: 12px; right: 12px; padding: 14px 16px; gap: 10px; }


  .about-pillars-top { flex-direction: column; gap: 0; padding: 8px 16px; margin-bottom: 36px; }
  .apt-divider { display: none; }
  .apt-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .apt-item:last-child { border-bottom: none; }
  .apt-icon { width: 34px; height: 34px; font-size: 14px; border-radius: 8px; flex-shrink: 0; }
  .apt-item strong { font-size: 14px; display: block; margin-bottom: 1px; }
  .apt-item span { font-size: 12px; line-height: 1.4; }

  .promise-inner { flex-direction: column; align-items: flex-start; }


  .process-grid  { grid-template-columns: 1fr; gap: 0; }
  .process-card  { padding: 20px 20px; }
  .process-card:hover { transform: none; }
  .pc-header     { margin-bottom: 8px; }
  .pc-num        { font-size: 28px; }
  .pc-icon-wrap  { width: 32px; height: 32px; font-size: 13px; }
  .process-card h3   { font-size: 15px; margin-bottom: 4px; }
  .process-card p    { font-size: 13px; line-height: 1.55; margin-bottom: 8px; }
  .pc-list       { display: none; }
  .pc-tag        { font-size: 10px; padding: 3px 10px; }

  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding-top: 16px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-tags { gap: 6px; }
  .ht-line2 { font-size: clamp(38px, 10vw, 60px); }
  .ht-line3 { font-size: clamp(38px, 10vw, 60px); }
  .section-header h2 { font-size: clamp(30px, 8.5vw, 46px); }
  .section-header { margin-bottom: 40px; }
  .hero-metrics { padding: 18px 12px; }
  .hmetric { min-width: calc(50% - 8px); padding: 12px 10px; }
  .hm-label { font-size: 10.5px; }
}

@media (max-width: 360px) {
  .ht-line1 { font-size: 18px; }
  .ht-line2,
  .ht-line3 { font-size: 32px; }
  .section-header h2 { font-size: 27px; }
  .hero-content { padding-top: 96px; }
  .hero-badge { font-size: 9px; }
  .btn { font-size: 14px; padding: 14px 22px; }
  .hmetric { min-width: calc(50% - 6px); padding: 10px 8px; }
  .hm-val { font-size: 20px; }
  .hm-label { font-size: 9.5px; }
}

.funnel-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.funnel-layout {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: repeat(5, 140px);
  row-gap: 4px;
  column-gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.fnl-col { display: contents; }

.fnl-stack {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fnl-seg {
  width: 300px;
  height: 140px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.28s ease;
}
.fnl-seg svg { display: block; }

.fnl-seg-inner {
  transform-origin: 50% 0;
  transform: scale(0);
  transition: transform 0.65s cubic-bezier(0.34, 1.26, 0.64, 1);
}
.fnl-stack.visible .fnl-seg-inner            { transform: scale(1); }
.fnl-stack.visible .fnl-seg:nth-child(1) .fnl-seg-inner { transition-delay: 0s;    }
.fnl-stack.visible .fnl-seg:nth-child(2) .fnl-seg-inner { transition-delay: 0.12s; }
.fnl-stack.visible .fnl-seg:nth-child(3) .fnl-seg-inner { transition-delay: 0.24s; }
.fnl-stack.visible .fnl-seg:nth-child(4) .fnl-seg-inner { transition-delay: 0.36s; }
.fnl-stack.visible .fnl-seg:nth-child(5) .fnl-seg-inner { transition-delay: 0.48s; }

.fnl-l0 { grid-column: 1; grid-row: 1; display: flex; align-items: center; justify-content: flex-end; gap: 14px; text-align: right; }
.fnl-l2 { grid-column: 1; grid-row: 3; display: flex; align-items: center; justify-content: flex-end; gap: 14px; text-align: right; }
.fnl-l4 { grid-column: 1; grid-row: 5; display: flex; align-items: center; justify-content: flex-end; gap: 14px; text-align: right; }
.fnl-r1 { grid-column: 3; grid-row: 2; display: flex; align-items: center; gap: 14px; }
.fnl-r3 { grid-column: 3; grid-row: 4; display: flex; align-items: center; gap: 14px; }

.fnl-text strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 7px;
  line-height: 1.15;
}
.fnl-text span {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.fnl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(200,168,107,0.55);
  transition: box-shadow 0.3s ease;
}
.fnl-label:hover .fnl-dot {
  box-shadow: 0 0 20px rgba(200,168,107,0.9);
}

@media (max-width: 860px) {
  .funnel-layout {
    grid-template-columns: 1fr 200px 1fr;
    grid-template-rows: repeat(5, 93px);
    row-gap: 3px;
    column-gap: 28px;
  }
  .fnl-seg     { width: 200px; height: 93px; }
  .fnl-seg svg { width: 200px; height: 93px; }
  .fnl-text strong { font-size: 15px; margin-bottom: 5px; }
  .fnl-text span   { font-size: 12px; }
}

@media (max-width: 540px) {
  .funnel-layout {
    grid-template-columns: 1fr 130px 1fr;
    grid-template-rows: repeat(5, 61px);
    row-gap: 2px;
    column-gap: 10px;
  }
  .fnl-seg     { width: 130px; height: 61px; }
  .fnl-seg svg { width: 130px; height: 61px; }

  .fnl-l0, .fnl-l2, .fnl-l4,
  .fnl-r1, .fnl-r3 {
    align-items: flex-start;
    padding-top: 6px;
    gap: 7px;
    overflow: visible;
  }
  .fnl-text strong { font-size: 11px; font-style: normal; margin-bottom: 3px; }
  .fnl-text span   { font-size: 9.5px; line-height: 1.4; }
  .fnl-dot { width: 7px; height: 7px; margin-top: 3px; }
}

@media (max-width: 380px) {
  .funnel-layout {
    grid-template-columns: 1fr 100px 1fr;
    grid-template-rows: repeat(5, 47px);
    column-gap: 7px;
  }
  .fnl-seg     { width: 100px; height: 47px; }
  .fnl-seg svg { width: 100px; height: 47px; }
  .fnl-text strong { font-size: 10px; }
  .fnl-text span   { font-size: 9px; }
}

.blog-hero {
  padding: 140px 0 70px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200,168,107,.10) 0%, transparent 70%);
}
.blog-hero .eyebrow { margin-bottom: 16px; display: inline-block; }
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.blog-hero h1 em { color: var(--gold); font-style: italic; }
.blog-hero p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.blog-grid-section { padding: 0 0 100px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: border-color .3s, transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(200,168,107,.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 2;
}
.blog-card:hover {
  border-color: rgba(200,168,107,.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(200,168,107,.12);
}
.blog-card:hover::before { transform: scaleX(1); }

.blog-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,11,11,.55));
}
.blog-card:hover .blog-card-img img { transform: scale(1.07); }

.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,107,.10);
  border: 1px solid rgba(200,168,107,.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-date { font-size: 11.5px; color: var(--gray); }
.blog-read-time { font-size: 11.5px; color: var(--gray); margin-left: auto; }

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.45;
  transition: color .25s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
  transition: gap .3s;
}
.blog-card-cta i { transition: transform .3s; }
.blog-card:hover .blog-card-cta { gap: 12px; }
.blog-card:hover .blog-card-cta i { transform: translateX(3px); }

.blog-teaser {
  padding: 70px 0 80px;
  border-top: 1px solid var(--border);
}

.bt-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

.bt-header-text.section-header {
  max-width: none;
  margin: 0 0 28px;
}
.bt-header-text.section-header h2 { margin-bottom: 0; }

.bt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bt-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  transition: border-color .3s, transform .35s cubic-bezier(.25,.8,.25,1), box-shadow .35s;
}
.bt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200,168,107,.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.bt-card:hover {
  border-color: rgba(200,168,107,.4);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(200,168,107,.1);
}
.bt-card:hover::before { transform: scaleX(1); }
.bt-card:hover .bt-card-arrow {
  color: var(--gold);
  transform: translate(3px, -3px);
}
.bt-card:hover .bt-card-title { color: var(--white); }

.bt-num {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(200,168,107,.2);
  flex-shrink: 0;
  transition: color .3s;
}
.bt-card:hover .bt-num { color: rgba(200,168,107,.45); }

.bt-card-body { flex: 1; }
.bt-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.bt-card-date { font-size: 11px; color: var(--gray); }
.bt-card-title {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
  transition: color .25s;
}
.bt-card-arrow {
  font-size: 12px;
  color: var(--gray);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color .25s, transform .3s cubic-bezier(.25,.8,.25,1);
}

@media (max-width: 860px) {
  .bt-cards { grid-template-columns: 1fr; gap: 12px; }
  .bt-header { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .bt-header-text h2 { font-size: clamp(24px, 6vw, 32px); }
}

.article-hero {
  padding: 130px 0 0;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .25s;
}
.article-back:hover { color: var(--gold); }
.article-header { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 20px; }
.article-header .blog-meta { justify-content: center; margin-bottom: 20px; }
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 22px;
}
.article-header h1 em { color: var(--gold); }
.article-header .article-intro {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
}
.article-cover {
  max-width: 900px;
  margin: 48px auto 0;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin: 44px 0 16px;
  font-weight: 600;
}
.article-body h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 28px 0 10px;
  font-weight: 600;
}
.article-body p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-body strong { color: var(--white); font-weight: 600; }
.article-body ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.article-body ul li {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  padding: 6px 0 6px 22px;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.article-highlight {
  background: rgba(200,168,107,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-highlight p { margin: 0; color: var(--white); font-style: italic; }
.article-cta-box {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
  margin-top: 60px;
}
.article-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.article-cta-box p {
  color: var(--gray);
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .article-cover { height: 220px; }
  .article-cta-box { padding: 28px 20px; }
}