@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap");

:root {
  --gold: #d4a54a;
  --green: #4ade80;
  --purple: #a78bfa;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --red: #f87171;
  --blue: #60a5fa;
  --bg: #050210;
  --card: rgba(10, 7, 28, 0.6);
  --border: rgba(212, 165, 74, 0.07);
  --text: #e4e6f0;
  --dim: rgba(230, 232, 245, 0.5);
  --mute: rgba(230, 232, 245, 0.22);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 165, 74, 0.15) transparent;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(212, 165, 74, 0.25); color: #fff; }
canvas#c {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.page { position: relative; z-index: 1; }
.sec {
  padding: 100px clamp(20px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
}
.divider {
  width: 100px;
  height: 1px;
  margin: -40px auto;
  opacity: 0.2;
}

/* ═══ SECTION 3 ═══ */
.s3-hero { text-align: center; margin-bottom: 70px; }
.s3-hero .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--gold);
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s3-hero h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.s3-hero h2 em { color: var(--gold); font-style: italic; }
.s3-hero .sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  border-color: rgba(212, 165, 74, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}
.svc-card:hover .svc-icon { transform: scale(1.08); box-shadow: 0 0 20px rgba(212, 165, 74, 0.08); }
.svc-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: rgba(212, 165, 74, 0.03);
  transition: all 0.4s;
}
.svc-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.svc-card p {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 16px;
}
.svc-card .svc-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card .svc-link:hover { opacity: 1; }
.svc-card .svc-link::after { content: "\2192"; transition: transform 0.3s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

.cta-center { text-align: center; margin-top: 20px; margin-bottom: 10px; }
.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gold);
  color: var(--bg);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}
.cta-btn:hover {
  box-shadow: 0 6px 35px rgba(212, 165, 74, 0.3);
  transform: translateY(-2px);
}

.page > div.sec + .divider + div.sec {
  padding-top: 40px;
}

/* ═══ SECTION 4 ═══ */

.s4-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: 20px;
  margin-top: -10px; 
}
.s4-split .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--gold);
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s4-split h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.s4-split h2 em { color: var(--gold); font-style: italic; }
.s4-right p {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.s4-right .cta-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(212, 165, 74, 0.25);
  color: var(--gold);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}
.s4-right .cta-outline:hover {
  background: rgba(212, 165, 74, 0.08);
  border-color: rgba(212, 165, 74, 0.5);
  box-shadow: 0 0 20px rgba(212, 165, 74, 0.06);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ss {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.ss:last-child { border-right: none; }
.ss:hover { background: rgba(212, 165, 74, 0.02); }
.ss .num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
}
.ss .lbl {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 300;
  color: var(--dim);
  margin-top: 8px;
  line-height: 1.5;
}

.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.feat.rev .ft { order: 2; }
.feat.rev .fv { order: 1; }
.ft .fnum {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 10px;
}
.ft h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
}
.ft h3 em { color: var(--gold); font-style: italic; }
.ft p {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 14px;
}
.ft p strong { color: var(--gold); font-weight: 600; }
.ft .link {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.3s;
}
.ft .link:hover { opacity: 1; }

.fv {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  position: relative;
}
.fv .accent {
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  border-radius: 0 0 2px 2px;
  opacity: 0.3;
}
.fv .vtitle {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.br {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(212, 165, 74, 0.03);
}
.br .bl { width: 90px; font-size: 13px; color: var(--dim); flex-shrink: 0; font-weight: 500; }
.br .bk { flex: 1; height: 10px; background: rgba(255,255,255,0.03); border-radius: 5px; overflow: hidden; }
.br .bf { height: 100%; border-radius: 5px; transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.br .bv { width: 44px; text-align: right; font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 700; flex-shrink: 0; }

.quote {
  padding: 36px 40px;
  border-left: 3px solid var(--gold);
  background: var(--card);
  border-radius: 0 16px 16px 0;
  margin: 60px 0;
  backdrop-filter: blur(14px);
}
.quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 10px;
}
.quote .attr {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.35;
}

.cta-sec {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.cta-sec h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-sec h3 em { color: var(--gold); font-style: italic; }
.cta-sec p { font-size: 16px; color: var(--dim); margin-bottom: 28px; font-weight: 300; }

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.vis { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; }
  .s4-split { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .ss { border-right: none; border-bottom: 1px solid var(--border); }
  .feat, .feat.rev { grid-template-columns: 1fr; gap: 24px; }
  .feat.rev .ft { order: 1; }
  .feat.rev .fv { order: 2; }
}