/* =============================================================

   DESIGN PAGE — SECTION-BY-SECTION REBUILD

   ============================================================= */
.dn-main {
  background: #000;
  color: #fff;
  overflow-x: clip;
}

/* ============================================================= 
BANNER — split layout (type left · work collage right) Shared by branding.html · legacy design.html variant ============================================================= */
.dn-banner {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  padding: 70px 0 60px;
  background: radial-gradient(700px 500px at 10% 50%, rgba(122, 204, 13, 0.08), transparent 65%), linear-gradient(135deg, #000 0%, #0a0a14 50%, #000 100%);
  display: flex;
  align-items: center;
}

/* Subtle decorative image fades in the background */
.dn-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banners/g1.webp') center center / cover no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}

.dn-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.45) 100%);
}

/* Content grid */
.dn-banner-wrap {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .dn-banner {
    min-height: 680px;
    padding: 60px 0 50px;
  }

  .dn-banner-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
}

/* ---------- LEFT: typography + CTA ---------- */
.dn-banner-l {
  position: relative;
}

.dn-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.4);
  color: #c5f07a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.dn-banner-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 10px #7ACC0D;
}

.dn-banner-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 71px);
  line-height: 1.2;
  letter-spacing: -0.48px;
  color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 6px 50px rgba(0, 0, 0, 0.5);
}

.dn-banner-title em {
  font-style: italic;
  background: linear-gradient(90deg, #c5f07a 0%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.dn-banner-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 0 30px;
}

.dn-banner-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e !important;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.32px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(122, 204, 13, 0.4);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(122, 204, 13, 0.55);
}

.dn-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}

.dn-btn-ghost:hover {
  border-color: #7ACC0D;
  background: rgba(122, 204, 13, 0.1);
  transform: translateY(-2px);
}

/* Small stat row under CTAs */
.dn-banner-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 520px;
}

.dn-banner-stats>div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.dn-banner-stats strong {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #c5f07a;
  letter-spacing: -0.16px;
}

.dn-banner-stats span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

/* ---------- RIGHT: work collage (3D floating logos) ---------- */
.dn-banner-r {
  position: relative;
  min-height: 520px;
  perspective: 1600px;
}


@media (max-width: 991px) {
  .dn-banner-r {
    min-height: 440px;
  }
}

@media (max-width: 575px) {
  .dn-banner-r {
    min-height: 340px;
  }
}

.dn-collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
}

/* Each floating logo tile */
.dn-collage-card {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 15px 30px rgba(122, 204, 13, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
  background: #0a0a14;
}

.dn-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* glass sheen */
.dn-collage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 70%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: skewX(-15deg);
  pointer-events: none;
  transition: left 0.8s ease;
  z-index: 2;
}

.dn-collage-card:hover::before {
  left: 120%;
}

.dn-collage-card:hover {
  z-index: 10;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.7), 0 25px 50px rgba(122, 204, 13, 0.3);
}

/* Individual card positions / sizes / tilt */
.dn-collage-card.c1 {
  top: 0;
  left: 0;
  width: 48%;
  aspect-ratio: 1 / 1;
  transform: rotate(-6deg) translateZ(20px);
  animation: dn-float-a 8s ease-in-out infinite;
  z-index: 4;
}

.dn-collage-card.c2 {
  top: 6%;
  right: 0;
  width: 44%;
  aspect-ratio: 1 / 1;
  transform: rotate(5deg) translateZ(40px);
  animation: dn-float-b 9s ease-in-out infinite;
  z-index: 5;
}

.dn-collage-card.c3 {
  bottom: 0;
  left: 18%;
  width: 46%;
  aspect-ratio: 1 / 1;
  transform: rotate(3deg) translateZ(60px);
  animation: dn-float-c 10s ease-in-out infinite;
  z-index: 6;
}

.dn-collage-card.c4 {
  bottom: 8%;
  right: 8%;
  width: 38%;
  aspect-ratio: 1 / 1;
  transform: rotate(-4deg) translateZ(30px);
  animation: dn-float-d 11s ease-in-out infinite;
  z-index: 3;
}

@keyframes dn-float-a {

  0%,
  100% {
    transform: rotate(-6deg) translateZ(20px) translateY(0);
  }

  50% {
    transform: rotate(-6deg) translateZ(20px) translateY(-14px);
  }
}

@keyframes dn-float-b {

  0%,
  100% {
    transform: rotate(5deg) translateZ(40px) translateY(0);
  }

  50% {
    transform: rotate(5deg) translateZ(40px) translateY(-10px);
  }
}

@keyframes dn-float-c {

  0%,
  100% {
    transform: rotate(3deg) translateZ(60px) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateZ(60px) translateY(-16px);
  }
}

@keyframes dn-float-d {

  0%,
  100% {
    transform: rotate(-4deg) translateZ(30px) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateZ(30px) translateY(-8px);
  }
}

/* Floating badge tags over collage */
.dn-collage-badge {
  position: absolute;
  z-index: 8;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #09102e;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.dn-collage-badge.b1 {
  top: -8px;
  right: 10%;
  transform: translateZ(120px);
}

.dn-collage-badge.b2 {
  bottom: -8px;
  left: -2%;
  background: #7ACC0D;
  color: #09102e;
  z-index: 12;
  transform: translateZ(120px);
}

.dn-collage-badge i {
  color: #7ACC0D;
  margin-right: 6px;
}

.dn-collage-badge.b2 i {
  color: #09102e;
}

/* ============================================================= BANNER V2 — AIM / SKY split hero (design.html only · dn-hb-*) ============================================================= */
.dn-hb {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding: 70px 0 40px;
  background: #000;
  color: #fff;
  min-height: 0;
  display: block;
  align-items: initial;
}

/* Mars / planet background image */
.dn-hb-planet {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dn-hb-planet-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Soft dark vignette so text stays readable over the planet */
.dn-hb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.75) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

.dn-hb-inner {
  position: relative;
  z-index: 5;
}

/* ---------- Hero headline split ---------- */
.dn-hb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  min-height: clamp(460px, 62vh, 680px);
  position: relative;
  padding-bottom: 50px;
  column-gap: 40px;
}

.dn-hb-word {
  font-family: 'Inter', 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 10.5vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.64px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.dn-hb-aim {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: start;
}

/* black "eclipse" disc with orange rim */
.dn-hb-eclipse {
  position: absolute;
  left: 8%;
  top: 92%;
  width: clamp(18px, 1.8vw, 26px);
  height: clamp(18px, 1.8vw, 26px);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 0 2px rgba(122, 204, 13, 0.95), 0 0 24px rgba(122, 204, 13, 0.85), 0 0 60px rgba(95, 160, 8, 0.55);
  animation: dn-hb-eclipse-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes dn-hb-eclipse-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(122, 204, 13, 0.9), 0 0 24px rgba(122, 204, 13, 0.8), 0 0 60px rgba(95, 160, 8, 0.5);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(198, 242, 122, 1), 0 0 34px rgba(198, 242, 122, 1), 0 0 90px rgba(95, 160, 8, 0.75);
  }
}

.dn-hb-sky {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}

/* Center description block */
.dn-hb-center {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: 440px;
  justify-self: center;
  padding-top: 18px;
}

.dn-hb-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.dn-hb-projects {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.dn-hb-projects span {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  padding-bottom: 2px;
}

.dn-hb-projects:hover {
  color: #7ACC0D;
  gap: 18px;
}

.dn-hb-projects:hover span {
  border-color: #7ACC0D;
}

/* Tagline in middle-bottom */
.dn-hb-tag {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: center;
  max-width: 440px;
  padding-top: 20px;
}

.dn-hb-tag-bar {
  width: 3px;
  height: 54px;
  background: linear-gradient(180deg, #c6f27a, #7ACC0D);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(122, 204, 13, 0.55);
}

.dn-hb-tag-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: 1.6px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
}

/* ---------- Review / rating logos row ---------- */
.dn-hb-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

.dn-hb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: opacity 0.25s ease;
}

.dn-hb-logo:last-child {
  border-right: none;
}

.dn-hb-logo img {
  max-width: 100%;
  max-height: clamp(26px, 2.4vw, 40px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.dn-hb-logo:hover {
  opacity: 0.75;
}

/* ---------- Stat cards ---------- */
.dn-hb-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.dn-hb-stat {
  position: relative;
  border-radius: 6px;
  padding: 22px 22px 22px;
  min-height: clamp(220px, 22vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.dn-hb-stat:hover {
  transform: translateY(-4px);
}

.dn-hb-stat-dot {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
}

.dn-hb-stat-dot-orange {
  background: #7ACC0D;
  box-shadow: 0 0 10px rgba(122, 204, 13, 0.75);
}

.dn-hb-stat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dn-hb-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38.4px, 4vw, 57.6px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.32px;
}

.dn-hb-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.16px;
  color: rgba(255, 255, 255, 0.92);
}

/* Card color variants */
.dn-hb-bs-orange {
  background: linear-gradient(180deg, #7ACC0D 0%, #5fa008 100%);
}

.dn-hb-bs-orange .dn-hb-stat-dot {
  background: #000;
}

.dn-hb-bs-orange .dn-hb-stat-num,
.dn-hb-bs-orange .dn-hb-stat-label {
  color: #fff;
}

.dn-hb-bs-dark {
  background: #2f2f31;
}

.dn-hb-bs-dark .dn-hb-stat-dot {
  background: #000;
}

.dn-hb-bs-black {
  background: #0c0f14;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dn-hb-bs-light {
  background: #b7b8ba;
  color: #0b0f14;
}

.dn-hb-bs-light .dn-hb-stat-dot {
  background: #e5e6e8;
}

.dn-hb-bs-light .dn-hb-stat-num,
.dn-hb-bs-light .dn-hb-stat-label {
  color: #0b0f14;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .dn-hb-center {
    padding-top: 8px;
  }

  .dn-hb-tag-bar {
    height: 46px;
  }

  section.dn-hb .dn-hb-hero {
    padding: 0 !important;
  }


}

@media (max-width: 991px) {
  .dn-hb {
    padding: 56px 0 30px;
  }

  .dn-hb-hero {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding-bottom: 30px;
    gap: 20px 14px;
  }

  .dn-hb-aim {
    grid-column: 1;
    grid-row: 1;
  }

  .dn-hb-sky {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
  }

  .dn-hb-center {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
    justify-self: stretch;
    padding-top: 10px;
  }

  .dn-hb-tag {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    padding-top: 6px;
  }

  .dn-hb-logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .dn-hb-logo {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dn-hb-logo:nth-child(4n) {
    border-right: none;
  }

  .dn-hb-logo:nth-child(n+5) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dn-hb-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dn-hb-stat {
    min-height: 180px;
  }
}

@media (max-width: 575px) {
  .dn-hb {
    padding: 44px 0 24px;
  }

  .dn-hb-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dn-hb-aim {
    grid-column: 1;
    grid-row: 1;
  }

  .dn-hb-center {
    grid-column: 1;
    grid-row: 2;
    padding-top: 4px;
  }

  .dn-hb-tag {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    padding-top: 0;
  }

  .dn-hb-sky {
    grid-column: 1;
    grid-row: 4;
    justify-self: end;
  }

  .dn-hb-word {
    font-size: clamp(30px, 10vw, 112px);
  }

  .dn-hb-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .dn-hb-logo {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dn-hb-logo:nth-child(2n) {
    border-right: none;
  }

  .dn-hb-logo:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .dn-hb-logo:nth-child(7) {
    grid-column: 1 / -1;
    border-right: none;
  }

  .dn-hb-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .dn-hb-stat {
    min-height: 150px;
    padding: 16px;
  }

  .dn-hb-stat-num {
    font-size: 35.2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dn-hb-eclipse {
    animation: none;
  }

  .dn-hb-stat:hover {
    transform: none;
  }
}

/* ============================================================= CONTENT — bg-gw editorial section (between services + WID) ============================================================= */
.dn-content {
  position: relative;
  padding: clamp(70px, 10vh, 120px) 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.dn-content-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.88) 55%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.dn-content-inner {
  position: relative;
  z-index: 3;
}

/* ---- Intro block ---- */
.dn-content-intro {
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}

.dn-content-bigtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0 0 26px;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.45);
}

.dn-content-bigtitle em {
  font-style: italic;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 50%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.dn-content-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.42);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.dn-content-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 10px #7ACC0D;
}

.dn-content-lead {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  letter-spacing: -0.08px;
}

/* ---- Two-column detail blocks ---- */
.dn-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dn-content-block {
  position: relative;
  padding: 38px 34px 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.dn-content-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #7ACC0D, #c6f27a);
  border-radius: 0 0 3px 3px;
}

.dn-content-block:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 204, 13, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.dn-content-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.22;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.16px;
  margin: 0 0 16px;
}

.dn-content-block p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

@media (max-width: 991px) {
  .dn-content {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .dn-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .dn-content-block {
    padding: 30px 24px 26px;
  }

  .dn-content-block::before {
    left: 24px;
    width: 36px;
  }
}

/* ============================================================= FOCUS — 4 pillars with hero quote ============================================================= */
.dn-focus {
  position: relative;
  padding: clamp(90px, 12vh, 140px) 0;
  background: radial-gradient(1000px 600px at 85% 20%, rgba(122, 204, 13, 0.09), transparent 60%), radial-gradient(800px 600px at 10% 85%, rgba(122, 204, 13, 0.06), transparent 65%), linear-gradient(180deg, #060810 0%, #09102e 55%, #060810 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle grid overlay */
.dn-focus-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at center, rgba(0, 0, 0, 0.9), transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, rgba(0, 0, 0, 0.9), transparent 80%);
  z-index: 0;
  pointer-events: none;
}

/* Floating glow orbs */
.dn-focus-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.dn-focus-glow-1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.55), transparent 65%);
  animation: dn-focus-float 16s ease-in-out infinite;
}

.dn-focus-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(198, 242, 122, 0.4), transparent 65%);
  animation: dn-focus-float 18s ease-in-out infinite -5s;
}

@keyframes dn-focus-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(26px, -30px) scale(1.08);
  }
}

.dn-focus-inner {
  position: relative;
  z-index: 4;
}

/* ---- Hero quote block ---- */
.dn-focus-head {
  max-width: 960px;
  margin: 0 auto clamp(60px, 8vh, 96px);
  text-align: center;
  position: relative;
}

.dn-focus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 24px rgba(122, 204, 13, 0.2);
}

.dn-focus-eyebrow i {
  color: #7ACC0D;
  font-size: 13px;
}

.dn-focus-quote {
  position: relative;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(29px, 4.8vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

.dn-focus-quote em {
  font-style: italic;
  background: linear-gradient(90deg, #c6f27a 0%, #7ACC0D 50%, #c6f27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 0.16em 0 0;
}

.dn-focus-quote-em {
  display: inline-block;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dn-focus-quote-mark {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  color: rgba(122, 204, 13, 0.18);
  top: -5.6px;
  left: -1.6px;
  pointer-events: none;
  z-index: -1;
}

.dn-focus-quote-mark-r {
  top: auto;
  left: auto;
  bottom: -10.4px;
  right: -1.6px;
}

.dn-focus-subline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.1vw, 16.5px);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.32px;
}

/* ---- Pillars grid ---- */
.dn-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dn-focus-pillar {
  position: relative;
  padding: 38px 28px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.dn-focus-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122, 204, 13, 0), transparent);
  transition: background 0.4s ease;
}

.dn-focus-pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(122, 204, 13, 0.45);
  background: rgba(122, 204, 13, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(122, 204, 13, 0.15), 0 0 50px rgba(122, 204, 13, 0.18);
}

.dn-focus-pillar:hover::before {
  background: linear-gradient(90deg, transparent, #7ACC0D, transparent);
}

/* Huge outline number watermark */
.dn-focus-num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Fraunces', serif;
  font-size: 88px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.14);
  color: transparent;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s ease, transform 0.4s ease;
  z-index: 0;
}

.dn-focus-pillar:hover .dn-focus-num {
  -webkit-text-stroke-color: rgba(122, 204, 13, 0.55);
  transform: scale(1.08);
}

.dn-focus-ico {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.22), rgba(122, 204, 13, 0.08));
  border: 1px solid rgba(122, 204, 13, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c6f27a;
  font-size: 26px;
  margin-bottom: 26px;
  box-shadow: 0 10px 24px rgba(122, 204, 13, 0.15);
  z-index: 1;
  transition: transform 0.4s ease;
}

.dn-focus-pillar:hover .dn-focus-ico {
  transform: rotate(-6deg) scale(1.06);
}

.dn-focus-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.16px;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.dn-focus-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 22px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.dn-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.dn-focus-tags span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.64px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.dn-focus-pillar:hover .dn-focus-tags span {
  border-color: rgba(122, 204, 13, 0.4);
  color: #c6f27a;
}

/* Featured pillar — AI */
.dn-focus-pillar-featured {
  background: linear-gradient(145deg, rgba(122, 204, 13, 0.16) 0%, rgba(122, 204, 13, 0.04) 60%, rgba(9, 16, 46, 0.4) 100%);
  border-color: rgba(122, 204, 13, 0.35);
  box-shadow: inset 0 0 0 1px rgba(122, 204, 13, 0.12), 0 20px 50px rgba(122, 204, 13, 0.12);
}

.dn-focus-pillar-featured::before {
  background: linear-gradient(90deg, transparent, #7ACC0D, transparent);
}

.dn-focus-pillar-featured .dn-focus-num {
  -webkit-text-stroke-color: rgba(122, 204, 13, 0.55);
}

.dn-focus-pillar-featured .dn-focus-ico {
  background: linear-gradient(135deg, #7ACC0D, #5fa008);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 32px rgba(122, 204, 13, 0.4);
}

.dn-focus-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #7ACC0D;
  color: #09102e;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(122, 204, 13, 0.4);
  z-index: 2;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .dn-focus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .dn-focus-pillar {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .dn-focus {
    padding: 70px 0;
  }

  .dn-focus-head {
    margin-bottom: 48px;
  }

  .dn-focus-grid {
    grid-template-columns: 1fr;
  }

  .dn-focus-pillar {
    min-height: auto;
    padding: 32px 26px 28px;
  }

  .dn-focus-num {
    font-size: 72px;
    top: 10px;
    right: 18px;
  }

  .dn-focus-ico {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .dn-focus-quote-mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dn-focus-glow {
    animation: none;
  }

  .dn-focus-pillar:hover,
  .dn-focus-pillar:hover .dn-focus-num,
  .dn-focus-pillar:hover .dn-focus-ico {
    transform: none;
  }
}

/* ============================================================= OUR WORK — 4-row alternating marquee (750 x 650 cards) ============================================================= */
.dn-work {
  position: relative;
  padding: clamp(90px, 12vh, 130px) 0 clamp(60px, 8vh, 100px);
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* ---- Head ---- */
.dn-work-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto clamp(56px, 7vh, 90px);
  position: relative;
  z-index: 2;
}

.dn-work-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.dn-work-eyebrow i {
  color: #7ACC0D;
  font-size: 12px;
}

.dn-work-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 18px;
}

.dn-work-title em {
  font-style: italic;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 50%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.dn-work-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 560px;
}

/* ---- Marquee rows ---- */
.dn-work-marquees {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
  /* fade left/right edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.dn-work-row {
  overflow: hidden;
  width: 100%;
}

.dn-work-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

/* Direction variants */
.dn-work-row-left .dn-work-track {
  animation: dn-work-scroll-left 60s linear infinite;
}

.dn-work-row-right .dn-work-track {
  animation: dn-work-scroll-right 60s linear infinite;
}

/* Stagger speeds so rows don't feel locked together */
.dn-work-row:nth-child(1) .dn-work-track {
  animation-duration: 62s;
}

.dn-work-row:nth-child(2) .dn-work-track {
  animation-duration: 74s;
}

.dn-work-row:nth-child(3) .dn-work-track {
  animation-duration: 56s;
}

.dn-work-row:nth-child(4) .dn-work-track {
  animation-duration: 70s;
}

@keyframes dn-work-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes dn-work-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* pause on hover */
.dn-work-row:hover .dn-work-track {
  animation-play-state: paused;
}

/* ---- Individual card ---- */
.dn-work-card {
  position: relative;
  margin: 0;
  flex-shrink: 0;
  width: clamp(280px, 32vw, 440px);
  aspect-ratio: 750 / 650;
  border-radius: 18px;
  overflow: hidden;
  background: #0c0f14;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.dn-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dn-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.dn-work-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(122, 204, 13, 0.35), 0 0 40px rgba(122, 204, 13, 0.18);
}

.dn-work-card:hover img {
  transform: scale(1.06);
}

.dn-work-card:hover::after {
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .dn-work {
    padding: 70px 0 50px;
  }

  .dn-work-marquees {
    gap: 16px;
  }

  .dn-work-track {
    gap: 16px;
  }

  .dn-work-card {
    width: clamp(240px, 44vw, 340px);
  }
}

@media (max-width: 575px) {
  .dn-work {
    padding: 56px 0 40px;
  }

  .dn-work-marquees {
    gap: 12px;
  }

  .dn-work-track {
    gap: 12px;
  }

  .dn-work-card {
    width: clamp(220px, 68vw, 300px);
  }

  .dn-work-row:nth-child(1) .dn-work-track {
    animation-duration: 40s;
  }

  .dn-work-row:nth-child(2) .dn-work-track {
    animation-duration: 48s;
  }

  .dn-work-row:nth-child(3) .dn-work-track {
    animation-duration: 36s;
  }

  .dn-work-row:nth-child(4) .dn-work-track {
    animation-duration: 44s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dn-work-track {
    animation: none !important;
  }

  .dn-work-card:hover {
    transform: none;
  }

  .dn-work-card:hover img {
    transform: none;
  }
}

/* ============================================================= PRICING — 3 design packages (design.html · before contact form) ============================================================= */
.dn-pricing {
  position: relative;
  padding: clamp(90px, 12vh, 140px) 0 clamp(100px, 13vh, 150px);
  background: radial-gradient(1000px 700px at 50% 0%, rgba(122, 204, 13, 0.06), transparent 60%), linear-gradient(180deg, #060809 0%, #0a0b0f 40%, #050608 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.dn-pricing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 1;
}

.dn-pricing-glow-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.38), transparent 65%);
}

.dn-pricing-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(198, 242, 122, 0.22), transparent 65%);
}

.dn-pricing-inner {
  position: relative;
  z-index: 4;
}

/* ---- Head ---- */
.dn-pricing-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vh, 90px);
}

.dn-pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 22px rgba(122, 204, 13, 0.2);
}

.dn-pricing-eyebrow i {
  color: #7ACC0D;
  font-size: 13px;
}

.dn-pricing-title {
  margin: 0 0 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4.8vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
}

.dn-pricing-title em {
  font-style: italic;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 50%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.dn-pricing-sub {
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.1vw, 16px);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
}

/* ---- Grid ---- */
.dn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Individual tier ---- */
.dn-price {
  position: relative;
  padding: 38px 32px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.dn-price:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(122, 204, 13, 0.18);
}

/* Tier header */
.dn-price-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dn-price-tier {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.dn-price-tier i {
  font-size: 12px;
  color: #7ACC0D;
}

.dn-price-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

/* Price */
.dn-price-amt {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Inter', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.32px;
}

.dn-price-amt sup {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  top: -12.8px;
}

.dn-price-amt-num {
  font-size: clamp(42px, 4.2vw, 58px);
}

.dn-price-amt small {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  align-self: center;
}

/* Features */
.dn-price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.dn-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.dn-price-features i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(122, 204, 13, 0.18);
  color: #7ACC0D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

/* Tier CTA */
.dn-price-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  gap: 10px;
  height: 50px !important;
  min-height: 0 !important;
  max-height: 50px !important;
  padding: 0 22px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  margin-top: auto;
  box-sizing: border-box !important;
  width: auto !important;
  max-width: 280px !important;
}

.dn-price-cta i {
  transition: transform 0.3s ease;
}

.dn-price-cta:hover {
  background: #7ACC0D;
  color: #0a0b0f;
  border-color: #7ACC0D;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(122, 204, 13, 0.4);
}

.dn-price-cta:hover i {
  transform: translateX(3px);
}

/* ---- Featured tier ---- */
.dn-price-growth {
  background: linear-gradient(180deg, rgba(122, 204, 13, 0.16) 0%, rgba(122, 204, 13, 0.04) 60%, rgba(9, 16, 46, 0.4) 100%);
  border-color: rgba(122, 204, 13, 0.45);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(122, 204, 13, 0.18), 0 0 60px rgba(122, 204, 13, 0.2);
  transform: translateY(-12px);
}

.dn-price-growth:hover {
  transform: translateY(-18px);
  border-color: rgba(122, 204, 13, 0.6);
}

.dn-price-growth .dn-price-tier {
  background: rgba(122, 204, 13, 0.14);
  border-color: rgba(122, 204, 13, 0.4);
  color: #c6f27a;
}

.dn-price-growth .dn-price-tier i {
  color: #c6f27a;
}

/* Ribbon */
.dn-price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #7ACC0D;
  color: #0a0b0f;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(122, 204, 13, 0.5);
  white-space: nowrap;
}

.dn-price-ribbon i {
  font-size: 11px;
}

/* Featured CTA — solid green */
.dn-price-cta-hero {
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa008 100%);
  color: #0a0b0f;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(122, 204, 13, 0.45);
}

.dn-price-cta-hero:hover {
  background: linear-gradient(135deg, #c6f27a 0%, #7ACC0D 100%);
  color: #0a0b0f;
  box-shadow: 0 24px 44px rgba(122, 204, 13, 0.6);
}

/* ---- Reassure row ---- */
.dn-pricing-reassure {
  margin: clamp(40px, 5vh, 60px) auto 0;
  max-width: 680px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.dn-pricing-reassure i {
  color: #7ACC0D;
  font-size: 16px;
  flex-shrink: 0;
}

.dn-pricing-reassure a {
  color: #c6f27a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.dn-pricing-reassure a:hover {
  color: #7ACC0D;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  body .dn-price-cta {
    padding: 14px 22px !important;
  }
}

@media (max-width: 991px) {
  .dn-pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
  }

  .dn-price-growth {
    transform: translateY(0);
  }

  .dn-price-growth:hover {
    transform: translateY(-6px);
  }

  .dn-price {
    padding: 32px 26px 28px;
  }

  .dn-pricing-reassure {
    flex-direction: column;
    padding: 18px 24px;
    border-radius: 18px;
  }
}

@media (max-width: 575px) {
  .dn-pricing {
    padding: 70px 0 80px;
  }

  .dn-price {
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .dn-price-amt-num {
    font-size: 38px;
  }

  .dn-price-features li {
    font-size: 14px;
  }

  .dn-price-cta {
    height: 44px !important;
    max-height: 44px !important;
    padding: 0 18px !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    max-width: 240px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dn-price:hover,
  .dn-price-growth:hover,
  .dn-price-cta:hover {
    transform: none;
  }

  .dn-price-cta:hover i {
    transform: none;
  }
}

/* ============================================================= INQUIRY FORM — premium split (pitch + glass form card) ============================================================= */
.dn-form {
  position: relative;
  padding: clamp(90px, 12vh, 140px) 0;
  background: radial-gradient(900px 600px at 12% 15%, rgba(122, 204, 13, 0.10), transparent 60%), radial-gradient(700px 500px at 90% 88%, rgba(198, 242, 122, 0.06), transparent 65%), linear-gradient(180deg, #060810 0%, #09102e 55%, #060810 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.dn-form-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at center, rgba(0, 0, 0, 0.9), transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, rgba(0, 0, 0, 0.9), transparent 80%);
  z-index: 0;
  pointer-events: none;
}

.dn-form-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.dn-form-glow-1 {
  width: 440px;
  height: 440px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.55), transparent 65%);
}

.dn-form-glow-2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(198, 242, 122, 0.4), transparent 65%);
}

.dn-form-inner {
  position: relative;
  z-index: 4;
}

.dn-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}

/* ================ LEFT: pitch ================ */
.dn-form-pitch {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.dn-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  align-self: flex-start;
  box-shadow: 0 0 22px rgba(122, 204, 13, 0.2);
}

.dn-form-eyebrow i {
  color: #7ACC0D;
  font-size: 12.5px;
}

.dn-form-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 22px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.35);
}

.dn-form-title em {
  font-style: italic;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 50%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.dn-form-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 36px;
  max-width: 460px;
}

/* Contact rows */
.dn-form-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.dn-form-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dn-form-contact:hover {
  transform: translateX(4px);
  border-color: rgba(122, 204, 13, 0.4);
  background: rgba(122, 204, 13, 0.06);
  box-shadow: 0 14px 34px rgba(122, 204, 13, 0.15);
}

.dn-form-contact-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.22), rgba(122, 204, 13, 0.06));
  border: 1px solid rgba(122, 204, 13, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c6f27a;
  font-size: 17px;
  transition: all 0.35s ease;
}

.dn-form-contact:hover .dn-form-contact-ico {
  background: #7ACC0D;
  color: #09102e;
  border-color: transparent;
}

.dn-form-contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dn-form-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.dn-form-contact-val {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.08px;
}

/* Promise list */
.dn-form-promises {
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dn-form-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.dn-form-promises i {
  color: #7ACC0D;
  font-size: 16px;
  font-weight: 700;
}

/* ================ RIGHT: form card ================ */
.dn-form-card {
  position: relative;
  padding: clamp(28px, 3.6vw, 44px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dn-form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ACC0D, transparent);
  border-radius: 0 0 2px 2px;
}

.dn-form-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.dn-form-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.16px;
  color: #fff;
  margin: 0;
}

.dn-form-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.96px;
  color: rgba(255, 255, 255, 0.72);
}

.dn-form-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 10px #7ACC0D;
  animation: dn-form-dot 2s ease-in-out infinite;
}

@keyframes dn-form-dot {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Form rows */
.dn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 14px;
}

/* Floating-label field */
.dn-field {
  position: relative;
  display: block;
  padding: 18px 0 8px;
}

.dn-field input,
.dn-field select,
.dn-field textarea {
  width: 100%;
  padding: 8px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease;
}

.dn-field textarea {
  resize: vertical;
  min-height: 96px;
  padding-top: 12px;
}

.dn-field select {
  padding-right: 28px;
  cursor: pointer;
}

.dn-field select option {
  background: #0b0e1b;
  color: #fff;
}

.dn-field-label {
  position: absolute;
  left: 0;
  top: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dn-field-label em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

/* Float on focus / filled */
.dn-field input:focus+.dn-field-label,
.dn-field input:not(:placeholder-shown)+.dn-field-label,
.dn-field textarea:focus+.dn-field-label,
.dn-field textarea:not(:placeholder-shown)+.dn-field-label,
.dn-field select:focus+.dn-field-label,
.dn-field select:valid+.dn-field-label {
  top: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  color: #c6f27a;
}

/* Animated focus line */
.dn-field-line {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7ACC0D, #c6f27a);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.dn-field input:focus~.dn-field-line,
.dn-field textarea:focus~.dn-field-line,
.dn-field select:focus~.dn-field-line {
  width: 100%;
}

.dn-field-textarea .dn-field-line {
  bottom: 4px;
}

.dn-field-chev {
  position: absolute;
  right: 4px;
  top: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.dn-field select:focus~.dn-field-chev {
  color: #c6f27a;
}

/* Actions row */
.dn-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.dn-form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  max-width: 280px;
  line-height: 1.45;
}

.dn-form-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dn-form-consent-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: transparent;
  font-size: 14px;
}

.dn-form-consent input:checked+.dn-form-consent-box {
  background: #7ACC0D;
  border-color: #7ACC0D;
  color: #09102e;
  box-shadow: 0 0 16px rgba(122, 204, 13, 0.55);
}

.dn-form-consent a {
  color: #c6f27a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa008 100%);
  color: #09102e;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.32px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(122, 204, 13, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease;
}

.dn-form-submit i {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.dn-form-submit:hover {
  transform: translateY(-2px);
  gap: 16px;
  box-shadow: 0 22px 44px rgba(122, 204, 13, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.dn-form-submit:hover i {
  transform: translateX(3px);
}

.dn-form-submit:active {
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .dn-form {
    padding: 70px 0;
  }

  .dn-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dn-form-pitch {
    padding: 0;
  }

  .dn-form-lead {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .dn-form {
    padding: 56px 0;
  }

  .dn-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dn-form-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .dn-form-card::before {
    left: 22px;
    right: 22px;
  }

  .dn-form-card-head {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .dn-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dn-form-consent {
    max-width: none;
  }

  .dn-form-submit {
    justify-content: center;
    width: 100%;
  }

  .dn-form-contact {
    padding: 14px 16px;
  }

  .dn-form-contact-val {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dn-form-card-dot {
    animation: none;
  }

  .dn-form-contact:hover,
  .dn-form-submit:hover {
    transform: none;
  }
}

/* ============================================================= WHAT WE DO — 3x2 services grid (cream bg · white cards · green accent) ============================================================= */
.dn-wid {
  background: #f3efe7;
  padding: var(--sec-py-lg) 0;
  color: #09102e;
}

.dn-wid-head {
  text-align: center;
  margin: 0 auto 56px;
}

.dn-wid-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.32px;
  color: #09102e;
  margin: 0;
}

.dn-wid-head h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #7ACC0D 0%, #3d7c00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.dn-wid-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(9, 16, 46, 0.68);
  max-width: 640px;
  margin: 18px auto 0;
  font-weight: 400;
}

.dn-wid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .dn-wid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

.dn-wid-grid> :last-child:nth-child(odd) aside.dn-wid-cta{
    grid-template-columns: 1fr;
    grid-column: 1 / 3;
    justify-self: center;
    width: 50%;}



}

@media (max-width: 575px) {
  .dn-wid-grid {
    grid-template-columns: 1fr;
  }
}

/* Service card */
.dn-wid-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 36px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(9, 16, 46, 0.04);
}

.dn-wid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(9, 16, 46, 0.12);
}

/* Icon block (SVG or emoji-style with brand colors) */
.dn-wid-ico {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #09102e;
  font-size: 38px;
  margin-bottom: 60px;
  position: relative;
}

.dn-wid-ico::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: #7ACC0D;
  border-radius: 6px;
  bottom: -2px;
  right: -4px;
  z-index: 1;
}

.dn-wid-ico i {
  position: relative;
  z-index: 2;
}

.dn-wid-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.16px;
  color: #09102e;
  margin: 0 0 12px;
}

.dn-wid-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #6a7090;
  margin: 0 0 18px;
}

.dn-wid-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3d7c00;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.32px;
  transition: color 0.2s, gap 0.2s;
}

.dn-wid-more:hover {
  color: #7ACC0D;
  gap: 12px;
}

.dn-wid-more i {
  font-size: 14px;
}

/* Decorative flying airplane — sits next to the CTA card on the last row */
.dn-wid-plane {
  grid-column: span 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 40px;
  pointer-events: none;
  overflow: hidden;
}

.dn-plane-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
}

.dn-plane-trail-path {
  stroke-dashoffset: 0;
  animation: dn-plane-dash 3s linear infinite;
}

@keyframes dn-plane-dash {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -56;
  }
}

.dn-plane-svg {
  position: relative;
  z-index: 2;
  width: clamp(240px, 38%, 380px);
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(122, 204, 13, 0.32));
  animation: dn-plane-fly 4s ease-in-out infinite;
  transform-origin: 30% 60%;
}

.dn-rocket-flames {
  transform-origin: 70px 100px;
  animation: dn-rocket-flame 0.18s ease-in-out infinite alternate;
}

@keyframes dn-plane-fly {

  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateX(16px) translateY(-12px) rotate(-7deg);
  }
}

@keyframes dn-rocket-flame {
  0% {
    transform: scaleX(1) scaleY(1);
    opacity: 0.95;
  }

  100% {
    transform: scaleX(1.18) scaleY(0.92);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dn-plane-svg,
  .dn-plane-trail-path {
    animation: none;
  }
}

@media (max-width: 991px) {
  .dn-wid-plane {
    display: none;
  }
}

/* Last card — Let's Talk CTA */
.dn-wid-cta {
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 36px 32px;
  min-height: 320px;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(122, 204, 13, 0.35);
  position: relative;
  overflow: hidden;
}

.dn-wid-cta::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.dn-wid-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 10px;
  letter-spacing: 0.32px;
}

.dn-wid-cta h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.24px;
  color: #ffffff;
  margin: 0 0 auto;
}

.dn-wid-cta h3 em {
  font-style: italic;
  color: #09102e;
}

.dn-wid-cta-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #ffffff;
  color: #09102e !important;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 24px rgba(9, 16, 46, 0.18);
  margin-top: 24px;
}

.dn-wid-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(9, 16, 46, 0.28);
  color: #09102e !important;
}

/* ============================================================= SERVICES — Editorial listing banner (after hero banner) ============================================================= */
.dn-svc {
  position: relative;
  padding: 110px 0 90px;
  background-color: #000;
  overflow: hidden;
  color: #fff;
}

.dn-svc-overlay {
  display: none;
}

.dn-svc-inner {
  position: relative;
  z-index: 5;
}

/* --- Title row --- */
.dn-svc-head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 72px;
  position: relative;
}

.dn-svc-title-big {
  position: relative;
  font-family: 'Inter', 'Arial Black', sans-serif;
  font-size: clamp(35px, 7vw, 144px);
  font-weight: 900;
  letter-spacing: -0.48px;
  line-height: 0.9;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  padding-left: 28px;
  white-space: nowrap;
}

.dn-svc-glow {
  position: absolute;
  top: 42%;
  left: -14px;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 242, 122, 1) 0%, rgba(122, 204, 13, 0.9) 24%, rgba(95, 160, 8, 0.35) 55%, rgba(95, 160, 8, 0.08) 75%, transparent 85%);
  filter: blur(4px);
  box-shadow: 0 0 50px rgba(122, 204, 13, 0.85), 0 0 110px rgba(122, 204, 13, 0.45), 0 0 180px rgba(95, 160, 8, 0.25);
  animation: dn-svc-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes dn-svc-glow-pulse {

  0%,
  100% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
  }
}

.dn-svc-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(122, 204, 13, 1) 0%, rgba(122, 204, 13, 0.7) 45%, rgba(122, 204, 13, 0) 100%);
  min-width: 80px;
}

/* --- Service list --- */
.dn-svc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dn-svc-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 26px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: background 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dn-svc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(122, 204, 13, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.dn-svc-item:hover::before {
  opacity: 1;
}

.dn-svc-item-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.dn-svc-item-num {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2.88px;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.dn-svc-item:hover .dn-svc-item-num {
  border-color: rgba(122, 204, 13, 0.9);
  color: #fff;
  background: rgba(122, 204, 13, 0.14);
  box-shadow: 0 0 18px rgba(122, 204, 13, 0.35);
}

.dn-svc-item-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 300;
  letter-spacing: 0.64px;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.1;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dn-svc-item:hover .dn-svc-item-name {
  transform: translateX(12px);
}

.dn-svc-item-fig {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 4.5;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.dn-svc-item-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dn-svc-item:hover .dn-svc-item-fig img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .dn-svc {
    padding: 80px 0 60px;
  }

  .dn-svc-head {
    margin-bottom: 54px;
    gap: 22px;
  }

  .dn-svc-glow {
    width: 48px;
    height: 48px;
    left: -10px;
  }

  .dn-svc-title-big {
    padding-left: 22px;
  }

  .dn-svc-item {
    gap: 28px;
    padding: 22px 2px;
  }

  .dn-focus-pill {
    top: 0px;
    left: 0;
  }



}

@media (max-width: 767px) {
  .dn-svc {
    padding: 60px 0 40px;
  }

  .dn-svc-title-big {
    padding-left: 18px;
  }

  .dn-svc-glow {
    width: 38px;
    height: 38px;
    left: -8px;
    top: 46%;
  }

  .dn-svc-head {
    margin-bottom: 40px;
    gap: 16px;
  }

  .dn-svc-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .dn-svc-item-meta {
    gap: 16px;
  }

  .dn-svc-item-num {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .dn-svc-item-fig {
    aspect-ratio: 16 / 7;
  }

.dn-wid-ico {
    margin-bottom: 30px;
}

.dn-wid-card {
    padding: 25px 26px 22px;
    min-height: 220px;
}


}

@media (prefers-reduced-motion: reduce) {
  .dn-svc-glow {
    animation: none;
  }

  .dn-svc-item:hover .dn-svc-item-name,
  .dn-svc-item:hover .dn-svc-item-fig img {
    transform: none;
  }
}

/* ============================================================= LOGO SHOWCASE — branding.html · big bento, dark ============================================================= */
.br-logos {
  position: relative;
  padding: clamp(90px, 12vh, 140px) 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.86) 0%, rgba(9, 16, 46, 0.82) 50%, rgba(5, 6, 8, 0.9) 100%), radial-gradient(1100px 700px at 80% 10%, rgba(122, 204, 13, 0.10), transparent 60%), radial-gradient(900px 600px at 10% 90%, rgba(198, 242, 122, 0.06), transparent 65%), url('../images/banners/g3.webp') center center / cover no-repeat, #050608;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.br-logos-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 75% at center, rgba(0, 0, 0, 0.9), transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at center, rgba(0, 0, 0, 0.9), transparent 85%);
  z-index: 0;
  pointer-events: none;
}

.br-logos-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.br-logos-glow-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.55), transparent 65%);
  animation: br-logos-float 18s ease-in-out infinite;
}

.br-logos-glow-2 {
  width: 440px;
  height: 440px;
  bottom: -140px;
  left: -140px;
  background: radial-gradient(circle, rgba(198, 242, 122, 0.4), transparent 65%);
  animation: br-logos-float 22s ease-in-out infinite -7s;
}

@keyframes br-logos-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.br-logos-inner {
  position: relative;
  z-index: 4;
}

/* ---- Header ---- */
.br-logos-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vh, 90px);
}

.br-logos-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 22px rgba(122, 204, 13, 0.2);
}

.br-logos-eyebrow i {
  color: #7ACC0D;
  font-size: 12.5px;
}

.br-logos-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

.br-logos-title em {
  font-style: italic;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 50%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.br-logos-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto;
  max-width: 600px;
}

/* ---- Big showcase grid ---- */
.br-logos-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 2.4vw, 36px);
  max-width: 1240px;
  margin: 0 auto;
}

/* Base tile — big showcase card */
.br-logo-tile {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  min-height: clamp(460px, 46vw, 620px);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.55s ease;
  will-change: transform;
  isolation: isolate;
}

/* Ambient green glow — hidden until hover */
.br-logo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(122, 204, 13, 0.18), transparent 60%), radial-gradient(circle at 80% 90%, rgba(198, 242, 122, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

/* Thin green accent bar on top — expands on hover */
.br-logo-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  right: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ACC0D, transparent);
  opacity: 0;
  transition: opacity 0.45s ease, left 0.55s ease, right 0.55s ease;
  z-index: 3;
}

/* Corner number — editorial watermark */
.br-tile-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2.88px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
  transition: color 0.35s ease;
}

.br-tile-num::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-right: 8px;
  vertical-align: middle;
  transition: background 0.35s ease, width 0.45s ease;
}

/* Stage — the showcase logo area */
.br-tile-stage {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: clamp(18px, 1.8vw, 26px);
  padding-top: clamp(48px, 5vw, 60px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Subtle inner backdrop behind the logo */
.br-tile-stage::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 1.6vw, 22px);
  inset-block-start: clamp(46px, 4.8vw, 58px);
  border-radius: 12px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
  transition: background 0.55s ease;
  z-index: 0;
}

.br-logo-tile img {
  width: 100%;
  height: 100%;
  max-height: clamp(360px, 42vw, 540px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  filter: saturate(0.95) brightness(1);
  position: relative;
  z-index: 1;
  transition: filter 0.55s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Footer caption bar */
.br-tile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.35s ease, border-color 0.35s ease;
  position: relative;
  z-index: 2;
}

.br-tile-cat {
  color: rgba(255, 255, 255, 0.85);
}

.br-tile-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.35s ease;
}

.br-tile-year {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2.88px;
}

/* ---- Hover state ---- */
.br-logo-tile:hover {
  transform: translateY(-10px);
  border-color: rgba(122, 204, 13, 0.5);
  background: rgba(122, 204, 13, 0.04);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(122, 204, 13, 0.25), 0 0 80px rgba(122, 204, 13, 0.22);
}

.br-logo-tile:hover::before {
  opacity: 1;
}

.br-logo-tile:hover::after {
  opacity: 1;
  left: 0;
  right: 0;
}

.br-logo-tile:hover img {
  filter: saturate(1.1) brightness(1.04);
  transform: scale(1.05);
}

.br-logo-tile:hover .br-tile-num {
  color: #c6f27a;
}

.br-logo-tile:hover .br-tile-num::before {
  background: #7ACC0D;
  width: 28px;
}

.br-logo-tile:hover .br-tile-meta {
  border-top-color: rgba(122, 204, 13, 0.28);
  color: rgba(255, 255, 255, 0.85);
}

.br-logo-tile:hover .br-tile-cat {
  color: #c6f27a;
}

.br-logo-tile:hover .br-tile-dot {
  background: #7ACC0D;
  box-shadow: 0 0 10px rgba(122, 204, 13, 0.7);
}

.br-logo-tile:hover .br-tile-stage::before {
  background: radial-gradient(ellipse at center, rgba(122, 204, 13, 0.06), transparent 70%);
}

/* ---- Footer CTA ---- */
.br-logos-foot {
  text-align: center;
  margin-top: clamp(48px, 6vh, 72px);
}

.br-logos-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa008 100%);
  color: #09102e;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.32px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(122, 204, 13, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, gap 0.25s ease;
}

.br-logos-cta i {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.br-logos-cta:hover {
  transform: translateY(-2px);
  gap: 16px;
  color: #09102e;
  box-shadow: 0 22px 44px rgba(122, 204, 13, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.br-logos-cta:hover i {
  transform: translateX(3px);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .br-logos {
    padding: 70px 0;
  }

  .br-logos-bento {
    gap: 20px;
  }

  .br-logo-tile {
    min-height: clamp(400px, 60vw, 540px);
    border-radius: 20px;
  }

  .br-tile-num {
    top: 16px;
    left: 20px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .br-logos {
    padding: 56px 0;
  }

  .br-logos-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .br-logo-tile {
    min-height: clamp(380px, 95vw, 520px);
    border-radius: 18px;
  }

  .br-tile-stage {
    padding: 20px;
    padding-top: 50px;
  }

  .br-tile-meta {
    padding: 14px 18px 18px;
    font-size: 11px;
    gap: 10px;
  }

  .br-tile-num {
    top: 14px;
    left: 18px;
    font-size: 12.5px;
    letter-spacing: 2.56px;
  }

  .br-tile-num::before {
    width: 14px;
    margin-right: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .br-logos-glow {
    animation: none;
  }

  .br-logo-tile:hover {
    transform: none;
  }

  .br-logo-tile:hover img {
    transform: none;
  }

  .br-logos-cta:hover {
    transform: none;
  }
}

/* ============================================================= BUSINESS CARDS — 2-up large showcase (branding.html) ============================================================= */
.br-cards {
  position: relative;
  padding: clamp(100px, 13vh, 150px) 0 clamp(80px, 10vh, 120px);
  background: linear-gradient(180deg, rgba(8, 9, 20, 0.88) 0%, rgba(10, 15, 38, 0.82) 50%, rgba(8, 9, 20, 0.92) 100%), radial-gradient(900px 700px at 85% 15%, rgba(168, 24, 91, 0.18), transparent 60%), radial-gradient(900px 700px at 10% 85%, rgba(29, 46, 107, 0.22), transparent 60%), url('../images/banners/g2.webp') center center / cover no-repeat, #080914;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  perspective: 2000px;
}

/* Subtle noise overlay for print feel */
.br-cards-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.br-cards-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 1;
}

.br-cards-glow-1 {
  width: 620px;
  height: 620px;
  top: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.35), transparent 65%);
  animation: br-cards-float 20s ease-in-out infinite;
}

.br-cards-glow-2 {
  width: 560px;
  height: 560px;
  bottom: -180px;
  left: -180px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.3), transparent 65%);
  animation: br-cards-float 24s ease-in-out infinite -8s;
}

@keyframes br-cards-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -40px) scale(1.12);
  }
}

/* Huge watermark display text behind everything */
.br-cards-display {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  width: max-content;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 700;
  letter-spacing: -0.64px;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.br-cards-inner {
  position: relative;
  z-index: 4;
}

/* ---- Head ---- */
.br-cards-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(64px, 8vh, 110px);
}

.br-cards-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(232, 67, 147, 0.14);
  border: 1px solid rgba(232, 67, 147, 0.4);
  color: #f5a1c6;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 22px rgba(232, 67, 147, 0.18);
}

.br-cards-eyebrow i {
  color: #e84393;
  font-size: 12.5px;
}

.br-cards-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.br-cards-title em {
  font-style: italic;
  background: linear-gradient(90deg, #e84393 0%, #f5a1c6 50%, #e84393 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.br-cards-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto;
  max-width: 580px;
}

/* ---- 2-up stage ---- */
.br-cards-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
  perspective: 1800px;
}

/* ---- Individual showcase ---- */
.br-card-show {
  position: relative;
  padding: clamp(26px, 2.6vw, 38px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s ease, background 0.5s ease, box-shadow 0.6s ease;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 22px;
  will-change: transform;
}

/* Default tilt — alternating counter-angles */
.br-card-a {
  transform: rotate(-1.8deg) translateY(8px);
}

.br-card-b {
  transform: rotate(1.8deg) translateY(0);
}

/* Gentle idle float */
.br-card-show {
  animation: br-card-idle 6s ease-in-out infinite;
}

.br-card-a {
  animation-delay: 0s;
}

.br-card-b {
  animation-delay: -3s;
}

@keyframes br-card-idle {

  0%,
  100% {
    transform: translateY(0) rotate(var(--tilt, -1.8deg));
  }

  50% {
    transform: translateY(-10px) rotate(var(--tilt, -1.8deg));
  }
}

.br-card-a {
  --tilt: -1.8deg;
}

.br-card-b {
  --tilt: 1.8deg;
}

/* Ambient inner glow */
.br-card-show::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, var(--glow, rgba(232, 67, 147, 0.2)), transparent 45%);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 0;
}

.br-card-a {
  --glow: rgba(232, 67, 147, 0.25);
}

.br-card-b {
  --glow: rgba(122, 165, 230, 0.22);
}

/* Top accent strip */
.br-card-show::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent, #e84393), transparent);
  border-radius: 0 0 3px 3px;
  opacity: 0.6;
  transition: opacity 0.5s ease, left 0.6s ease, right 0.6s ease;
  z-index: 2;
}

.br-card-a {
  --accent: #e84393;
}

.br-card-b {
  --accent: #7ACC0D;
}

/* ---- Header row ---- */
.br-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.br-card-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 13.5px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 3.2px;
  color: rgba(255, 255, 255, 0.7);
}

.br-card-num-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.5s ease, background 0.4s ease;
}

.br-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

/* ---- Figure ---- */
.br-card-fig {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  aspect-ratio: 1 / 1;
  z-index: 2;
}

/* Drop-shadow under the card mockup */
.br-card-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -12px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(12px);
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.br-card-fig img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}

/* ---- Footer ---- */
.br-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 6px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.br-card-name {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(19px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.16px;
  color: #fff;
}

.br-card-name span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.br-card-palette {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 4px;
}

.br-card-palette span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease;
}

.br-card-show:hover .br-card-palette span:nth-child(1) {
  transform: translateY(-3px);
}

.br-card-show:hover .br-card-palette span:nth-child(2) {
  transform: translateY(-3px);
  transition-delay: 0.06s;
}

.br-card-show:hover .br-card-palette span:nth-child(3) {
  transform: translateY(-3px);
  transition-delay: 0.12s;
}

.br-card-show:hover .br-card-palette span:nth-child(4) {
  transform: translateY(-3px);
  transition-delay: 0.18s;
}

/* Corner badge */
.br-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
}

.br-card-badge i {
  color: var(--accent, #e84393);
  font-size: 11px;
}

/* ---- Hover ---- */
.br-card-show:hover {
  animation-play-state: paused;
  transform: translateY(-12px) rotate(0) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 80px var(--glow, rgba(232, 67, 147, 0.25));
}

.br-card-show:hover::before {
  opacity: 1;
}

.br-card-show:hover::after {
  opacity: 1;
  left: 0;
  right: 0;
}

.br-card-show:hover .br-card-fig img {
  transform: scale(1.04);
  filter: saturate(1.15) brightness(1.02);
}

.br-card-show:hover .br-card-shadow {
  opacity: 0.95;
  transform: translateY(4px) scaleX(1.05);
}

.br-card-show:hover .br-card-num-line {
  width: 44px;
  background: var(--accent, #e84393);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .br-cards {
    padding: 80px 0 60px;
  }

  .br-cards-stage {
    grid-template-columns: 1fr;
    gap: 44px;
    max-width: 520px;
  }

  .br-card-a,
  .br-card-b {
    transform: none;
  }

  .br-card-a {
    --tilt: 0deg;
  }

  .br-card-b {
    --tilt: 0deg;
  }

  .br-cards-display {
    font-size: clamp(70px, 20vw, 140px);
  }
}

@media (max-width: 575px) {
  .br-cards {
    padding: 60px 0 40px;
  }

  .br-card-show {
    padding: 22px;
    border-radius: 22px;
    gap: 16px;
  }

  .br-card-badge {
    top: 14px;
    right: 14px;
    padding: 5px 11px;
    font-size: 10px;
  }

  .br-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .br-card-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .br-card-palette span {
    width: 14px;
    height: 14px;
  }

  .br-cards-display {
    bottom: -2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .br-cards-glow {
    animation: none;
  }

  .br-card-show {
    animation: none;
  }

  .br-card-a,
  .br-card-b {
    transform: none;
  }

  .br-card-show:hover {
    transform: none;
  }

  .br-card-show:hover .br-card-fig img {
    transform: none;
  }

  .br-card-show:hover .br-card-palette span {
    transform: none !important;
    transition: none;
  }
}

/* Mobile: turn the floating 3D collage into a clean 2x2 grid and remove the "Real Work" badge (kept "Crafted in Figma" pill below). */
@media (max-width: 767px) {
  .dn-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
    transform-style: flat;
    padding: 0 0 80px;
    position: relative;
  }

  .dn-collage-card.c1,
  .dn-collage-card.c2,
  .dn-collage-card.c3,
  .dn-collage-card.c4 {
    position: static !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    transform: none !important;
    animation: none !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    border-radius: 18px;
    border: 2px solid #7ACC0D;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(122, 204, 13, 0.25), 0 0 18px rgba(122, 204, 13, 0.22);
  }

  .dn-collage-card.c1:hover,
  .dn-collage-card.c2:hover,
  .dn-collage-card.c3:hover,
  .dn-collage-card.c4:hover {
    border-color: #c5f07a;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(122, 204, 13, 0.4), 0 0 28px rgba(122, 204, 13, 0.4);
  }

  .dn-collage-badge.b1 {
    display: none !important;
  }

  .dn-collage-badge.b2 {
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) translateZ(0) !important;
    white-space: nowrap;
    margin-top: 28px;
  }
}