/* ============================================
   FORGE STUDIOS | Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --black:       #ffffff;
  --surface:     #f5f5f5;
  --surface2:    #ebebeb;
  --border:      rgba(0, 0, 0, 0.08);
  --white:       #0d0d0d;
  --muted:       #777777;
  --orange:      #f59421;
  --purple:      #753a96;
  --gradient:    linear-gradient(135deg, #f59421 0%, #753a96 100%);
  --gradient-r:  linear-gradient(135deg, #753a96 0%, #f59421 100%);
  --font:        'Montserrat', sans-serif;
  --nav-h:       80px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

/* ── Gradient Text ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Tag / Label ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

/* The short orange bar that used to sit before every .tag label has been
   removed. It read as an em dash in front of headings. */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
}

.btn-primary:hover {
  background: #e8860e;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 148, 33, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-gradient {
  background: var(--gradient);
  color: #ffffff;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 148, 33, 0.25);
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

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

/* ── Divider ── */
.divider {
  display: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
}

.nav-logo .logo-forge {
  color: var(--orange);
}

.nav-logo .logo-studios {
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 24px;
  background: var(--orange);
  color: #ffffff;
  border-radius: 3px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #e8860e;
  box-shadow: 0 6px 20px rgba(245, 148, 33, 0.3);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 148, 33, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-glow2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(117, 58, 150, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero split layout ── */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - var(--nav-h));
}

/* ── Hero visual wrapper ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Phone mockup ── */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.js-anim .phone-mockup {
  opacity: 0;
}

/* Floor shadow */
.phone-shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 75%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

/* Glow behind */
.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 440px;
  background: radial-gradient(ellipse, rgba(245,148,33,0.14) 0%, rgba(117,58,150,0.09) 50%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}

/* Phone body */
.phone-frame {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 530px;
  background: linear-gradient(145deg, #2c2c2c 0%, #141414 60%, #1e1e1e 100%);
  border-radius: 50px;
  padding: 16px 14px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    0 0 0 1px #0a0a0a,
    3px 6px 0 1px #0d0d0d,
    0 40px 80px rgba(0,0,0,0.35),
    0 16px 32px rgba(0,0,0,0.2),
    -8px 0 30px rgba(245,148,33,0.07);
}

/* Power button */
.phone-frame::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 120px;
  width: 3px;
  height: 64px;
  background: #252525;
  border-radius: 0 3px 3px 0;
}

/* Volume buttons */
.phone-frame::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 90px;
  width: 3px;
  height: 38px;
  background: #252525;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 54px 0 #252525, 0 100px 0 #252525;
}

/* Dynamic island */
.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #111;
  box-shadow: inset 0 0 0 2.5px #0a3d5e;
}

/* Screen */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Home bar */
.phone-home-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: rgba(255,255,255,0.28);
  border-radius: 3px;
}

/* ── Hero blob background ── */
.hero-blob-pic { display: contents; }

.hero-blob {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content h1 .line {
  display: block;
  overflow: hidden;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   SERVICES OVERVIEW (Home)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 52px;
}

.service-card {
  background: var(--surface);
  padding: 40px;
  transition: background var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--surface2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================
   PORTFOLIO PREVIEW (Home)
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-placeholder,
.portfolio-item:hover .portfolio-item-img {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.portfolio-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.portfolio-placeholder-icon {
  color: var(--border);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 520px;
  font-size: 15px;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
}

.section-header.center .divider {
  margin: 0 auto 28px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,148,33,0.05) 0%, rgba(117,58,150,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 16px;
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 70px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

.footer-brand p {
  margin-top: 14px;
  font-size: 13px;
  max-width: 240px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-col ul a.active {
  color: var(--orange);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 148, 33, 0.08);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   CONTACT / NEWSLETTER FORM SECTION
   ============================================ */

.contact-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left .tag { margin-bottom: 20px; }

.contact-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(245,148,33,0.08);
  border: 1px solid rgba(245,148,33,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-detail span {
  font-size: 14px;
  color: var(--muted);
}

.contact-detail a {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  transition: opacity var(--transition);
}

.contact-detail a:hover { opacity: 0.75; }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.contact-form h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
}

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

@media (max-width: 600px) {
  .contact-form { padding: 24px; }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,148,33,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero-content h1 {
  margin-bottom: 20px;
}

.page-hero-content p {
  font-size: 16px;
  max-width: 480px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-block {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.service-block-left .service-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  margin-bottom: 14px;
  font-family: var(--font);
}

.service-block-left h2 {
  margin-bottom: 0;
}

.service-block-right p {
  font-size: 15px;
  margin-bottom: 32px;
}

.deliverables-list {
  margin-bottom: 28px;
}

.deliverables-list h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.deliverables-list ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.deliverables-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.72);
}

.deliverables-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.result-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  border-radius: 4px;
}

.result-box-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.result-box p {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  margin: 0;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 148, 33, 0.06);
}

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-full-grid .portfolio-item.large {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.about-philosophy-right p + p {
  margin-top: 18px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 64px;
}

.pillar-card {
  background: var(--surface);
  padding: 36px;
  transition: background var(--transition);
}

.pillar-card:hover {
  background: var(--surface2);
}

.pillar-number {
  font-size: 34px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  line-height: 1;
}

.pillar-card h3 {
  margin-bottom: 10px;
}

/* ============================================
   RESULTS PAGE
   ============================================ */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 52px;
}

.case-card {
  background: var(--surface);
  padding: 40px;
  transition: background var(--transition);
}

.case-card:hover {
  background: var(--surface2);
}

.case-client {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.case-metric {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.case-metric-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.case-card h3 {
  margin-bottom: 10px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

/* ============================================
   BOOK A CALL PAGE
   ============================================ */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
  padding: 90px 0;
}

.book-left h2 {
  margin-bottom: 20px;
}

.book-left > p {
  font-size: 15px;
  margin-bottom: 40px;
}

.book-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.book-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.book-check-icon {
  width: 20px;
  height: 20px;
  background: rgba(245, 148, 33, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.book-check-icon svg {
  width: 11px;
  height: 11px;
  color: var(--orange);
}

.book-check-item p {
  color: rgba(0,0,0,0.65);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.book-right {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.book-right-header {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
}

.book-right-header h3 {
  margin-bottom: 4px;
}

.book-right-header p {
  font-size: 13px;
  margin: 0;
}

.book-calendar-placeholder {
  padding: 52px 36px;
  text-align: center;
}

.book-calendar-placeholder p {
  font-size: 13px;
  margin-top: 14px;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #0d0d0d;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

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

.loader-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  width: 0%;
  transition: width 0.6s ease;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-item span {
  color: var(--orange);
  font-size: 18px;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-block { grid-template-columns: 1fr; gap: 36px; }
  .about-philosophy { grid-template-columns: 1fr; gap: 40px; }
  .about-pillars { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-blob { width: 100%; top: 0; right: -20%; opacity: 0.4; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid .portfolio-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item:not(:last-child)::after { display: none; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* ── Book a Call | Google Calendar Card ─────────────────────────────────── */
.book-calendar-card {
  padding: 32px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.book-calendar-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.book-cal-btn {
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .book-calendar-card { padding: 28px 20px; gap: 16px; }
}

/* ============================================
   THE FORGE LOOP | Process Section
   ============================================ */
.loop-section {
  background: #0d0d0d;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.loop-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(117,58,150,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.loop-inner { position: relative; z-index: 1; }

.loop-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.loop-header .tag {
  justify-content: center;
  color: #f59421;
}

.loop-header h2 { color: #ffffff; margin-bottom: 14px; }

.loop-header p { color: rgba(255,255,255,0.55); font-size: 16px; }

/* Core knowledge base card */
.loop-core {
  max-width: 460px;
  margin: 0 auto 48px;
  background: linear-gradient(160deg, rgba(117,58,150,0.22) 0%, rgba(13,13,13,0.6) 100%);
  border: 1px solid rgba(117,58,150,0.4);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  position: relative;
}

.loop-core-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #b98fd4;
  margin-bottom: 8px;
}

.loop-core h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
}

.loop-core-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.loop-core-items span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 5px 12px;
}

/* Step grid */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.loop-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.loop-step:hover {
  border-color: rgba(245,148,33,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.loop-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.loop-step h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.loop-step-sub {
  font-size: 13px;
  color: #f59421;
  font-weight: 500;
  margin-bottom: 16px;
}

.loop-step ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.loop-step li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.loop-step li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #753a96;
}

/* Growth chain */
.loop-chain {
  margin-top: 40px;
  border: 1px solid rgba(245,148,33,0.28);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.loop-chain-title {
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.loop-chain-item {
  flex: 1;
  min-width: 110px;
  text-align: center;
}

.loop-chain-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.loop-chain-item span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.loop-chain-arrow {
  color: #f59421;
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .loop-chain-arrow { display: none; }
  .loop-chain-item { min-width: 45%; }
}

@media (max-width: 600px) {
  .loop-grid { grid-template-columns: 1fr; }
  .loop-chain-item { min-width: 100%; }
}

/* ============================================
   PROOF / TESTIMONIALS
   ============================================ */
.proof-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 34px;
  transition: border-color var(--transition), transform var(--transition);
}

.proof-card:hover {
  border-color: rgba(245,148,33,0.4);
  transform: translateY(-3px);
}

.proof-client {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.proof-metric {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-metric-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 22px;
}

.proof-detail {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.proof-detail-item .val {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.proof-detail-item .lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* Quote card */
.proof-quote {
  background: linear-gradient(135deg, rgba(245,148,33,0.06) 0%, rgba(117,58,150,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.proof-quote-mark {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  flex-shrink: 0;
}

.proof-quote blockquote {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.proof-quote-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
}

@media (max-width: 768px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-quote { padding: 28px 24px; }
  .proof-quote-mark { font-size: 48px; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}

.faq-aside h2 { margin-bottom: 16px; }

.faq-aside p { margin-bottom: 28px; }

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  line-height: 1.5;
}

.faq-question:hover { color: var(--orange); }

.faq-question::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}

.faq-question::before {
  content: '';
  position: absolute;
  right: 11px;
  top: 50%;
  width: 2px;
  height: 12px;
  background: var(--orange);
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.open .faq-question::before {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item.open .faq-question { color: var(--orange); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 44px 24px 0;
}

.faq-answer-inner p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.faq-answer-inner p + p { margin-top: 12px; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Polish: align chain arrows with the bold labels ── */
.loop-chain-arrow {
  align-self: flex-start;
  margin-top: 2px;
}

/* ── Polish: keep proof stats on a tidy grid instead of ragged wrapping ── */
@media (max-width: 900px) {
  .proof-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.problem-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.problem-row {
  background: var(--surface);
  display: grid;
  grid-template-columns: 90px 1fr 300px;
  gap: 36px;
  align-items: center;
  padding: 38px 40px;
  transition: background var(--transition);
}

.problem-row:hover { background: var(--surface2); }

.problem-num {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.09);
}

.problem-copy h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(17px, 2vw, 21px);
}

.problem-copy p {
  font-size: 14px;
  margin: 0;
  max-width: 560px;
}

.problem-evidence {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.problem-evidence .figure {
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 5px;
}

.problem-evidence .caption {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.problem-closer {
  margin-top: 44px;
  text-align: center;
}

.problem-closer p {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .problem-row { grid-template-columns: 60px 1fr; gap: 24px; padding: 30px 28px; }
  .problem-evidence { grid-column: 2; border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 16px; }
  .problem-num { font-size: 30px; }
}

@media (max-width: 600px) {
  .problem-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 22px; }
  .problem-evidence { grid-column: 1; }
}

/* ============================================
   WHO IT'S FOR
   ============================================ */
.audience-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.audience-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.audience-card:hover {
  border-color: rgba(245,148,33,0.45);
  transform: translateY(-4px);
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245,148,33,0.09);
  border: 1px solid rgba(245,148,33,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.audience-icon svg { width: 20px; height: 20px; }

.audience-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.audience-card > p {
  font-size: 14px;
  margin-bottom: 18px;
}

.audience-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.audience-card li {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0,0,0,0.68);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.audience-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.audience-disqualifier {
  margin-top: 40px;
  border: 1px dashed rgba(0,0,0,0.18);
  border-radius: 10px;
  padding: 26px 32px;
  text-align: center;
}

.audience-disqualifier strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

.audience-disqualifier p {
  font-size: 15px;
  margin: 0;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONDENSED SERVICES STRIP
   ============================================ */
.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 44px;
}

.services-strip a {
  background: var(--surface);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.services-strip a:hover { background: var(--surface2); }

.services-strip .num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  flex-shrink: 0;
}

.services-strip .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .services-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services-strip { grid-template-columns: 1fr; }
}

/* ── Polish: align audience card lists to a common baseline ── */
.audience-card {
  display: flex;
  flex-direction: column;
}

.audience-card ul {
  margin-top: auto;
}

/* ============================================
   WORK SHOWCASE (reels)
   ============================================ */
.work-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.work-item {
  position: relative;
  aspect-ratio: 0.732;   /* matches the reel screenshots, so nothing is cropped */
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: block;
  transition: transform var(--transition), border-color var(--transition);
}

.work-item:hover {
  transform: translateY(-5px);
  border-color: rgba(245,148,33,0.45);
}

.work-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-item:hover img { transform: scale(1.05); }

/* Readability scrim behind the badges, sits above the image */
.work-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}

.work-views {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 5px 11px 5px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.work-views svg { width: 13px; height: 13px; opacity: 0.9; }

.work-hook {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Total views bar */
.work-total {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.work-total .figure {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.work-total .caption {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  max-width: 340px;
  text-align: left;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .work-total { flex-direction: column; gap: 8px; }
  .work-total .caption { text-align: center; }
}

/* ── Suppress broken-image alt text so empty slots read as intentional cards ── */
.work-item img {
  color: transparent;
  font-size: 0;
}

/* ── Work cards carry their own colour so empty slots read as designed tiles,
      not as missing images. The reel screenshot sits on top when present. ── */
.work-item:nth-child(6n+1) { background: linear-gradient(160deg, #3a2d4a 0%, #171320 100%); }
.work-item:nth-child(6n+2) { background: linear-gradient(160deg, #4a3520 0%, #1d1610 100%); }
.work-item:nth-child(6n+3) { background: linear-gradient(160deg, #2c3a44 0%, #12181c 100%); }
.work-item:nth-child(6n+4) { background: linear-gradient(160deg, #45283a 0%, #1c1018 100%); }
.work-item:nth-child(6n+5) { background: linear-gradient(160deg, #303f34 0%, #131a15 100%); }
.work-item:nth-child(6n+6) { background: linear-gradient(160deg, #3d3346 0%, #17141c 100%); }

/* ============================================
   PRE-DEPLOY FIXES
   ============================================ */

/* The mobile drawer's Book a Call button was caught by the ≤768px rule that
   hides .nav-cta, so the primary CTA was invisible on every phone. */
@media (max-width: 768px) {
  .nav-mobile .nav-cta {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    width: fit-content;
  }
  .nav-mobile .nav-cta:hover { color: #ffffff; }
}

/* Hamburger is now a <button>; strip the UA button chrome. */
.nav-hamburger {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/* Focus was invisible everywhere: .btn, inputs and .faq-question all set
   outline:none with no replacement. Keyboard users had nothing to follow. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
  /* Several components use transition:all, which made the focus ring fade in
     over 300ms. A focus indicator has to be instant to be useful. */
  transition: none;
}

.loop-section a:focus-visible,
.work-item:focus-visible {
  outline-color: #ffffff;
}

/* Fixed 80px nav would otherwise cover the target of any #anchor deep link. */
[id] { scroll-margin-top: 100px; }

/* Collapsed FAQ answers stayed in the accessibility tree and in Ctrl+F. */
.faq-answer {
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
}

.faq-item.open .faq-answer {
  visibility: visible;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

/* Six 9:16 cards across is too tight between 1025px and ~1200px. */
@media (max-width: 1200px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 100vh overshoots on mobile browsers with dynamic toolbars, pushing the
   scroll cue behind the chrome. */
@supports (min-height: 100dvh) {
  .hero { min-height: 100dvh; }
}

/* Respect users who have asked their OS to reduce motion. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .btn-pulse { animation: none !important; }
}


/* ── Forge Loop infographic ── */
.loop-figure {
  margin: 0;
  text-align: center;
}

.loop-figure a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.3s ease;
}

.loop-figure a:hover { border-color: rgba(245,148,33,0.5); }

.loop-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.loop-figure figcaption {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

@media (min-width: 901px) {
  .loop-figure figcaption { display: none; }
}

/* ============================================
   TRANSPARENT NAV + SCROLL MOTION
   ============================================ */

/* At the top the bar is fully transparent. Once scrolled it becomes frosted
   glass rather than solid white, so the page shows through. */
.nav {
  background: transparent;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              backdrop-filter 0.35s ease,
              box-shadow 0.35s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0, 0, 0, 0.045);
}

/* Browsers without backdrop-filter would show unreadable text over content,
   so they get a more opaque fallback instead. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.scrolled { background: rgba(255, 255, 255, 0.94); }
}

/* Shrink on scroll. Desktop only: the mobile drawer is anchored to --nav-h
   and would detach from the bar if the height changed underneath it. */
@media (min-width: 769px) {
  .nav.scrolled { height: 64px; }
  .nav-logo { transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: left center; }
  .nav.scrolled .nav-logo { transform: scale(0.88); }
  .nav.scrolled .nav-cta { padding: 9px 20px; }
}

/* Thin gradient bar showing how far down the page you are */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1001;
  pointer-events: none;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .nav.scrolled { height: var(--nav-h); }
  .nav.scrolled .nav-logo { transform: none; }
}
