@font-face {
  font-family: 'The Bold Font';
  src: url('assets/fonts/the-bold-font-free-version.ttf') format('truetype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

/* CSS Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

/* Nothing may exceed the viewport width */
img, canvas, svg, video, table {
  max-width: 100%;
}

body {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  /* Manrope: geometric, slightly heavier stroke, stays legible at small sizes */
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Background Canvas Scroll Animation */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Slight contrast lift hides residual compression artifacts in the frames */
  filter: contrast(1.04) saturate(1.06);
  will-change: contents;
}

/* Fine dither/grain — breaks up banding on dark gradients so the
   background reads smooth instead of blocky when scrolling */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Fixed dark vignette overlay for text clarity — sits above canvas, below content */
.bg-gradient-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* Top vignette — just enough for navbar readability */
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 16%,
      transparent 32%
    ),
    /* Bottom vignette */
    linear-gradient(0deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.16) 20%,
      transparent 42%
    ),
    /* Left vignette — supports the hero text only */
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.1) 28%,
      transparent 52%
    );
}

/* Scroll-driven dark layer.
   Hero (top of page) = fully transparent — no black gradient at all.
   Lower sections = a moderate dark wash so text stays readable and the
   upscaled frames don't show pixelation. Opacity is set from app.js. */
.bg-scroll-dark {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg,
      rgba(4, 4, 9, 0.9) 0%,
      rgba(4, 4, 9, 1) 50%,
      rgba(3, 3, 7, 1) 100%
    );
  will-change: opacity;
}

/* Minimal Loader Overlay */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-container.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bar-wrap {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: #FF5522;
  transition: width 0.1s linear;
}

.loader-text {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
}

/* Page Layout Wrapper */
.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
}

/* Header & Navigation Bar (Directly over canvas) */
.navbar {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.nav-container {
  width: 100%;
  max-width: 1240px;
  background: rgba(8, 8, 12, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.logo span {
  color: #FF5522;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* Buttons */
.btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

.btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FF5522;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-orange {
  background: #FF5522;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 85, 34, 0.4);
}

.btn-orange:hover {
  background: #ff6a3d;
  box-shadow: 0 6px 28px rgba(255, 85, 34, 0.6);
}

.btn-orange .btn-icon {
  background: #ffffff;
  color: #FF5522;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero-top-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-left {
  flex: 1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2.5px;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.hero-right {
  max-width: 360px;
  padding-bottom: 10px;
}

.hero-quote {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Hero Bottom Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Brands Section (Directly on canvas) */
.brands-section {
  padding: 60px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.brands-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: none;
}

.brands-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.brands-label span {
  color: #ffffff;
  font-weight: 700;
}

.brands-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-pill {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: default;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.brand-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FF5522;
  transform: translateY(-2px);
}

.pill-icon {
  color: #FF5522;
  font-size: 0.85rem;
}

/* Behind the Designs Section (Directly on canvas) */
.designs-section {
  background: transparent;
  border: none;
  padding: 120px 24px 140px;
  margin-top: 40px;
  box-shadow: none;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}

.designs-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

.section-tag {
  color: #FF5522;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.section-heading {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.8px;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
}

.designs-header-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.designs-lead-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.designs-body-text {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.designs-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
}

.designs-sub-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ============================================
   Insight Band
   ============================================ */
.insight-section {
  padding: 20px 24px 40px;
}

.insight-card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 44px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid #FF5522;
  border-radius: 24px;
  background: rgba(8, 8, 14, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.insight-num {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: #ffffff;
  flex-shrink: 0;
}

.insight-num span {
  font-size: 2rem;
  color: #FF5522;
  letter-spacing: -1px;
}

.insight-title {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.6px;
  color: #ffffff;
  margin-bottom: 14px;
}

.insight-text {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
  background: transparent;
  padding: 110px 24px 120px;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 60px;
}

.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-bottom: 6px;
}

.services-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 460px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.services-header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.services-header-link:hover {
  color: #FF5522;
  border-bottom-color: #FF5522;
  gap: 14px;
}

/* Grid of 6 cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(160deg,
      rgba(22, 22, 34, 0.72) 0%,
      rgba(8, 8, 14, 0.66) 55%,
      rgba(6, 6, 10, 0.7) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

/* Thin accent line that grows across the top on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #FF5522, rgba(255, 85, 34, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 85, 34, 0.45);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.9);
}

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

/* Soft orange bloom in the corner, revealed on hover */
.service-glow {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 34, 0.32) 0%, rgba(255, 85, 34, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.service-card:hover .service-glow {
  opacity: 1;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5522;
  background: rgba(255, 85, 34, 0.1);
  border: 1px solid rgba(255, 85, 34, 0.24);
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon {
  background: #FF5522;
  color: #ffffff;
  transform: translateY(-2px) rotate(-6deg);
}

.service-index {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.13);
  letter-spacing: -1px;
  transition: color 0.4s ease;
}

.service-card:hover .service-index {
  color: rgba(255, 85, 34, 0.4);
}

.service-title {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

.service-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 5px 12px;
  transition: all 0.3s ease;
}

.service-card:hover .service-tags span {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 85, 34, 0.3);
}

/* ============================================
   Projects Section
   ============================================ */
.projects-section {
  background: transparent;
  padding: 20px 24px 120px;
}

.projects-header {
  margin-bottom: 56px;
}

/* Project Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(6, 6, 11, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: #FF5522;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.card-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-top-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.card-title {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.card-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.card-type {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FF5522;
  letter-spacing: 0.3px;
}

.card-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}

.card-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 5px 12px;
}

.card-image-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

/* Contact & Intake Form Section (Directly on canvas) */
.contact-section {
  background: transparent;
  border: none;
  padding: 140px 24px 160px;
  position: relative;
}

.contact-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

.contact-sub-badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-heading-main {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2.5px;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
}

.contact-heading-main .grow-text {
  color: #ffffff;
  text-shadow: 0 0 40px rgba(255, 85, 34, 0.6);
}

.contact-heading-sub {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.8px;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
}

/* Contact Form 2-Column Grid */
.contact-form {
  margin-top: 80px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 0 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.form-group input:focus {
  outline: none;
  border-bottom-color: #FF5522;
  box-shadow: 0 4px 16px -4px rgba(255, 85, 34, 0.4);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-submit-row {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-submit {
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  font-size: 0.95rem;
}

.form-toast {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4EFE86;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.form-toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Design Sprint / Process Section
   ============================================ */
.sprint-section {
  background: transparent;
  padding: 140px 24px 100px;
}

.sprint-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.sprint-heading {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.4px;
  color: #ffffff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.9);
  margin-top: 14px;
}

/* Vertical timeline */
.sprint-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}

.sprint-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-dot.active {
  border-color: #FF5522;
  background: #FF5522;
  box-shadow: 0 0 14px rgba(255, 85, 34, 0.7);
}

.sprint-step:hover .step-dot {
  border-color: #FF5522;
  background: rgba(255, 85, 34, 0.3);
}

.step-line {
  width: 1px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  margin-top: 8px;
}

.step-content {
  padding: 0 0 64px;
  flex: 1;
}

.step-pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.step-title {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
}

.step-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 560px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ============================================
   Color Palette Section
   ============================================ */
.palette-section {
  background: transparent;
  padding: 100px 24px 160px;
}

.palette-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.palette-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.palette-heading {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: #ffffff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.9);
}

/* Swatch grid: 4 cols, 2 rows */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.swatch {
  height: 64px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swatch:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.swatch span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 6px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  letter-spacing: 0.3px;
}

.swatch:hover span {
  opacity: 1;
}

/* Visit site & refresh CTA row */
.palette-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
}

.refresh-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  border-color: #FF5522;
  color: #FF5522;
  transform: rotate(180deg);
}

/* Right side: Animated orb */
.palette-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.palette-orb {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #12707A, #04141A 70%);
  box-shadow:
    0 0 60px rgba(45, 212, 191, 0.42),
    0 0 120px rgba(45, 212, 191, 0.18),
    inset 0 0 40px rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, 0.35);
  animation: orbPulse 4s ease-in-out infinite;
}

.orb-ring-1 {
  width: 260px;
  height: 260px;
  animation-delay: 0s;
}

.orb-ring-2 {
  width: 320px;
  height: 320px;
  animation-delay: 1s;
  border-color: rgba(45, 212, 191, 0.22);
}

.orb-ring-3 {
  width: 380px;
  height: 380px;
  animation-delay: 2s;
  border-color: rgba(45, 212, 191, 0.12);
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.04); opacity: 0.4; }
}

/* Mini UI card overlaid on orb */
.orb-ui-card {
  position: absolute;
  bottom: 24px;
  right: 0;
  background: rgba(15, 15, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 160px;
  z-index: 3;
  backdrop-filter: blur(8px);
}

.orb-ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.orb-ui-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.orb-ui-swatch {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  background: transparent;
  padding: 120px 24px 140px;
  position: relative;
}

.stats-top-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

.stats-divider {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

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

.stats-vertical-divider {
  width: 1px;
  min-height: 200px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2) 30%, rgba(255,255,255,0.2) 70%, transparent);
  align-self: stretch;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-big-num {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -4px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.95);
}

.stat-percent {
  font-size: 3.5rem;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-dollar {
  font-size: 3.5rem;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-big-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.stat-big-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 400px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* ============================================
   Tech Stack Strip
   ============================================ */
.stack-section {
  background: transparent;
  padding: 0 24px 110px;
}

.stack-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 40px;
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 6px;
}

.stack-list span {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.stack-list span:hover {
  border-color: #FF5522;
  color: #ffffff;
}

/* ============================================
   Footer — compact, no images
   ============================================ */
.site-footer {
  position: relative;
  z-index: 3;
  /* Translucent glass — the background animation stays visible through it */
  background: linear-gradient(180deg,
    rgba(10, 10, 20, 0.42) 0%,
    rgba(7, 7, 14, 0.62) 55%,
    rgba(5, 5, 10, 0.74) 100%);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 24px 22px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.footer-name span {
  color: #FF5522;
}

.footer-cta {
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px 40px;
  padding: 34px 0 30px;
}

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

.footer-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5522;
  margin-bottom: 5px;
}

.footer-col a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
  width: fit-content;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-link-lg {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: -0.2px;
}

.footer-link-lg:hover {
  color: #FF5522 !important;
}

.footer-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4EFE86;
  box-shadow: 0 0 10px rgba(78, 254, 134, 0.8);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-top-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .designs-header-grid,
  .contact-header-grid,
  .palette-layout,
  .services-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .palette-right {
    height: 320px;
  }
  .palette-orb {
    width: 260px;
    height: 260px;
  }
  .orb-core {
    width: 140px;
    height: 140px;
  }
  .orb-ring-1 { width: 180px; height: 180px; }
  .orb-ring-2 { width: 220px; height: 220px; }
  .orb-ring-3 { width: 260px; height: 260px; }
  .contact-heading-main,
  .contact-heading-sub {
    font-size: 3.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insight-card {
    flex-direction: column;
    gap: 20px;
    padding: 32px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 3rem;
  }
  .section-heading,
  .contact-heading-main,
  .contact-heading-sub {
    font-size: 2.4rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .designs-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .insight-num {
    font-size: 3.2rem;
  }
  .insight-title {
    font-size: 1.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .site-footer {
    padding: 40px 20px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .card-top-row {
    flex-direction: column;
    gap: 4px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stats-vertical-divider {
    display: none;
  }
}

/* ============================================
   Social Buttons (footer + contact page)
   ============================================ */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.social-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.social-btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: block;
}

.social-btn:hover {
  color: #ffffff !important;
  background: #FF5522;
  border-color: #FF5522;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -6px rgba(255, 85, 34, 0.8);
}

/* ============================================
   Mobile Navigation
   ============================================ */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ============================================
   Inner Page Background (no frame animation)
   ============================================ */
.inner-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 12% 0%, rgba(45, 212, 191, 0.13) 0%, transparent 55%),
    radial-gradient(70% 60% at 92% 18%, rgba(255, 85, 34, 0.12) 0%, transparent 58%),
    linear-gradient(180deg, #08080F 0%, #05050B 45%, #030307 100%);
}

.inner-bg-grid {
  position: absolute;
  inset: -2px;
  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(120% 100% at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 0%, transparent 78%);
}

.inner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.orb-a {
  width: 460px; height: 460px;
  top: -140px; left: -100px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 70%);
  animation: drift 18s ease-in-out infinite;
}

.orb-b {
  width: 380px; height: 380px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, rgba(255, 85, 34, 0.4), transparent 70%);
  animation: drift 22s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, 60px) scale(1.12); }
}

/* ============================================
   Inner Page Hero (shared shell, unique content)
   ============================================ */
.page-hero {
  padding: 180px 24px 70px;
}

.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 22px;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.breadcrumb a:hover { color: #FF5522; }
.breadcrumb i { font-style: normal; color: rgba(255, 255, 255, 0.25); }

.page-title {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: #ffffff;
  max-width: 22ch;
  text-wrap: balance;
}

.page-title em { font-style: normal; color: #FF5522; }

.page-lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  max-width: 620px;
  margin-top: 24px;
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: end;
}

.page-section { padding: 70px 24px; }
.page-section-tight { padding: 40px 24px 70px; }

/* Reusable soft glass panel */
.glass-panel {
  background: linear-gradient(160deg, rgba(22, 22, 34, 0.6), rgba(8, 8, 14, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.eyebrow-row .line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-portrait-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-mono-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.about-mono-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-mono-row b { color: rgba(255, 255, 255, 0.45); font-weight: 600; letter-spacing: 0.4px; }
.about-mono-row span { color: #ffffff; font-weight: 700; text-align: right; }

/* Story: numbered chapters */
.story-list { display: flex; flex-direction: column; gap: 0; }

.story-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  transition: background-color 0.35s ease;
}

.story-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }

.story-year {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FF5522;
  letter-spacing: -0.8px;
}

.story-item h3 {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.story-item p { font-size: 1rem; color: rgba(255, 255, 255, 0.7); line-height: 1.75; max-width: 720px; }

/* Values — offset cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card { padding: 28px 24px 30px; }
.value-card:nth-child(even) { transform: translateY(22px); }

.value-mark {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 85, 34, 0.85);
  line-height: 1;
  margin-bottom: 14px;
}

.value-card h4 { font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 1.1rem; color: #fff; margin-bottom: 9px; }
.value-card p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.66); line-height: 1.7; }

/* Skill meters */
.skills-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 60px; }

.skill-row { display: flex; flex-direction: column; gap: 9px; }

.skill-top {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.92rem; font-weight: 700; color: #ffffff;
}

.skill-top span:last-child { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; }

.skill-track { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.09); overflow: hidden; }

.skill-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #FF5522, #ff8a5c);
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.svc-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.svc-row-num {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FF5522;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.svc-row h3 {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-row-intro { font-size: 1.02rem; color: rgba(255, 255, 255, 0.72); line-height: 1.75; }

.svc-deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }

.svc-deliverables li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-deliverables li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FF5522;
  flex-shrink: 0;
  margin-top: 7px;
}

.svc-meta-bar {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 26px; padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.svc-meta-bar div { display: flex; flex-direction: column; gap: 4px; }
.svc-meta-bar b { font-size: 0.7rem; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 800; }
.svc-meta-bar span { font-size: 0.95rem; font-weight: 700; color: #ffffff; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  transition: color 0.25s ease;
}

.faq-q:hover { color: #FF5522; }

.faq-q::after {
  content: '+';
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: #FF5522;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  padding: 0 60px 26px 0;
  max-width: 860px;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 46px; }

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover { color: #ffffff; border-color: rgba(255, 255, 255, 0.35); }
.filter-btn.active { background: #FF5522; border-color: #FF5522; color: #ffffff; }

.work-list { display: flex; flex-direction: column; gap: 26px; }

.work-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease;
}

.work-item.hide { display: none; }
.work-item:hover { transform: translateY(-5px); border-color: rgba(255, 85, 34, 0.4); }
.work-item:nth-child(even) .work-media { order: 2; }

.work-media { position: relative; overflow: hidden; min-height: 320px; }

.work-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.work-body { padding: 40px 42px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }

.work-cat { font-size: 0.75rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: #FF5522; }

.work-body h3 {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.85rem; font-weight: 800; color: #fff;
  letter-spacing: -0.9px; line-height: 1.12;
}

.work-body p { font-size: 0.98rem; color: rgba(255, 255, 255, 0.7); line-height: 1.75; }

.work-facts { display: flex; flex-wrap: wrap; gap: 28px; padding-top: 8px; }
.work-facts div { display: flex; flex-direction: column; gap: 3px; }
.work-facts b { font-size: 0.68rem; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.38); font-weight: 800; }
.work-facts span { font-size: 0.9rem; font-weight: 700; color: #ffffff; }

.work-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.88rem; font-weight: 800; color: #ffffff;
  text-decoration: none; margin-top: 6px; width: fit-content;
  padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.work-link:hover { color: #FF5522; border-color: #FF5522; gap: 13px; }

/* ============================================
   CASE STUDY PAGES
   ============================================ */
.case-cover {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.case-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 32px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
  width: calc(100% - 64px);
  margin-left: auto;
  margin-right: auto;
  background: rgba(10, 10, 18, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.case-meta-bar div { display: flex; flex-direction: column; gap: 5px; }
.case-meta-bar b { font-size: 0.68rem; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 800; }
.case-meta-bar span { font-size: 0.95rem; font-weight: 700; color: #ffffff; }

.case-body { display: grid; grid-template-columns: 200px 1fr; gap: 56px; }

.case-side { position: sticky; top: 120px; align-self: start; }

.case-side-label {
  font-size: 0.7rem; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 800; color: #FF5522; margin-bottom: 12px; display: block;
}

.case-side ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.case-side li { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }

.case-block { margin-bottom: 52px; }

.case-block h2 {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.9rem; font-weight: 800; color: #ffffff;
  letter-spacing: -1px; margin-bottom: 18px;
}

.case-block p {
  font-size: 1.03rem; color: rgba(255, 255, 255, 0.74);
  line-height: 1.85; margin-bottom: 16px; max-width: 780px;
}

.case-block ul { padding-left: 0; list-style: none; margin: 8px 0 16px; }

.case-block ul li {
  position: relative; padding-left: 24px; margin-bottom: 11px;
  font-size: 1rem; color: rgba(255, 255, 255, 0.74); line-height: 1.7; max-width: 760px;
}

.case-block ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px; border-radius: 2px; background: #FF5522;
}

.case-quote {
  border-left: 3px solid #FF5522;
  padding: 6px 0 6px 26px;
  margin: 30px 0;
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: #ffffff;
  line-height: 1.5; letter-spacing: -0.4px; max-width: 720px;
}

.case-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }

.case-result { padding: 26px 24px; }
.case-result b { font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 2.1rem; font-weight: 800; color: #FF5522; display: block; letter-spacing: -1.5px; }
.case-result span { font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); line-height: 1.6; display: block; margin-top: 6px; }

.case-next {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; padding: 34px 38px; flex-wrap: wrap;
}

.case-next h3 { font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 1.5rem; color: #fff; letter-spacing: -0.6px; }
.case-next p { font-size: 0.92rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ============================================
   PRICING PAGE
   ============================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.price-card { padding: 34px 30px 36px; display: flex; flex-direction: column; gap: 16px; position: relative; }

.price-card.featured {
  border-color: rgba(255, 85, 34, 0.5);
  background: linear-gradient(165deg, rgba(38, 20, 14, 0.72), rgba(10, 8, 12, 0.7));
  box-shadow: 0 26px 60px -30px rgba(255, 85, 34, 0.7);
}

.price-badge {
  position: absolute; top: -12px; right: 26px;
  background: #FF5522; color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}

.price-name { font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.price-for { font-size: 0.88rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

.price-amount {
  font-family: 'The Bold Font', 'Syne', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: #ffffff;
  letter-spacing: -2px; line-height: 1;
  padding: 14px 0 4px; border-top: 1px solid rgba(255,255,255,0.1);
}

.price-amount small { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0; }

.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; padding-top: 6px; }

.price-list li {
  position: relative; padding-left: 26px;
  font-size: 0.94rem; color: rgba(255, 255, 255, 0.76); line-height: 1.6;
}

.price-list li::before {
  content: '';
  position: absolute; left: 0; top: 5px;
  width: 14px; height: 8px;
  border-left: 2px solid #FF5522;
  border-bottom: 2px solid #FF5522;
  transform: rotate(-45deg);
}

.price-note { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; }

.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table thead th {
  font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 0.95rem; font-weight: 800;
  color: #ffffff; background: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.2px;
}

.compare-table tbody th { font-weight: 700; color: rgba(255, 255, 255, 0.82); }
.compare-table td { color: rgba(255, 255, 255, 0.6); }
.compare-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.compare-table .yes { color: #4EFE86; font-weight: 800; }
.compare-table .no { color: rgba(255, 255, 255, 0.25); }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.addon-card { padding: 22px 20px; display: flex; flex-direction: column; gap: 7px; }
.addon-card h4 { font-size: 0.98rem; font-family: 'The Bold Font', 'Syne', sans-serif; color: #fff; }
.addon-card span { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.addon-card b { font-size: 0.86rem; color: #FF5522; margin-top: 4px; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 46px;
}

.blog-featured-media { min-height: 330px; position: relative; overflow: hidden; }
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; }

.blog-featured-body { padding: 44px 44px; display: flex; flex-direction: column; gap: 15px; justify-content: center; }

.blog-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase;
  color: #FF5522; width: fit-content;
}

.blog-featured-body h2 {
  font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 2.1rem; font-weight: 800;
  color: #ffffff; letter-spacing: -1.1px; line-height: 1.12;
}

.blog-featured-body p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

.blog-meta { display: flex; gap: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 600; }

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

.blog-card {
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease;
}

.blog-card:hover { transform: translateY(-6px); border-color: rgba(255,85,34,0.4); }

.blog-card h3 {
  font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: #ffffff; letter-spacing: -0.4px; line-height: 1.25;
}

.blog-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; flex: 1; }

.newsletter-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; padding: 40px 44px; flex-wrap: wrap; margin-top: 46px;
}

.newsletter-band h3 { font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 1.6rem; color: #fff; letter-spacing: -0.7px; }
.newsletter-band p { font-size: 0.93rem; color: rgba(255,255,255,0.55); margin-top: 8px; max-width: 460px; line-height: 1.65; }

.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }

.newsletter-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 13px 22px;
  color: #fff; font-family: inherit; font-size: 0.9rem;
  min-width: 260px;
}

.newsletter-form input:focus { outline: none; border-color: #FF5522; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.contact-card {
  padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 11px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease;
}

.contact-card:hover { transform: translateY(-6px); border-color: rgba(255,85,34,0.45); }

.contact-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,85,34,0.12); border: 1px solid rgba(255,85,34,0.28);
  color: #FF5522; margin-bottom: 4px;
}

.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card b { font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 1.05rem; color: #fff; }
.contact-card span { font-size: 0.94rem; color: rgba(255,255,255,0.62); word-break: break-word; }
.contact-card small { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

.contact-split { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 50px; align-items: start; }

.contact-aside { padding: 32px 30px; display: flex; flex-direction: column; gap: 22px; }

.aside-block h4 {
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: #FF5522; font-weight: 800; margin-bottom: 9px;
}

.aside-block p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.aside-block ol { padding-left: 18px; color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.9; }

/* ============================================
   Shared CTA Band
   ============================================ */
.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; padding: 46px 48px; flex-wrap: wrap;
  border-left: 3px solid #FF5522;
}

.cta-band h2 {
  font-family: 'The Bold Font', 'Syne', sans-serif; font-size: 2.1rem; font-weight: 800;
  color: #ffffff; letter-spacing: -1.1px; line-height: 1.15;
}

.cta-band p { font-size: 0.98rem; color: rgba(255,255,255,0.58); margin-top: 10px; max-width: 520px; line-height: 1.7; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff; background: transparent;
  padding: 12px 24px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 700; text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ghost:hover { border-color: #FF5522; color: #FF5522; transform: translateY(-2px); }

/* ============================================
   Inner Page Responsive
   ============================================ */
@media (max-width: 1024px) {
  .page-hero { padding: 150px 24px 56px; }
  .page-hero-split,
  .contact-split,
  .case-body,
  .blog-featured,
  .work-item { grid-template-columns: 1fr; gap: 34px; }
  .work-item:nth-child(even) .work-media { order: 0; }
  .work-body { padding: 32px 30px; }
  .svc-row { grid-template-columns: 1fr; gap: 30px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(even) { transform: none; }
  .price-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .case-meta-bar { grid-template-columns: repeat(2, 1fr); margin-top: 0; width: 100%; }
  .case-side { position: static; }
  .skills-wrap { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 32px 30px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-container { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 22px;
    background: rgba(8, 8, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; font-size: 1rem; }
  .page-hero { padding: 130px 20px 44px; }
  .page-section, .page-section-tight { padding: 46px 20px; }
  .story-item { grid-template-columns: 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-deliverables { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr; }
  .case-meta-bar { grid-template-columns: 1fr; }
  .cta-band, .newsletter-band, .case-next { padding: 30px 26px; }
  .cta-band h2 { font-size: 1.6rem; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.84rem; }
  .case-cover { height: 240px; }
}

/* Nav right cluster */
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Switch to the mobile menu earlier — 7 links + CTA need the room */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-container { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 24px;
    background: rgba(8, 8, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 11px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links a:last-child { border-bottom: none; }
}

@media (max-width: 520px) {
  .nav-cta { display: none; }
}

/* Honeypot — visually hidden, still reachable by bots */
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Form feedback states */
.form-toast { display: none; }
.form-toast.show { display: block; opacity: 1; transform: translateX(0); }
.form-toast.error { color: #FF7A5C; }
.btn-submit[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ============================================================
   MOBILE / TABLET PORTRAIT — hero stacking
   The background frame is fitted to the screen width and pinned
   to the top (see computeCover in app.js), so the face is never
   cropped. Hero copy then starts *below* the image, the same
   reading order as desktop: portrait first, text underneath.
   56.25vw = 100vw x 720/1280, i.e. the drawn frame's height.
   ============================================================ */
@media (max-width: 900px) {
  /* On portrait the frame already sits on a flat backdrop — the desktop
     vignettes just muddied it, so soften them right down. */
  .bg-gradient-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 12%, transparent 24%),
      linear-gradient(0deg,   rgba(0, 0, 0, 0.35) 0%, transparent 30%);
  }

  .hero-section {
    /* Fills at least one screen; svh avoids the mobile address-bar jump.
       Top padding = the fitted frame height (56.25vw) + breathing room,
       so the face sits clear above the copy instead of behind it. */
    min-height: 100svh;
    min-height: 100vh;
    justify-content: flex-start;
    padding: calc(56.25vw + 92px + 46px) 20px 56px;
  }

  @supports (min-height: 100svh) {
    .hero-section { min-height: 100svh; }
  }

  .hero-content { gap: 38px; }

  .hero-top-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .hero-right { max-width: 100%; padding-bottom: 0; }

  .hero-subtitle { font-size: 1rem; margin-bottom: 8px; }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    letter-spacing: -1.5px;
    line-height: 1;
  }

  .hero-quote { font-size: 1.2rem; }
  .hero-desc  { font-size: 0.97rem; }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
    padding-top: 26px;
  }

  .stat-label { font-size: 0.95rem; }

  /* Sections below the hero sit on the darkened background */
  .brands-section  { padding: 20px 20px 50px; }
  .designs-section { padding: 60px 20px 70px; margin-top: 0; }
  .insight-section { padding: 10px 20px 30px; }
  .services-section,
  .projects-section { padding: 50px 20px 60px; }
  .stack-section    { padding: 0 20px 60px; }
  .sprint-section   { padding: 60px 20px 40px; }
  .palette-section  { padding: 40px 20px 70px; }
  .stats-section    { padding: 50px 20px 60px; }
  .contact-section  { padding: 60px 20px 70px; }

  .section-heading  { font-size: clamp(1.9rem, 7.6vw, 2.6rem); letter-spacing: -1px; }
  .sprint-heading   { font-size: clamp(1.6rem, 6.4vw, 2.1rem); letter-spacing: -0.8px; }
  .palette-heading  { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-heading-main,
  .contact-heading-sub { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -1.4px; }

  .stat-big-num { font-size: clamp(3.4rem, 16vw, 5rem); letter-spacing: -2.5px; }
  .stat-percent, .stat-dollar { font-size: 0.5em; }

  .brands-card  { gap: 20px; }
  .brands-list  { gap: 10px; }
  .brand-pill   { padding: 9px 16px; font-size: 0.86rem; }

  .footer-name  { letter-spacing: -0.5px; }
  .swatch-grid  { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .swatch       { height: 52px; }

}

/* Landscape phones: keep the desktop-style cover crop, just tighter */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    justify-content: flex-end;
    padding: 110px 20px 40px;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .insight-card    { padding: 26px 20px; }
  .service-card    { padding: 26px 22px 28px; }
  .card-body       { padding: 22px 20px 26px; }
  .work-body       { padding: 26px 22px; }
  .price-card      { padding: 28px 22px 30px; }
  .contact-aside   { padding: 26px 22px; }
  .about-portrait-card { padding: 24px 20px; }
  .footer-inner    { overflow: hidden; }
  .footer-socials  { gap: 8px; }
  .social-btn      { width: 38px; height: 38px; min-width: 38px; min-height: 38px; flex: 0 0 38px; }
  .form-group input { font-size: 16px; } /* stops iOS zooming on focus */
}

/* Pricing table: scrolls inside its panel, never widens the page */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll .compare-table { border-radius: 0; }

/* ============================================================
   Footer link columns — collapsible on mobile
   Desktop keeps everything open; phones start closed so the
   footer stays short instead of running for three screens.
   ============================================================ */
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-label-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FF5522;
  text-align: left;
  cursor: default;
  width: 100%;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 0 20px;
  }

  .footer-col-wide {
    gap: 8px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-col-toggle {
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-col-toggle .footer-label-btn {
    position: relative;
    cursor: pointer;
    padding: 17px 30px 17px 0;
    margin: 0;
    letter-spacing: 1.4px;
    transition: color 0.25s ease;
  }

  /* plus / minus indicator */
  .footer-col-toggle .footer-label-btn::before,
  .footer-col-toggle .footer-label-btn::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    background: rgba(255, 255, 255, 0.55);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .footer-col-toggle .footer-label-btn::before {
    width: 12px;
    height: 1.5px;
    transform: translateY(-50%);
  }

  .footer-col-toggle .footer-label-btn::after {
    width: 1.5px;
    height: 12px;
    right: 9px;
    transform: translateY(-50%);
  }

  .footer-col-toggle.open .footer-label-btn::after {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
  }

  .footer-col-toggle .footer-col-links {
    max-height: 0;
    overflow: hidden;
    gap: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .footer-col-toggle .footer-col-links a {
    padding: 11px 0;
    font-size: 0.94rem;
  }

  .footer-col-toggle .footer-col-links a:first-child { padding-top: 2px; }
  .footer-col-toggle .footer-col-links a:last-child  { padding-bottom: 18px; }

  .footer-top {
    padding-bottom: 26px;
  }

  .footer-bottom {
    padding-top: 18px;
    font-size: 0.76rem;
  }

  .site-footer {
    padding: 36px 20px 20px;
  }
}
