/* ═══════════════════════════════════════════════════════════════
   SHOUT DESIGN — Bespoke Homepage Stylesheet
   Art-directed. Editorial. Unapologetically visual.
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --shout-red: #FF3B30;
  --shout-red-dark: #e6332b;
  --charcoal: #0a0a0a;
  --off-white: #f5f5f0;
  --warm-gray: #4a4a4a;
  --sand: #e8dcc8;
  --white: #ffffff;
  --light-bg: #f7f6f3;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-xxl: 128px;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
  --container-max: 1320px;
  --container-pad: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.highlight {
  color: var(--shout-red);
}

.arrow {
  display: inline-block;
  transition: transform 400ms var(--ease-out);
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(6px);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 80ms; }
.fade-in:nth-child(3) { transition-delay: 160ms; }
.fade-in:nth-child(4) { transition-delay: 240ms; }


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 400ms var(--ease-in-out), box-shadow 400ms var(--ease-in-out);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: opacity 300ms ease;
}

.nav-logo:hover .logo-img {
  opacity: 0.85;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  transition: color 300ms ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--shout-red);
  transition: width 300ms var(--ease-out);
}

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

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

.nav-cta {
  background: var(--shout-red) !important;
  color: var(--white) !important;
  padding: 10px 28px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: background 300ms ease, transform 200ms ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--shout-red-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: all 300ms var(--ease-out);
  border: none;
}

.btn-primary {
  background: var(--shout-red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--shout-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

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

.btn-lg {
  padding: 20px 52px;
  font-size: 17px;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.35) 40%,
    rgba(10, 10, 10, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 82px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  color: var(--shout-red);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-weight: 500;
}

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


/* ═══════════════════════════════════════════════════════════════
   SECTION 2: POSITIONING
   ═══════════════════════════════════════════════════════════════ */
#positioning {
  background: var(--off-white);
  padding: 140px 24px;
  position: relative;
}

.positioning-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.positioning-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.positioning-text:last-child {
  margin-bottom: 0;
}

.positioning-text strong {
  font-weight: 600;
  color: var(--charcoal);
}

.positioning-text .highlight {
  color: var(--shout-red);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--shout-red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title.left-align {
  text-align: left;
}

.section-subtitle {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--warm-gray);
  max-width: 640px;
  margin: 20px auto 0;
  line-height: 1.6;
  font-weight: 300;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 3: FEATURED WORK
   ═══════════════════════════════════════════════════════════════ */
#work {
  padding: 140px 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  margin-bottom: 80px;
}

.portfolio-card {
  position: relative;
}

.portfolio-link {
  display: block;
}

.portfolio-image {
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}

.portfolio-large .portfolio-image {
  aspect-ratio: 4 / 5;
}

.portfolio-small .portfolio-image {
  aspect-ratio: 3 / 4;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.04);
}

/* Offset pattern */
.portfolio-offset {
  margin-top: 100px;
}

.portfolio-offset-reverse {
  margin-top: -60px;
}

.portfolio-info {
  padding-top: 24px;
}

.portfolio-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--shout-red);
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}

.portfolio-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.portfolio-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--shout-red);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms var(--ease-out);
}

.portfolio-card:hover .portfolio-cta {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-footer {
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════
   LEAD CAPTURE FORM
   ═══════════════════════════════════════════════════════════════ */
#lead-capture {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#lead-capture::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,59,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.lead-content {
  color: var(--white);
}

.lead-content .section-label {
  color: var(--shout-red);
}

.lead-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lead-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.lead-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--shout-red);
}

/* Form */
.lead-form-wrap {
  position: relative;
}

.lead-form {
  background: var(--white);
  padding: 44px 40px;
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--off-white);
  border: 2px solid transparent;
  transition: border-color 300ms ease, background 300ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus {
  border-color: var(--shout-red);
  background: var(--white);
}

.form-input::placeholder {
  color: #aaa;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-form {
  width: 100%;
  margin-top: 8px;
  padding: 18px 40px;
  font-size: 16px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 4: SERVICES
   ═══════════════════════════════════════════════════════════════ */
#services {
  padding: 140px 0;
  background: var(--light-bg);
}

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

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.service-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

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

.service-content {
  padding: 36px 32px;
  border-left: 4px solid var(--shout-red);
}

.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--shout-red);
  transition: color 300ms ease;
}

.service-link:hover {
  color: var(--shout-red-dark);
}


/* ═══════════════════════════════════════════════════════════════
   AI SECTION
   ═══════════════════════════════════════════════════════════════ */
#ai {
  overflow: hidden;
}

.ai-section {
  background: var(--charcoal);
  position: relative;
  padding: 140px 0;
}

.ai-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,59,48,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,59,48,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.ai-label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--shout-red) !important;
}

.ai-sparkle {
  width: 14px;
  height: 14px;
}

.ai-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.ai-title .highlight {
  color: var(--shout-red);
  font-style: italic;
}

.ai-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 560px;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.ai-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ai-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--shout-red);
  background: rgba(255,59,48,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
}

.ai-feature-icon svg {
  width: 100%;
  height: 100%;
}

.ai-feature h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ai-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* AI Visual Orb */
.ai-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,59,48,0.15);
}

.ai-ring-1 {
  width: 100%;
  height: 100%;
  animation: ai-spin 20s linear infinite;
}

.ai-ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(255,59,48,0.25);
  animation: ai-spin 15s linear infinite reverse;
}

.ai-ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(255,59,48,0.35);
  animation: ai-spin 10s linear infinite;
}

.ai-core {
  width: 80px;
  height: 80px;
  color: var(--shout-red);
  position: relative;
  z-index: 1;
}

.ai-core svg {
  width: 100%;
  height: 100%;
}

@keyframes ai-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form shake animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 5: TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
#testimonials {
  padding: 140px 0;
  background: var(--white);
}

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

.testimonial-card {
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--shout-red);
  line-height: 0.7;
  margin-bottom: 20px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  font-size: 18px;
  color: var(--shout-red);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 6: DIFFERENTIATORS
   ═══════════════════════════════════════════════════════════════ */
#about {
  overflow: hidden;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.diff-image-col {
  position: relative;
  overflow: hidden;
}

.diff-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: sticky;
  top: 0;
}

.diff-content-col {
  padding: 120px 80px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.diff-content-col .section-header {
  text-align: left;
  margin-bottom: 56px;
}

.diff-item {
  display: flex;
  gap: 24px;
  margin-bottom: 44px;
  align-items: flex-start;
}

.diff-item:last-child {
  margin-bottom: 0;
}

.diff-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--shout-red);
}

.diff-icon svg {
  width: 100%;
  height: 100%;
}

.diff-text h4 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.diff-text p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 7: PROCESS
   ═══════════════════════════════════════════════════════════════ */
#process {
  padding: 140px 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  margin-top: 80px;
}

/* Connecting line */
.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--shout-red), var(--shout-red));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--shout-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(255, 59, 48, 0.25);
}

.process-step .process-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.3;
}

.process-desc {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 8: CTA
   ═══════════════════════════════════════════════════════════════ */
#contact {
  position: relative;
  padding: 180px 24px;
  overflow: hidden;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.8);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(1.2);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.6);
  transition: color 300ms ease, transform 200ms ease;
  display: block;
}

.footer-social a:hover {
  color: var(--shout-red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 100%;
  height: 100%;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 300ms ease;
}

.footer-links a:hover {
  color: var(--shout-red);
}

.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-contact-info a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 300ms ease;
}

.footer-contact-info a:hover {
  color: var(--shout-red);
}

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

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 300ms ease;
}

.footer-legal a:hover {
  color: var(--shout-red);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --container-pad: 40px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms var(--ease-out);
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 26px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    font-size: 16px !important;
    margin-top: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  /* Lead Capture */
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lead-form {
    padding: 36px 32px;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-offset {
    margin-top: 60px;
  }

  .portfolio-offset-reverse {
    margin-top: -30px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-image {
    aspect-ratio: auto;
  }

  /* AI Section */
  .ai-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-visual {
    order: -1;
  }

  .ai-orb {
    width: 220px;
    height: 220px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Differentiators */
  .diff-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .diff-image-col {
    height: 50vh;
  }

  .diff-image-col img {
    position: relative;
  }

  .diff-content-col {
    padding: 80px 40px;
  }

  /* Process */
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-line {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --container-pad: 20px;
    --nav-height: 64px;
  }

  /* ── Global Mobile Spacing ── */
  #positioning {
    padding: 64px 20px;
  }

  #work,
  #services,
  #testimonials,
  #process {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section-subtitle {
    font-size: 16px;
    margin-top: 12px;
  }

  /* ── Hero Mobile ── */
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-headline {
    font-size: clamp(28px, 7.5vw, 42px);
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-sub br {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    padding: 0 8px;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
  }

  .scroll-indicator {
    display: none;
  }

  /* ── Lead Capture Mobile ── */
  #lead-capture {
    padding: 64px 0;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lead-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .lead-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .lead-form {
    padding: 28px 24px;
  }

  .form-input {
    padding: 14px 14px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .btn-form {
    padding: 16px 24px;
    font-size: 15px;
  }

  /* ── Positioning Mobile ── */
  .positioning-text {
    font-size: clamp(18px, 4.5vw, 24px);
    margin-bottom: 24px;
  }

  /* ── Portfolio Mobile ── */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio-offset,
  .portfolio-offset-reverse {
    margin-top: 0;
  }

  .portfolio-large .portfolio-image,
  .portfolio-small .portfolio-image {
    aspect-ratio: 4 / 3; /* Landscape for better mobile use of space */
  }

  .portfolio-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .portfolio-title {
    font-size: 22px;
  }

  .portfolio-footer {
    margin-top: 8px;
  }

  /* ── Services Mobile ── */
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-image {
    aspect-ratio: 16 / 10;
  }

  .service-content {
    padding: 28px 24px;
  }

  .service-title {
    font-size: 22px;
  }

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

  /* ── AI Section Mobile ── */
  .ai-section {
    padding: 72px 0;
  }

  .ai-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-visual {
    order: -1;
  }

  .ai-orb {
    width: 160px;
    height: 160px;
  }

  .ai-core {
    width: 50px;
    height: 50px;
  }

  .ai-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .ai-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .ai-feature h4 {
    font-size: 15px;
  }

  .ai-feature p {
    font-size: 13px;
  }

  .ai-feature-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  /* ── Testimonials Mobile ── */
  .testimonial-quote {
    font-size: 72px;
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  /* ── Differentiators Mobile ── */
  .diff-image-col {
    height: 36vh;
  }

  .diff-content-col {
    padding: 48px 20px;
  }

  .diff-content-col .section-header {
    margin-bottom: 36px;
  }

  .diff-item {
    gap: 16px;
    margin-bottom: 32px;
  }

  .diff-icon {
    width: 40px;
    height: 40px;
  }

  .diff-text h4 {
    font-size: 17px;
  }

  .diff-text p {
    font-size: 14px;
  }

  /* ── Process Mobile ── */
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .process-number {
    width: 64px;
    height: 64px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .process-step .process-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .process-desc {
    font-size: 14px;
  }

  /* ── CTA Mobile ── */
  #contact {
    padding: 80px 20px;
  }

  .cta-headline {
    font-size: clamp(28px, 7vw, 40px);
  }

  .cta-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .cta-sub br {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 16px 24px;
  }

  /* ── Footer Mobile ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-legal {
    flex-direction: row;
    gap: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SMALL MOBILE (< 375px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 374px) {
  :root {
    --container-pad: 16px;
  }

  .hero-headline {
    font-size: 26px;
  }

  .lead-form {
    padding: 24px 18px;
  }

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


/* ═══════════════════════════════════════════════════════════════
   FOCUS STATES (Accessibility)
   ═══════════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--shout-red);
  outline-offset: 4px;
}

/* Visually hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGE HERO
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-short {
  min-height: 35vh;
}
.page-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.85) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 8rem 2rem 4rem;
  color: #fff;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION PADDING & DARK/LIGHT VARIANTS
   ═══════════════════════════════════════════════════════════════ */
.section-pad {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.section-dark {
  background: var(--charcoal);
  color: #fff;
}
.section-dark .section-label {
  color: var(--shout-red);
}
.section-dark .section-title {
  color: #fff;
}
.section-dark p {
  color: rgba(255,255,255,0.8);
}
.section-light {
  background: #f8f7f5;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — INTRO GRID
   ═══════════════════════════════════════════════════════════════ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.25rem;
}
.about-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — SPLIT TEXT BLOCK
   ═══════════════════════════════════════════════════════════════ */
.about-split-text {
  max-width: 800px;
  margin: 0 auto;
}
.about-split-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   VALUES GRID
   ═══════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.value-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
}
.value-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
}
.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  margin-bottom: 1rem;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}
.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.9rem;
  color: var(--shout-red);
  font-weight: 500;
}
.team-quals {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   JOIN BANNER
   ═══════════════════════════════════════════════════════════════ */
.join-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.join-banner .section-title {
  color: #fff;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION (reusable across pages)
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) 2rem;
  text-align: center;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-intro-image {
    order: -1;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page-hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-hero-content {
    padding: 6rem 1.5rem 3rem;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAV ACTIVE STATE
   ═══════════════════════════════════════════════════════════════ */
.nav-links a.active {
  color: var(--shout-red);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES HUB — SERVICE PILLARS (full-width alternating blocks)
   ═══════════════════════════════════════════════════════════════ */
.services-intro {
  max-width: 800px;
}
.services-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.service-pillars {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.service-pillar:hover {
  transform: translateY(-4px);
}

.service-pillar-reverse {
  direction: rtl;
}

.service-pillar-reverse > * {
  direction: ltr;
}

.service-pillar-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-pillar-media video,
.service-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-pillar-content {
  padding: 1rem 0;
}

.service-pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--charcoal);
}

.service-pillar-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.service-pillar-link {
  font-weight: 600;
  color: var(--shout-red);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING PAGE — 3-COLUMN PILLAR CARDS
   ═══════════════════════════════════════════════════════════════ */
.brand-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.brand-pillar-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.brand-pillar-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.brand-pillar-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--shout-red);
}

.brand-pillar-list {
  list-style: none;
  padding: 0;
}

.brand-pillar-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.brand-pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--shout-red);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING PAGE — BRAND INTRO TEXT
   ═══════════════════════════════════════════════════════════════ */
.brand-intro-text {
  max-width: 800px;
  margin: 2rem auto 0;
}

.brand-intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  font-style: italic;
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING PAGE — 5Ps GRID
   ═══════════════════════════════════════════════════════════════ */
.five-ps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.five-p-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  border-top: 3px solid var(--shout-red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.five-p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.five-p-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--shout-red);
  display: block;
  margin-bottom: 0.5rem;
}

.five-p-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.five-p-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING PAGE — ENGAGEMENT TIERS
   ═══════════════════════════════════════════════════════════════ */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.engage-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.engage-tag {
  display: inline-block;
  background: var(--shout-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.engage-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.engage-meta {
  font-size: 0.85rem;
  color: var(--shout-red);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.engage-card p:last-child {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   BRANDING PAGE — WHO WE DO IT FOR
   ═══════════════════════════════════════════════════════════════ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.who-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.who-card svg {
  color: var(--shout-red);
  margin-bottom: 1.25rem;
}

.who-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.who-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   WEB DESIGN PAGE — 6-CARD GRID
   ═══════════════════════════════════════════════════════════════ */
.webdesign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.webdesign-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webdesign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.webdesign-card-icon {
  color: var(--shout-red);
  margin-bottom: 1.25rem;
}

.webdesign-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.webdesign-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   WEB DESIGN PAGE — BIG QUOTE
   ═══════════════════════════════════════════════════════════════ */
.big-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.big-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   MARKETING PAGE — BENEFITS GRID
   ═══════════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--shout-red);
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}

/* ═══════════════════════════════════════════════════════════════
   MARKETING PAGE — AUDIT CARDS
   ═══════════════════════════════════════════════════════════════ */
.audit-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.audit-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  border-left: 4px solid var(--shout-red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.audit-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.audit-icon {
  color: var(--shout-red);
  flex-shrink: 0;
}

.audit-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}

.audit-card > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.25rem;
}

.audit-elements {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.audit-elements span {
  display: inline-block;
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGES — RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .five-ps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .engage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-pillars-grid .brand-pillar-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .service-pillar,
  .service-pillar-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-pillar-reverse > * {
    direction: ltr;
  }
  .five-ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .engage-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .webdesign-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .brand-pillars-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .five-ps-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {
  #site-header,
  .scroll-indicator,
  .hero-video-wrap,
  .hero-overlay {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO — Work Hub & Case Studies
   ═══════════════════════════════════════════════════════════════ */

/* Filters */
.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  background: #f0f0f0;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}
.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--shout-red);
  color: #fff;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.portfolio-card {
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.portfolio-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}
.portfolio-card-view {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.portfolio-card-info {
  padding: 1.5rem;
}
.portfolio-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.portfolio-card-info p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}

/* Case Study Sections */
.case-study-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.case-study-section-reverse {
  direction: rtl;
}
.case-study-section-reverse > * {
  direction: ltr;
}
.case-study-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-top: 1.5rem;
}
.case-study-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Hero background image (for non-video case studies) */
.page-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  margin-top: 0.75rem;
  font-weight: 400;
}

/* Portfolio Gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s var(--ease-out);
}
.portfolio-gallery-item img:hover {
  transform: scale(1.02);
}

/* Testimonial */
.testimonial-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-quote cite {
  font-style: normal;
  font-size: 1rem;
  color: var(--shout-red);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .case-study-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .case-study-section-reverse {
    direction: ltr;
  }
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTOR PAGES
   ═══════════════════════════════════════════════════════════════ */
.sector-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.sector-service-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.sector-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.sector-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.sector-service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}
.sector-featured-work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .sector-services-grid {
    grid-template-columns: 1fr;
  }
  .sector-featured-work {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.blog-card {
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-content {
  padding: 1.5rem 2rem 2rem;
}
.blog-card-meta {
  font-size: 0.85rem;
  color: var(--shout-red);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.blog-card-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}
.blog-article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}
.blog-article-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}
.blog-article-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  color: var(--charcoal);
}
.blog-article-content p {
  margin-bottom: 1.5rem;
}
.blog-article-content ul, .blog-article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.blog-article-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT / ENQUIRY / FORM STYLES
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  padding: 2rem;
  background: #f8f7f5;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--shout-red);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   CASE STUDY / PORTFOLIO DETAIL
   ═══════════════════════════════════════════════════════ */
.case-study-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.case-study-section-reverse {
  direction: rtl;
}
.case-study-section-reverse > * {
  direction: ltr;
}
.case-study-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-top: 1rem;
}
.case-study-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.4s var(--ease-out);
}
.portfolio-gallery-item:hover img {
  transform: scale(1.03);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}
.testimonial-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.page-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .case-study-section,
  .case-study-section-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  .testimonial-quote {
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  display: block;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.blog-card-image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--shout-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}
.blog-card-content {
  padding: 1.5rem;
}
.blog-card-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.75rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--shout-red);
}
.blog-article-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 1rem;
}
.blog-article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
}
.blog-article-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.blog-article-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.blog-article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.blog-article-content a {
  color: var(--shout-red);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   CONTACT OFFICES
   ═══════════════════════════════════════════════════════ */
.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.contact-office-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.contact-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.contact-office-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--shout-red);
  margin-bottom: 0.5rem;
}
.contact-office-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}
.contact-office-card address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
}
.contact-office-phone {
  margin-top: 1rem;
}
.contact-office-phone a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-form,
.enquiry-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #eee;
}
.contact-form h2,
.enquiry-form h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════════════════════ */
.perk-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #eee;
}
.perk-card strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.perk-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   ENQUIRY CHECKBOXES
   ═══════════════════════════════════════════════════════ */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
  padding: 0.5rem 0;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--shout-red);
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════ */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin: 0.75rem 0 1.5rem;
}
.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.4rem;
}
.legal-content a {
  color: var(--shout-red);
  font-weight: 500;
}
.legal-updated {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════
   SECTOR PAGES
   ═══════════════════════════════════════════════════════ */
.sector-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.sector-service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #eee;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.sector-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.sector-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.sector-service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}
.sector-featured-work {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════
   AI SOLUTIONS PAGE
   ═══════════════════════════════════════════════════════ */

/* ── AI Page Intro ── */
.ai-page-intro {
  max-width: 880px;
}
.ai-page-intro-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.25rem;
}
.ai-page-intro-text strong {
  color: var(--charcoal);
}

/* ── AI Impact Stats ── */
.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ai-stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.ai-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.ai-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--shout-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ai-stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.ai-stat-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ── AI Services Grid (6 pillars) ── */
.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ai-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid #eee;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  position: relative;
}
.ai-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.ai-service-icon {
  width: 48px;
  height: 48px;
  color: var(--shout-red);
  background: rgba(255,59,48,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 1.25rem;
}
.ai-service-icon svg {
  width: 100%;
  height: 100%;
}
.ai-service-number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--shout-red);
  margin-bottom: 0.5rem;
}
.ai-service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.ai-service-card > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1.25rem;
}
.ai-service-list {
  padding: 0;
  margin: 0;
}
.ai-service-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  list-style: none;
}
.ai-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--shout-red);
  border-radius: 50%;
}

/* ── AI Process Grid ── */
.ai-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.ai-process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--shout-red), var(--shout-red));
  z-index: 0;
}
.ai-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ai-process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--shout-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(255,59,48,0.25);
  position: relative;
  z-index: 2;
}
.ai-process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.ai-process-step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* ── AI Use Cases Grid ── */
.ai-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ai-usecase-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.ai-usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.ai-usecase-icon {
  width: 40px;
  height: 40px;
  color: var(--shout-red);
  margin-bottom: 1rem;
}
.ai-usecase-icon svg {
  width: 100%;
  height: 100%;
}
.ai-usecase-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.ai-usecase-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* ── AI Philosophy / Ethics ── */
.ai-philosophy-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 4rem;
  align-items: center;
}
.ai-philosophy-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.ai-principles-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.ai-principle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}
.ai-principle svg {
  flex-shrink: 0;
  color: var(--shout-red);
}
.ai-philosophy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── AI Tech Stack Grid ── */
.ai-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ai-tech-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 3px solid var(--shout-red);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.ai-tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.ai-tech-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.ai-tech-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* ── AI Engagement Tiers ── */
.ai-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ai-engage-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid #eee;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.ai-engage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.ai-engage-card-featured {
  border: 2px solid var(--shout-red);
  position: relative;
}
.ai-engage-card .engage-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.ai-engage-card .engage-meta {
  font-size: 0.85rem;
  color: var(--shout-red);
  font-weight: 500;
  margin-bottom: 1rem;
}
.ai-engage-card > p:last-of-type {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* ── AI FAQ ── */
.ai-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ai-faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  border: 1px solid #eee;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.ai-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.ai-faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.ai-faq-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* ── AI Page Responsive — Tablet ── */
@media (max-width: 1024px) {
  .ai-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-process-grid::before {
    display: none;
  }
  .ai-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ai-philosophy-visual {
    order: -1;
  }
  .ai-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-engage-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── AI Page Responsive — Mobile ── */
@media (max-width: 768px) {
  .ai-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .ai-stat-card {
    padding: 1.5rem 1rem;
  }
  .ai-stat-number {
    font-size: 2rem;
  }
  .ai-stat-label {
    font-size: 0.75rem;
  }
  .ai-services-grid {
    grid-template-columns: 1fr;
  }
  .ai-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .ai-process-number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .ai-usecases-grid {
    grid-template-columns: 1fr;
  }
  .ai-tech-grid {
    grid-template-columns: 1fr;
  }
  .ai-faq-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ai-stats-grid {
    grid-template-columns: 1fr;
  }
  .ai-process-grid {
    grid-template-columns: 1fr;
  }
}
