:root {
  --ink: #0a0a0f;
  --paper: #f5f3ee;
  --gold: #c8a96e;
  --gold-light: #e8d4a8;
  --deep: #1a1a2e;
  --accent: #2d6a8f;
  --muted: #6b6b7a;
  --rule: rgba(10, 10, 15, 0.12);
  --success: #2d7a5f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: "";
  position: fixed;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ─── HEADER / HERO ─── */
header {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--paper);
}

.header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 20%,
      rgba(45, 106, 143, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(200, 169, 110, 0.2) 0%,
      transparent 50%
    ),
    var(--deep);
}

.header-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 80px
  );
}

nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.logo span {
  color: var(--gold);
}

.nav-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 5% 5% 5%;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245, 243, 238, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  width: fit-content;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}

.hero-stat-bar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  padding: 2.5rem 5%;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(245, 243, 238, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── INTRO SECTION ─── */
.intro {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.intro-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.intro h2 em {
  font-style: italic;
  color: var(--accent);
}

.intro p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-visual {
  position: relative;
}

.intro-card {
  background: var(--deep);
  color: var(--paper);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.intro-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillars li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(245, 243, 238, 0.8);
}

.pillars li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services {
  padding: 8rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
}

.service-card {
  background: var(--paper);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.service-card:hover {
  background: #fff;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(10, 10, 15, 0.05);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
  user-select: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--deep);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-tagline {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.service-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.service-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.item-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.item-content {
}

.item-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── PROCESS ─── */
.process {
  background: var(--deep);
  color: var(--paper);
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 60px
  );
}

.process .section-header h2 {
  color: var(--paper);
}
.process .section-header .label {
  color: rgba(245, 243, 238, 0.4);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step {
  padding: 0 2rem;
  position: relative;
}

.step-circle {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  background: var(--deep);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--paper);
}

.step p {
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.5);
  line-height: 1.7;
}

/* ─── WHY ─── */
.why {
  padding: 8rem 5%;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
  border-bottom: 1px solid var(--rule);
}

.why h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  position: sticky;
  top: 4rem;
}

.why h2 em {
  font-style: italic;
  color: var(--accent);
}

.reasons {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}

.reason:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reason-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  padding-top: 0.2rem;
}

.reason h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.reason p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA FOOTER ─── */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

.footer-cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: rgba(245, 243, 238, 0.6);
  padding: 1.1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(245, 243, 238, 0.4);
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.8rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.3);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(245, 243, 238, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp 0.8s ease both;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.55s;
}

@media (max-width: 768px) {
  .intro,
  .why {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .steps::before {
    display: none;
  }
  .footer-cta {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .hero-stat-bar {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ─── NAV ─── */
header {
  background: var(--deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 90% 50%,
      rgba(45, 106, 143, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(200, 169, 110, 0.15) 0%,
      transparent 50%
    ),
    var(--deep);
}

.header-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 80px
  );
}

nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── HERO STRIP ─── */
.hero-strip {
  position: relative;
  z-index: 10;
  padding: 5rem 5% 6rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-strip h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 700px;
}

.hero-strip h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-strip p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(245, 243, 238, 0.6);
  max-width: 500px;
  line-height: 1.75;
}

/* ─── MAIN CONTENT ─── */
main {
  flex: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
}

/* ─── LEFT PANEL ─── */
.contact-info {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 169, 110, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.info-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(200, 169, 110, 0.3);
}

.info-block {
  margin-bottom: 3rem;
}

.info-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.6rem;
}

.info-block p,
.info-block a {
  font-size: 0.9rem;
  color: rgba(245, 243, 238, 0.55);
  text-decoration: none;
  line-height: 1.7;
  display: block;
  transition: color 0.2s;
}

.info-block a:hover {
  color: var(--gold);
}

.info-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 2.5rem 0;
}

.response-promise {
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 2px;
  padding: 1.5rem;
  margin-top: 3rem;
}

.response-promise p {
  font-size: 0.82rem;
  color: rgba(245, 243, 238, 0.55);
  line-height: 1.7;
}

.response-promise strong {
  color: var(--gold);
  font-weight: 500;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.tag {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  transition: all 0.2s;
}

.tag:hover {
  color: var(--gold);
  border-color: rgba(200, 169, 110, 0.4);
}

/* ─── RIGHT PANEL / FORM ─── */
.contact-form-wrap {
  background: var(--paper);
  padding: 5rem 5rem 5rem 5rem;
  position: relative;
}

.form-label-top {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-label-top::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.field {
  margin-bottom: 2rem;
  position: relative;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.field label .req {
  color: var(--gold);
  margin-left: 3px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--rule);
  padding: 0.7rem 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(107, 107, 122, 0.4);
  font-weight: 300;
}

.field textarea {
  resize: none;
  height: 100px;
  line-height: 1.6;
}

/* Underline animated */
.field::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s ease;
  pointer-events: none;
}

.field:focus-within::after {
  width: 100%;
}

/* Service checkboxes */
.checkboxes-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
  font-weight: 400;
}

.checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(10, 10, 15, 0.25);
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: transparent;
  transition: all 0.2s;
  padding: 0;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 5px;
  height: 8px;
  border: 1.5px solid var(--ink);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-item span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Budget radio */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.radio-item {
  position: relative;
}

.radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
  border: 1.5px solid var(--rule);
  padding: 0.6rem 0.4rem;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

.radio-item input[type="radio"]:checked + label {
  border-color: var(--gold);
  color: var(--ink);
  background: rgba(200, 169, 110, 0.08);
}

.radio-item label:hover {
  border-color: rgba(200, 169, 110, 0.5);
  color: var(--ink);
}

/* Submit */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  gap: 2rem;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(107, 107, 122, 0.6);
  line-height: 1.5;
  max-width: 280px;
}

.btn-submit {
  background: var(--deep);
  color: var(--paper);
  padding: 1.1rem 2.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 169, 110, 0.15) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-submit:hover {
  background: var(--accent);
}
.btn-submit:hover::before {
  transform: translateX(100%);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* ─── SUCCESS STATE ─── */
.success-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
}

.success-overlay.visible {
  display: flex;
}
.contact-form-wrap.submitted form {
  display: none;
}
.contact-form-wrap.submitted .form-label-top {
  display: none;
}
.contact-form-wrap.submitted .success-overlay {
  display: flex;
}

.success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  animation: fadeUp 0.5s 0.2s ease both;
}

.success-text {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.7;
  animation: fadeUp 0.5s 0.35s ease both;
}

.btn-back {
  margin-top: 1rem;
  background: transparent;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  animation: fadeUp 0.5s 0.5s ease both;
}

.btn-back:hover {
  color: var(--ink);
  border-color: rgba(10, 10, 15, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(245, 243, 238, 0.35);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 110, 0.4),
    transparent
  );
}

footer a {
  color: rgba(245, 243, 238, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-strip > * {
  animation: fadeUp 0.7s ease both;
}
.hero-strip > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-strip > *:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-strip > *:nth-child(3) {
  animation-delay: 0.4s;
}

.contact-info {
  animation: fadeUp 0.7s 0.2s ease both;
}
.contact-form-wrap {
  animation: fadeUp 0.7s 0.35s ease both;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  main {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding: 4rem 5%;
  }
  .contact-form-wrap {
    padding: 4rem 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .checkboxes-grid {
    grid-template-columns: 1fr;
  }
  .radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── NAV ─── */
header {
  background: var(--deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 80% at 80% 30%,
      rgba(45, 106, 143, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 5% 90%,
      rgba(200, 169, 110, 0.15) 0%,
      transparent 50%
    ),
    var(--deep);
}

.header-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 80px
  );
}

nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
}
.logo span {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-link.active {
  color: var(--gold);
}

/* ─── HERO STRIP ─── */
.hero-strip {
  position: relative;
  z-index: 10;
  padding: 5rem 5% 7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-strip h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-strip h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-strip p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(245, 243, 238, 0.6);
  max-width: 480px;
  line-height: 1.75;
}

.hero-numbers {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 4rem;
}

.hero-num-item {
}
.hero-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-num-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.4);
  margin-top: 0.3rem;
}

/* ─── FILTER BAR ─── */
.filter-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.filter-btn {
  background: none;
  border: none;
  padding: 1.4rem 1.8rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--ink);
}
.filter-btn.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
  font-weight: 500;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 500;
  border-radius: 50%;
  margin-left: 0.5rem;
}

/* ─── FEATURED CASE ─── */
.featured-section {
  padding: 6rem 5% 0;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
  color: var(--paper);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}

.featured-visual {
  background:
    radial-gradient(
      ellipse 80% 80% at 30% 30%,
      rgba(45, 106, 143, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 60% at 80% 70%,
      rgba(200, 169, 110, 0.25) 0%,
      transparent 50%
    ),
    #12121f;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-visual-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.featured-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.featured-big-metric {
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--paper);
  opacity: 0.12;
  position: absolute;
  bottom: -1rem;
  right: 2rem;
  user-select: none;
}

.metric-showcase {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
}
.metric-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.metric-label {
  font-size: 0.72rem;
  color: rgba(245, 243, 238, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.featured-content {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-client {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.35);
  margin-bottom: 1rem;
}

.featured-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.featured-title em {
  font-style: italic;
  color: var(--gold);
}

.featured-desc {
  font-size: 0.92rem;
  color: rgba(245, 243, 238, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tech-tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 243, 238, 0.5);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.featured-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cs-block h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.cs-block p {
  font-size: 0.82rem;
  color: rgba(245, 243, 238, 0.5);
  line-height: 1.7;
}

/* ─── GRID ─── */
.cases-section {
  padding: 5rem 5% 8rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.case-card {
  background: var(--paper);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  cursor: default;
}

.case-card:hover {
  background: #fff;
}

.case-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.case-card:hover::after {
  width: 100%;
}

.card-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  width: 100%;
}

.category-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cat-automatizacion {
  background: #c8a96e;
}
.cat-ia {
  background: #2d6a8f;
}
.cat-integracion {
  background: #2d7a5f;
}
.cat-cloud {
  background: #7a4a8f;
}

.cat-text-automatizacion {
  color: #a07840;
}
.cat-text-ia {
  color: #2d6a8f;
}
.cat-text-integracion {
  color: #2d7a5f;
}
.cat-text-cloud {
  color: #7a4a8f;
}

.card-client {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

.card-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.card-metric {
  text-align: center;
}

.card-metric-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.card-metric-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.card-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.card-tech-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  background: rgba(10, 10, 15, 0.05);
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--deep);
  color: var(--paper);
  padding: 7rem 5%;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 60px
  );
}

.testimonials-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}
.testimonials-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  position: relative;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-text {
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(245, 243, 238, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--paper);
}
.author-role {
  font-size: 0.75rem;
  color: rgba(245, 243, 238, 0.4);
  margin-top: 0.1rem;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  padding: 7rem 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  border-top: 1px solid var(--rule);
}

.cta-strip h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.cta-strip h2 em {
  font-style: italic;
  color: var(--accent);
}

.cta-strip p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--deep);
  color: var(--paper);
  padding: 1.1rem 2.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: var(--accent);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  padding: 1.1rem 2.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  color: var(--ink);
  border-color: rgba(10, 10, 15, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(245, 243, 238, 0.35);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 110, 0.4),
    transparent
  );
}
footer a {
  color: rgba(245, 243, 238, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 2rem;
}

/* ─── HIDDEN (filter) ─── */
.case-card.hidden {
  display: none;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-strip > * {
  animation: fadeUp 0.7s ease both;
}
.hero-strip > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-strip > *:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-strip > .hero-numbers {
  animation-delay: 0.35s;
}

.featured-card {
  animation: fadeUp 0.8s 0.15s ease both;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-strip {
    grid-template-columns: 1fr;
  }
  .hero-numbers {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-visual {
    min-height: 260px;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .challenge-solution {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    overflow-x: auto;
  }
}
