/* ============================================
   SERVICES HUB PAGE
============================================ */


/* --- Hero (two-column with service list) --- */
.page-hero--services {
  min-height: 60vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-hero--services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 143, 216, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 143, 216, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 100%, black 20%, transparent 80%);
}

.page-hero--services::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(74, 143, 216, 0.04) 50%);
  pointer-events: none;
}

.page-hero--services .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
}

/* Service list in hero right column */
.hero-service-list {
  opacity: 0;
  animation: revealUp 0.8s 0.9s var(--ease-out) forwards;
  list-style: none;
  border-top: 1px solid rgba(247, 246, 242, 0.08);
}

.hero-service-list li {
  border-bottom: 1px solid rgba(247, 246, 242, 0.08);
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(247, 246, 242, 0.55);
  font-weight: 300;
  transition: color 0.2s;
  cursor: default;
}

.hero-service-list li:hover { color: var(--white); }

.hero-service-list .tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(74, 143, 216, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  opacity: 0.8;
}


/* ============================================
   SERVICE BENTO GRID
============================================ */
.section-services {
  background: var(--off-white);
  padding: 8rem 0;
  transition: background 1.1s ease;
}

.section-services .section-eyebrow { color: var(--accent-dark); transition: color 1.1s ease; }
.section-services .section-heading { color: var(--dark); transition: color 1.1s ease; }

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

.services-header-right {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  transition: color 1.1s ease;
}

/* Asymmetric two-column grid */
.services-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.svc-left-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-right-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

/* Card base */
.svc-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 1.1s ease, border-color 1.1s ease, box-shadow 0.4s var(--ease-out);
}

.svc-card:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07); }

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  transition: width 0.5s var(--ease-out);
}

.svc-card:hover::before { width: 100%; }

.svc-card-num {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.svc-card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.svc-card-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 0.6rem;
  opacity: 0.7;
  transition: color 1.1s ease, opacity 1.1s ease;
}

.svc-card-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  transition: color 1.1s ease;
}

.svc-card-body {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  transition: color 1.1s ease;
  margin-bottom: 1em;
}

/* Hover arrow indicator */
.svc-card-arrow {
  position: absolute;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 79, 139, 0.08);
  color: var(--accent-dark);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.svc-card:hover .svc-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Featured (SEO) card — dark, left column --- */
.svc-featured {
  padding: 2.4rem 2.4rem 2.2rem;
  flex: 1;
  min-height: 0;
}

.svc-1 { background: var(--dark); }
.svc-1 .svc-card-eyebrow { color: var(--accent); opacity: 1; }
.svc-1 .svc-card-title { color: var(--white); view-transition-name: seo-title; }
.svc-1 .svc-card-body { color: rgba(247, 246, 242, 0.5); }
.svc-1 .svc-card-num { color: rgba(247, 246, 242, 0.04); }
.svc-1 .svc-card-icon { color: var(--accent); view-transition-name: seo-icon; }
.svc-1::before { background: linear-gradient(90deg, var(--accent), rgba(74, 143, 216, 0.3)); }
.svc-1 .svc-card-arrow { background: rgba(74, 143, 216, 0.15); color: var(--accent); }

/* View transition names */
.svc-2 .svc-card-icon  { view-transition-name: web-icon; }
.svc-2 .svc-card-title { view-transition-name: web-title; }
.svc-3 .svc-card-icon  { view-transition-name: social-icon; }
.svc-3 .svc-card-title { view-transition-name: social-title; }
.svc-4 .svc-card-icon  { view-transition-name: brand-icon; }
.svc-4 .svc-card-title { view-transition-name: brand-title; }

/* Stat inside featured card */
.svc-card-stat {
  display: flex;
  gap: 2rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 246, 242, 0.08);
}

.svc-stat-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.svc-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.35);
  margin-top: 0.3rem;
}

/* --- Web Design — tall right card --- */
.svc-tall {
  padding: 2.2rem 2.2rem 3rem;
  flex: 1;
}

.svc-tall .svc-card-title { font-size: 1.15rem; }

/* --- Small cards (social + branding) --- */
.svc-short {
  padding: 1.8rem 2rem 2.8rem;
}

.svc-short .svc-card-num { font-size: 2rem; top: 1.4rem; right: 1.4rem; }
.svc-short .svc-card-title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.svc-short .svc-card-body { font-size: 0.78rem; }
.svc-short .svc-card-icon { width: 28px; height: 28px; margin-bottom: 1rem; }
.svc-short .svc-card-arrow { bottom: 1.4rem; right: 1.4rem; width: 28px; height: 28px; }


/* --- Portfolio card (compact, accent-dark, static orbs) --- */
.svc-portfolio {
  background: var(--accent-dark);
  border: 1px solid rgba(74, 143, 216, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  transition: box-shadow 0.4s var(--ease-out);
}

.svc-portfolio:hover { box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15); }

.svc-portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 143, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 143, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  transition: opacity 0.4s;
}

.svc-portfolio:hover::before { opacity: 0.5; }

/* Static orbs — decorative, no mouse tracking */
.portfolio-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.portfolio-orb-1 {
  width: 280px; height: 320px;
  background: radial-gradient(circle at 40% 40%, rgba(74, 143, 216, 0.15), transparent 65%);
  top: -100px; right: -10%;
  filter: blur(2px);
}

.portfolio-orb-2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle at 60% 60%, rgba(23, 79, 139, 0.18), transparent 65%);
  bottom: -50px; right: 25%;
  filter: blur(1px);
}

.portfolio-orb-3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 50% 50%, rgba(74, 143, 216, 0.1), transparent 65%);
  top: 10px; left: 60%;
  filter: blur(3px);
}

.portfolio-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 2.2rem;
  width: 100%;
}

.portfolio-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.portfolio-heading {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.portfolio-heading em { font-style: italic; color: rgba(247, 246, 242, 0.5); }

.portfolio-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 246, 242, 0.1);
}

.portfolio-stat-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.portfolio-stat-label {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.35);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Hover CTA */
.portfolio-cta {
  position: absolute;
  bottom: 1.6rem;
  right: 1.8rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.svc-portfolio:hover .portfolio-cta {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-cta svg { transition: transform 0.2s var(--ease-out); }
.svc-portfolio:hover .portfolio-cta svg { transform: translateX(3px); }


/* ============================================
   PROCESS
============================================ */
.section-process {
  background: var(--off-white);
  padding: 8rem 0;
  overflow: hidden;
  position: relative;
  transition: background 1.1s ease;
}

.section-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 143, 216, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 143, 216, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-process .section-eyebrow { color: var(--accent-dark); transition: color 1.1s ease; }
.section-process .section-heading { color: var(--dark); transition: color 1.1s ease; }

.process-header-right {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  transition: color 1.1s ease;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 1.1s ease, border-color 1.1s ease;
}

.process-step {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 1.1s ease;
}

.process-step:hover { background: var(--off-white); }

.process-step-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
  transition: color 1.1s ease;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  transition: color 1.1s ease;
}

.process-step-body {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
  transition: color 1.1s ease;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -0.5rem;
  top: 2.5rem;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
  transition: color 1.1s ease;
}

.process-step:last-child::after { display: none; }


/* ============================================
   FULL-SERVICE EXPLAINER
============================================ */
.section-fullservice {
  background: var(--white);
  padding: 8rem 0;
  transition: background 1.1s ease;
}

.fullservice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.section-fullservice .section-eyebrow { color: var(--accent-dark); transition: color 1.1s ease; }
.section-fullservice .section-heading { color: var(--dark); margin-bottom: 2rem; transition: color 1.1s ease; }

.fullservice-left p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1.2rem;
  transition: color 1.1s ease;
}

.fullservice-cta { margin-top: 2.5rem; }

.capability-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  transition: background 1.1s ease, border-color 1.1s ease;
}

.pillar {
  background: var(--white);
  padding: 1.8rem 1.6rem;
  transition: background 1.1s ease;
}

.pillar:hover { background: var(--off-white); }

.pillar-icon { width: 28px; height: 28px; color: var(--accent); margin-bottom: 0.9rem; }

.pillar-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: color 1.1s ease;
}

.pillar-body {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
  transition: color 1.1s ease;
}


/* ============================================
   RESULTS STRIP
============================================ */
.section-results {
  background: var(--accent-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-results::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: rgba(74, 143, 216, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.results-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.results-intro {
  padding-right: 4rem;
  border-right: 1px solid rgba(247, 246, 242, 0.15);
}

.results-intro p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.results-intro p em { font-style: italic; color: rgba(247, 246, 242, 0.6); }

.result-stat {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(247, 246, 242, 0.1);
}

.result-stat:last-child { border-right: none; }

.result-stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.result-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.45);
  margin-top: 0.5rem;
  font-weight: 500;
}


/* ============================================
   INDUSTRIES
============================================ */
.section-industries {
  background: var(--off-white);
  padding: 8rem 0;
  overflow: hidden;
}

.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-industries .section-eyebrow { color: var(--accent-dark); }
.section-industries .section-heading { color: var(--dark); }

.industries-header-right {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

/* Marquee ticker */
.industries-ticker {
  overflow: hidden;
  margin: 0 -3rem 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.2rem 0;
}

.industries-ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Industry feature cards */
.industries-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.industry-feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.industry-feature-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.industry-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(23, 79, 139, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-dark);
}

.industry-feature-icon svg { width: 22px; height: 22px; }

.industry-feature-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.industry-feature-body {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-light);
  font-weight: 300;
}


/* ============================================
   DARK-WORLD CROSSFADE
   Observer triggers on process heading.
   Services bento + process go dark together.
   Fullservice and below stay light.
============================================ */

/* Process section */
body.dark-world .section-process { background: var(--dark); }
body.dark-world .section-process::before { opacity: 1; }
body.dark-world .section-process .section-eyebrow { color: var(--accent); }
body.dark-world .section-process .section-heading { color: var(--white); }
body.dark-world .process-header-right { color: rgba(247, 246, 242, 0.4); }
body.dark-world .process-steps { background: rgba(247, 246, 242, 0.06); border-color: rgba(247, 246, 242, 0.06); }
body.dark-world .process-step { background: var(--dark-mid); }
body.dark-world .process-step:hover { background: rgba(247, 246, 242, 0.03); }
body.dark-world .process-step-num { color: rgba(74, 143, 216, 0.15); }
body.dark-world .process-step-title { color: var(--white); }
body.dark-world .process-step-body { color: rgba(247, 246, 242, 0.4); }
body.dark-world .process-step::after { color: rgba(74, 143, 216, 0.35); }

/* Bento section above */
body.dark-world .section-services { background: var(--dark); }
body.dark-world .section-services .section-eyebrow { color: var(--accent); }
body.dark-world .section-services .section-heading { color: var(--white); }
body.dark-world .services-header-right { color: rgba(247, 246, 242, 0.35); }

/* Non-featured cards invert */
body.dark-world .svc-card:not(.svc-1) {
  background: var(--dark-mid);
  border-color: rgba(247, 246, 242, 0.07);
}

body.dark-world .svc-card:not(.svc-1):hover {
  background: var(--mid);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

body.dark-world .svc-card:not(.svc-1) .svc-card-eyebrow { color: var(--accent); opacity: 1; }
body.dark-world .svc-card:not(.svc-1) .svc-card-title { color: var(--white); }
body.dark-world .svc-card:not(.svc-1) .svc-card-body { color: rgba(247, 246, 242, 0.4); }
body.dark-world .svc-card:not(.svc-1) .svc-card-num { color: rgba(247, 246, 242, 0.04); }
body.dark-world .svc-card:not(.svc-1)::before { background: linear-gradient(90deg, var(--accent), rgba(74, 143, 216, 0.3)); }
body.dark-world .svc-card:not(.svc-1) .svc-card-arrow { background: rgba(74, 143, 216, 0.15); color: var(--accent); }


/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .page-hero--services .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem 5rem;
  }

  .hero-service-list { display: none; }

  .services-header,
  .process-header,
  .fullservice-grid,
  .industries-header { grid-template-columns: 1fr; gap: 2rem; }

  /* Bento → 2x2 grid, portfolio full-width last */
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }

  .svc-left-col,
  .svc-right-col,
  .svc-half-row {
    display: contents;
  }

  .svc-featured { order: 1; padding: 1.8rem; }
  .svc-featured .svc-card-num { font-size: 2.2rem; }
  .svc-featured .svc-card-title { font-size: 1.15rem; }

  .svc-tall { order: 2; padding: 1.8rem; }
  .svc-tall .svc-card-title { font-size: 1rem; }

  .svc-short:nth-of-type(1) { order: 3; }
  .svc-short:nth-of-type(2) { order: 4; }

  .svc-short { padding: 1.5rem 1.5rem 2.4rem; }
  .svc-short .svc-card-title { font-size: 0.92rem; }
  .svc-short .svc-card-body { font-size: 0.75rem; }

  .svc-portfolio {
    grid-column: 1 / -1;
    order: 5;
  }

  .portfolio-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.6rem 1.8rem;
  }

  .portfolio-heading { font-size: 1rem; margin-bottom: 0; }
  .portfolio-stats { border-top: none; padding-top: 0; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }

  .capability-pillars { grid-template-columns: 1fr; }

  .results-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .results-intro {
    grid-column: 1 / -1;
    border-right: none;
    padding-right: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(247, 246, 242, 0.15);
  }

  .industries-cards { grid-template-columns: 1fr; }

  .section-services,
  .section-process,
  .section-fullservice,
  .section-results,
  .section-industries { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .services-bento { gap: 6px; }
  .svc-featured { padding: 1.5rem; }
  .svc-featured .svc-card-title { font-size: 1.05rem; }
  .svc-card-stat { gap: 1.5rem; }
  .svc-stat-num { font-size: 1.3rem; }
  .svc-stat-label { font-size: 0.5rem; }

  .svc-tall { padding: 1.5rem; }
  .svc-short { padding: 1.3rem 1.3rem 2rem; }
  .svc-short .svc-card-title { font-size: 0.85rem; }
  .svc-short .svc-card-body { font-size: 0.72rem; }
  .svc-short .svc-card-icon { width: 24px; height: 24px; margin-bottom: 0.8rem; }
  .svc-short .svc-card-num { font-size: 1.5rem; top: 1rem; right: 1rem; }

  .portfolio-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
  }

  .portfolio-stat-num { font-size: 1rem; }

  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}