
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --ink: #111827;
  --paper: #f6f6f6;
  --gold: #005bb5;
  --gold-lt: #d4ac5a;
  --mist: #f5f5f5;
  --grey: #111827;
  --textcolor: #111827;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif;

  --primary-color: #2baaa9;
  --background-dark: #ffffff;
  --text-lightt: #132743;
  --text-faded: #000000;
  --nav-bar-dark: #1b2a49;
  --slide-x: 0;
}
html {
  scroll-behavior: smooth;
}
body {
 
  font-weight: 300;
  overflow-x: hidden;

}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s,
    height 0.35s,
    opacity 0.35s;
  opacity: 0.6;
}
.cursor-ring.expand {
  width: 64px;
  height: 64px;
  opacity: 0.22;
}



/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--textcolor);
}
.hero::before {
  content: "WEB3";
  position: absolute;
  right: -40px;
  bottom: -30px;
  font-family: var(--serif);
  font-size: 17rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.022);
  letter-spacing: -0.03em;
  pointer-events: none;
  line-height: 1;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.80rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-titles {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 1.03;
  color: var(--textcolor);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-titles em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.9;
  color:var(--textcolor);
  max-width: 440px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.btn-gold {
  font-size: 0.80rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
  display: inline-block;
}


.btn-ghost {
  color: var(--textcolor);
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.58);
  transform: scale(1.06);
  animation: zoomOut 1.8s 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 38%);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.35);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--gold), transparent);
}
.hero-badge {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 5;
  border: 1px solid var(--primary-color);
  padding: 18px 24px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}
.hero-badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.hero-badge-lbl {
  font-size: 0.80rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:white;
  margin-top: 5px;
}

/* ── SHARED ── */
.lbl {
  font-size: 0.80rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background-color: var(--gold);
  color: var(--white);
  margin-bottom: 14px;
  display: inline-block;
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
}
.h2 em {
  font-style: italic;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.arr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.3s;
}
.arr svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.arr:hover {
  color: var(--gold);
}
.arr:hover svg {
  transform: translateX(5px);
}
.arw {
  width: 18px;
  height: 10px;
}

/* ── INTRO ── */
.intro {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  border-bottom: 1px solid var(--mist);
}
.intro-lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 300;
}
.intro-lead em {
  font-style: italic;
  color: var(--gold);
}
.intro-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 22px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
}
.stat-box {
  background: var(--paper);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.stat-box:hover::before {
  transform: scaleX(1);
}
.stat-box:hover {
  background: #f0ece5;
}
.sn {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.sn em {
  color: var(--gold);
  font-style: italic;
}
.sl {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── BLOCKCHAIN TYPES — dark ── */
.types {
  padding: 100px 60px;
  background: var(--primary-color);
}
.types .lbl {
  color: var(--white);
}
.types .h2 {
  color: var(--paper);
  margin-bottom: 64px;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.type-card {
  background: var(--paper);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.type-card:hover::before {
  transform: scaleX(1);
}
.type-card:hover {
  background: white;
}
.tc-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--textcolor);
  line-height: 1;
  margin-bottom: 20px;
}
.tc-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 147, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.type-card:hover .tc-icon {
  border-color: var(--gold);
  background: rgba(184, 147, 58, 0.07);
}
.tc-icon svg {
  width: 24px;
  height: 24px;
}
.tc-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--textcolor);
  margin-bottom: 10px;
}
.tc-tag {
  font-size: 0.80rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.tc-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--textcolor);
  margin-bottom: 24px;
}
.tc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tc-feats li {
  font-size: 1rem;
  color:var(--textcolor);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.tc-feats li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── SERVICES GRID ── */
.services {
  padding: 100px 60px;
  border-bottom: 1px solid var(--mist);
}
.sec-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--mist);
  padding-bottom: 32px;
}
.sec-hdr-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
  max-width: 340px;
  text-align: right;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
}
.svc-card {
  background: var(--paper);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-card:hover {
  background: white;
}
.svc-num {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--textcolor);
  margin-bottom: 18px;
}
.svc-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: border-color 0.3s;
}
.svc-card:hover .svc-icon {
  border-color: var(--gold);
}
.svc-icon svg {
  width: 22px;
  height: 22px;
}
.svc-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
.svc-desc {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--grey);
}

/* ── SPLIT SECTIONS ── */
.split-sec {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--mist);
}

.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.85);
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.5s;
}
.split-img:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) brightness(0.92);
}
.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--mist);
  pointer-events: none;
}
.split-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary-color);
  padding: 14px 22px;
  z-index: 2;
}
.split-badge-lbl {
  font-size: 0.80rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
}
.split-badge-val {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
}
.split-body .lbl {
  margin-bottom: 14px;
}
.split-body .h2 {
  margin-bottom: 22px;
}
.split-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 18px;
}
.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 18px 0 36px;
}
.split-list li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey);
  padding-left: 22px;
  position: relative;
}
.split-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 2px;
}

/* ── CAPABILITIES ── */
.capabilities {
  padding: 100px 60px;
  background: var(--paper);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  margin-top: 64px;
}
.cap-item {
  background: var(--paper);
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s;
}
.cap-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.cap-item:hover::before {
  transform: scaleX(1);
}
.cap-item:hover {
  background: white;
}
.cap-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: border-color 0.3s;
}
.cap-item:hover .cap-icon {
  border-color: var(--gold);
}
.cap-icon svg {
  width: 20px;
  height: 20px;
}
.cap-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.cap-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
}

/* ── PROCESS ── */
.process {
  padding: 100px 60px;
  background: var(--paper);
}
.process .lbl {
  color: var(--white);
}
.process .h2 {
  color: var(--textcolor);
  margin-bottom: 64px;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.proc-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(184, 147, 58, 0.6),
    rgba(184, 147, 58, 0.1)
  );
}
.proc-step {
  padding: 0 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-ring {
  width: 64px;
  height: 64px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--ink);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.ps-ring span {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
}
.proc-step:hover .ps-ring {
  background: var(--white);
  border-color: var(--gold);
}
.proc-step:hover .ps-ring span {
  color: var(--ink);
}
.ps-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--textcolor);
  margin-bottom: 10px;
}
.ps-desc {
  font-size: 1rem;
  line-height: 1.8;
  color:var(--textcolor);
}

/* ── TECH STACK ── */
.techstack {
  padding: 100px 60px;
  border-bottom: 1px solid var(--mist);
}
.ts-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--mist);
  margin-top: 48px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.ts-tab {
  font-size: 0.80rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  font-family: var(--sans);
}
.ts-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.ts-tab.active {
  color: var(--ink);
}
.ts-tab.active::after {
  transform: scaleX(1);
}
.ts-panel {
  display: none;
}
.ts-panel.active {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
}
.ts-item {
  background: var(--paper);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}
.ts-item:hover {
  background: #f0ece5;
}
.ts-item svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  display: block;
}
.ts-name {
  font-size: 0.80rem;
  letter-spacing: 0.06em;
  color: var(--grey);
}

/* ── INDUSTRIES ── */
.industries {
  padding: 100px 60px;
  border-bottom: 1px solid var(--mist);
}
.ind-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--mist);
  padding-bottom: 32px;
}
.ind-hdr-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey);
  max-width: 320px;
  text-align: right;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
}
.ind-item {
  background: var(--paper);
  padding: 32px 28px;
  transition: background 0.3s;
  cursor: default;
  position: relative;
}
.ind-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.ind-item:hover::before {
  transform: scaleX(1);
}
.ind-item:hover {
  background: #f0ece5;
}
.ind-emoji {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1;
}
.ind-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.ind-count {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

/* ── WHY ── */
.why {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--mist);
}
.why-left .h2 {
  margin-bottom: 22px;
}
.why-left p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--grey);
  margin-bottom: 22px;
}
.why-items {
  border: 1px solid var(--mist);
}
.why-item {
  padding: 26px 32px;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.3s;
}
.why-item:last-child {
  border-bottom: none;
}
.why-item:hover {
  background: #f0ece5;
}
.wi-dot {
  width: 38px;
  height: 38px;
  border: 1px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.why-item:hover .wi-dot {
  border-color: var(--gold);
  background: rgba(184, 147, 58, 0.06);
}
.wi-dot svg {
  width: 16px;
  height: 16px;
}
.wi-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 5px;
}
.wi-desc {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--grey);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 60px;
  background: #f0ece5;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--paper);
  padding: 44px 36px;
  border: 1px solid var(--mist);
  position: relative;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}
.tq {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 18px;
  display: block;
}
.tt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
}
.tdivider {
  height: 1px;
  background: var(--mist);
  margin-bottom: 20px;
}
.ta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.tr {
  font-size: 0.88rem;
  color: var(--grey);
}
.tbadge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  background: var(--mist);
  padding: 5px 10px;
}


/* ── FAQ ── */
.faq-section {
  padding: 100px 60px;
}
.faq-wrap {
  max-width: 860px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s,
    background 0.3s,
    border-color 0.3s;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);

}
.faq-a {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--grey);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    padding 0.4s;
}
.faq-item.open .faq-a {
  max-height: 260px;
  padding-bottom: 26px;
}

/* ── CTA ── */
.cta-banner {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;

}
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: 1.07;
  color: var(--textcolor);
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px 40px;
}
.cta-plbl {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.cta-tel {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: rgba(245, 242, 238, 0.8);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.cta-tel:hover {
  color: var(--gold);
}
.cta-email {
  font-size: 1rem;
  color: rgba(245, 242, 238, 0.38);
  margin: 16px 0 32px;
}
.cta-email a {
  color: var(--gold);
  text-decoration: none;
}
.cta-btn {
  display: inline-block;
  font-size: 0.80rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
 
  color: var(--ink);
  padding: 15px 36px;
  text-decoration: none;
  transition: background 0.3s;
}



/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
 
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    height: 280px;
  }
  .hero-left {
    padding: 80px 24px 60px;
  }
  .hero::before {
    font-size: 6rem;
  }
  .intro,
  .split-sec,
  .why,
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }
  .types,
  .services,
  .capabilities,
  .process,
  .techstack,
  .industries,
  .testimonials,
  .faq-section {
    padding: 64px 24px;
  }
  .types-grid,
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .proc-steps::before {
    display: none;
  }
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ts-panel.active {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
 
  .sec-hdr,
  .ind-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .sec-hdr-sub,
  .ind-hdr-sub {
    text-align: left;
  }
  .split-img img {
    height: 280px;
  }
}
