/* ──────────────────────── */
/* RESET & VARIABLES */
/* ──────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg-dark: #0a0a0a;
  --text-dark: #fff;
  --bg-light: #fafafa;
  --text-light: #0a0a0a;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-dark);
  color: var(--text-dark);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ──────────────────────── */
/* LIGHT PAGE THEME (About, Contact, Project Pages) */
/* ──────────────────────── */
body.light-page {
  background: var(--bg-light);
  color: var(--text-light);
  overflow: auto;
}
body.light-page .top-bar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
body.light-page .logo img {
  filter: brightness(0%);
}
body.light-page .hamburger span {
  background: #0a0a0a;
}
body.light-page .mobile-menu {
  background: #fafafa;
  border-left: 1px solid #e0e0e0;
}
body.light-page .mobile-menu a {
  color: #0a0a0a !important;
}

/* ──────────────────────── */
/* TOP BAR */
/* ──────────────────────── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 3000;
}
.logo img {
  height: 24px;
  width: auto;
  filter: brightness(100%);
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: white;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* ──────────────────────── */
/* INDEX LAYOUT */
/* ──────────────────────── */
.left-content {
  padding-top: 60px;
  padding-right: 400px;
  box-sizing: border-box;
  min-height: 100vh;
}
.right-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: #0a0a0a;
  border-left: 1px solid #1a1a1a;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 80px 2rem 2rem;
  overflow-y: auto;
}
.big-number {
  font-size: 6rem;
  font-weight: 200;
  opacity: 0.08;
  margin-bottom: 1rem;
  line-height: 1;
  text-align: right;
  padding-right: 1rem;
}

/* ──────────────────────── */
/* DESKTOP MENU — FULL-ROW CLICKABLE */
/* ──────────────────────── */
.desktop-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.desktop-menu li {
  margin: 0.01rem 0;
  font-size: 1rem;
}
.desktop-menu a {
  display: block;
  padding: 0.25rem 0.5rem;
  color: inherit;
  text-decoration: none;
  opacity: 0.4;
  cursor: pointer;
  transition:
    opacity 0.3s,
    background-color 0.3s;
  border-radius: 4px;
}
.desktop-menu a:hover,
.desktop-menu a.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
}
.desktop-menu span {
  font-size: 0.9rem;
  opacity: 0.5;
  margin-right: 0.5rem;
}

/* ──────────────────────── */
/* RIGHT PANEL PROJECT INFO */
/* ──────────────────────── */
.project-info-panel {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.project-info-panel h2 {
  font-size: 3.6rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  text-align: left;
}
.project-info-panel .project-subtitle {
  font-size: 1.1rem;
  opacity: 0.6;
  margin: 0 0 0.5rem;
  text-align: left;
}
.view-more-desktop {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.6;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  width: fit-content;
  align-self: flex-start;
}
.view-more-desktop:hover {
  opacity: 1;
}

/* ──────────────────────── */
/* LEFT CONTENT STYLES */
/* ──────────────────────── */
.intro-section {
  padding: 0 8vw 4rem;
  margin-top: 3rem;
}
.intro-text {
  max-width: 600px;
  font-size: 2.2rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
  text-align: left;
  margin-top: 0;
}
.project-section {
  padding: 6vh 0;
  scroll-margin-top: 60px;
}

/* ──────────────────────── */
/* DIVIDER */
/* ──────────────────────── */
.divider {
  height: 1px;
  background: #1a1a1a;
  margin: 1.5rem auto 2rem;
  width: 100%;
}
@media (max-width: 1100px) {
  .divider {
    background: #222;
    width: 50%;
    margin: 1rem auto 1.5rem;
  }
}

/* ──────────────────────── */
/* PROJECT MEDIA */
/* ──────────────────────── */
.canvas-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  background: #000;
}
.canvas-image,
.hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.canvas-image {
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
.hover-video {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.play-button {
  display: none !important;
}
@media (max-width: 1100px) {
  .hover-video {
    display: none !important;
  }
}

/* ──────────────────────── */
/* MOBILE PROJECT INFO */
/* ──────────────────────── */
.project-info-mobile,
.divider {
  display: none;
}
@media (max-width: 1100px) {
  .left-content {
    padding-right: 0;
    padding-top: 50px;
  }
  .right-panel {
    display: none;
  }
  .project-info-mobile {
    display: block;
    text-align: left;
    padding: 0 2rem;
    padding-left: 2rem;
    margin-left: 0;
  }
  .project-info-mobile .project-number {
    font-size: 1rem;
    opacity: 0.5;
    margin-bottom: 0.2rem;
  }
  .project-info-mobile h2 {
    font-size: 3rem;
    margin-top: 0.2rem;
    line-height: 1.1;
  }
  .project-info-mobile .project-subtitle {
    font-size: 0.8rem;
    margin: 0.2rem 0 0.1rem;
    opacity: 0.6;
  }
  .project-info-mobile .view-more {
    font-size: 0.8rem;
    margin-top: 0.1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
    display: inline-block;
    width: fit-content;
  }
  .project-info-mobile .view-more:hover {
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .view-more-desktop {
    display: none !important;
  }
}

/* ──────────────────────── */
/* FINAL CTA */
/* ──────────────────────── */
.final-cta {
  background: #dbdbdb;
  padding: 6rem 8vw 4rem;
  text-align: left;
}
.final-cta h2 {
  font-size: 2.8rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0a0a0a;
}
.final-cta p {
  font-size: 1.2rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #0a0a0a;
}
.final-cta .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 140, 255, 0.7);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}
.final-cta .cta-button:hover {
  background: rgba(0, 140, 255, 0.9);
}

/* ──────────────────────── */
/* FOOTER */
/* ──────────────────────── */
.simple-footer {
  padding: 1.25rem 8vw 1rem;
  border-top: 1px solid #e0e0e0;
  text-align: left;
}
body:not(.light-page) .simple-footer {
  background: #dbdbdb;
  --footer-text: #0a0a0a;
}
body.light-page .simple-footer {
  background: #fafafa;
  --footer-text: #0a0a0a;
}
.simple-footer .copyright,
.simple-footer .social-icons a {
  color: var(--footer-text);
  font-size: 0.7rem;
  opacity: 0.7;
}
.simple-footer .linkedin-icon svg {
  fill: var(--footer-text) !important;
}

/* ──────────────────────── */
/* MOBILE MENU */
/* ──────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  background: #121212;
  z-index: 2000;
  padding: 60px 40px 2rem;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #222;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  list-style: none;
  width: 100%;
}
.mobile-menu li {
  margin: 1.2rem 0;
}
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: #fff !important;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.mobile-menu a:hover {
  opacity: 1;
}

/* ──────────────────────── */
/* UNIVERSAL PAGE CONTENT */
/* ──────────────────────── */
.page-content {
  padding: 60px 8vw 4rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Left-align About page content */
body.light-page .page-content {
  text-align: left;
}

/* Keep project pages centered (optional override if needed) */
.project-page .page-content {
  margin: 0 auto;
  text-align: center;
}

/* WIDE PROJECT PAGES */
.project-page--wide {
  padding: 60px 8vw 4rem;
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

/* ──────────────────────── */
/* PROJECT HERO HEADER */
/* ──────────────────────── */
.project-hero-header {
  padding: 6rem 8vw 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.project-hero-title {
  font-size: 4.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
}
.project-hero-subtitle {
  font-size: 1.6rem;
  opacity: 0.7;
  margin: 0 0 2rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
}
.project-hero-meta {
  margin: 0 0 2rem;
  text-align: center;
}
.project-hero-meta span {
  font-size: 0.9rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.project-role {
  font-size: 1.1rem;
  opacity: 0.7;
  margin: 1rem 0 3rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* MOBILE */
@media (max-width: 768px) {
  .project-hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  .project-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .project-hero-meta span {
    font-size: 0.8rem;
  }
  .project-role {
    font-size: 1rem;
    margin: 0.8rem 0 2rem;
    line-height: 1.5;
  }
}

/* ──────────────────────── */
/* PROJECT SUMMARY — CENTERED ON DESKTOP, LEFT ON MOBILE */
/* ──────────────────────── */
.project-summary-block {
  padding: 3rem 8vw;
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
}

.project-summary-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
  color: var(--text-dark);
  text-align: center;
}

.project-summary-text {
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
  max-width: 950px;
  letter-spacing: -0.02em;
  word-break: break-word;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Light page override */
body.light-page .project-summary-label,
body.light-page .project-summary-text {
  color: var(--text-light);
}

/* MOBILE — LEFT ALIGN */
@media (max-width: 768px) {
  .project-summary-block {
    padding: 2rem 4vw;
  }
  .project-summary-label {
    font-size: 0.8rem !important;
    text-align: left;
  }
  .project-summary-text {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    max-width: 90% !important;
    letter-spacing: 0 !important;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ──────────────────────── */
/* PROJECT MEDIA */
/* ──────────────────────── */
.project-hero {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  background: #000;
  margin: 2rem auto 3rem;
  display: block;
}

/* ──────────────────────── */
/* ABOUT & CONTACT */
/* ──────────────────────── */
.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  opacity: 0.85;
  margin: 4rem 0 2rem;
  text-align: left;
}
.expertise-group h3,
.experience-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.9;
  margin: 2rem 0 1rem;
  text-align: left;
}
.expertise-items,
.experience-roles {
  padding-left: 1rem;
  list-style: none;
}
.expertise-items li,
.experience-roles li {
  margin: 0.6rem 0;
  font-size: 1rem;
  opacity: 0.75;
  line-height: 1.5;
  text-align: left;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.form-group label {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 500;
  color: #0a0a0a;
}
.form-group input,
.form-group textarea {
  background: #fff;
  border: 1px solid #ddd;
  color: #0a0a0a;
  padding: 12px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  resize: vertical;
  width: 100%;
}
.submit-btn {
  background: transparent;
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
  padding: 12px 24px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
  width: fit-content;
  margin-top: 1rem;
}
.submit-btn:hover {
  opacity: 0.8;
}

/* ──────────────────────── */
/* TEXT OPTIMIZATION */
/* ──────────────────────── */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ──────────────────────── */
/* NEXT PROJECT PREVIEW */
/* ──────────────────────── */
.next-project-preview {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .next-project-image {
    flex: 0 0 70%;
    overflow: hidden;
    border-radius: 4px;
  }
  .next-project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .next-project-content {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  .next-project-preview {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem 0;
    margin-top: 2rem;
    max-width: 100%;
  }
  .next-project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
  }
  .next-project-content {
    padding-left: 0;
  }
  .next-project-label {
    font-size: 0.9rem;
  }
  .next-project-arrow {
    font-size: 1.2rem;
  }
  .next-project-content h2 {
    font-size: 2rem;
  }
  .next-project-content p {
    font-size: 0.9rem;
  }
}
.next-project-header {
  margin-bottom: 0.5rem;
}
.next-project-link {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.next-project-link:hover .next-project-arrow {
  transform: translateX(4px);
}
.next-project-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.next-project-arrow {
  font-size: 1.5rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.next-project-arrow:hover {
  opacity: 1;
}
.next-project-content h2 {
  font-size: 2.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.next-project-content p {
  font-size: 1.2rem;
  opacity: 0.6;
  margin: 0;
}

/* LINE ABOVE NEXT PROJECT */
.next-project-divider {
  height: 1px;
  background: #333;
  margin: 4rem 0;
}
@media (min-width: 769px) {
  .next-project-divider {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .next-project-divider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ──────────────────────── */
/* FIGMA LINKS */
/* ──────────────────────── */
.figma-links-wrapper {
  padding: 2rem 0;
  text-align: center;
}
.figma-link-item {
  margin-bottom: 1.5rem;
}
.figma-link-label {
  font-size: 0.9rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}
.figma-link {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.6;
  transition: opacity 0.3s;
  text-decoration: none;
  display: inline-block;
}
.figma-link:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .figma-links-wrapper {
    padding: 1rem 0;
  }
  .figma-link-label {
    font-size: 0.8rem;
  }
  .figma-link {
    font-size: 0.9rem;
  }
}

/* ──────────────────────── */
/* MOBILE: MAKE ENTIRE PROJECT BLOCK CLICKABLE */
/* ──────────────────────── */
@media (max-width: 1100px) {
  .project-mobile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 2rem;
  }
  .project-mobile-link:hover,
  .project-mobile-link:focus {
    color: inherit;
  }
  .project-mobile-link:hover .project-subtitle,
  .project-mobile-link:hover .view-more {
    opacity: 1;
  }
}

/* ──────────────────────── */
/* LIGHT PAGE: FORCE PROJECT SUMMARY TO DARK TEXT */
/* ──────────────────────── */
body.light-page .project-summary-label {
  color: #0a0a0a !important;
}

/* VOICEMED VIDEO WRAPPER */
.voicemed-logo-video-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 2rem auto 3rem;
  padding: 0 8vw;
  box-sizing: border-box;
}
.voicemed-logo-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
@media (min-width: 901px) {
  .voicemed-logo-video-wrapper {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2.5rem 8vw;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  }
  .voicemed-logo-video-wrapper video {
    max-width: 900px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 900px) {
  .voicemed-logo-video-wrapper {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

/* ──────────────────────── */
/* PROJECT STRATEGY BLOCK */
/* ──────────────────────── */
.project-strategy-block {
  padding: 4rem 8vw;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}

.strategy-section {
  margin-bottom: 2.5rem;
}

.strategy-section:not(:first-child) {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.strategy-heading {
  font-size: 1.7rem;
  font-weight: 900;
  opacity: 0.9;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.strategy-text {
  font-size: 1.5rem;
  line-height: 1.7;
  opacity: 0.8;
  color: var(--text-dark);
  font-weight: 400;
  margin: 0;
}

/* Light page support */
body.light-page .strategy-heading,
body.light-page .strategy-text {
  color: var(--text-light);
}

/* Mobile: tighter spacing */
@media (max-width: 768px) {
  .project-strategy-block {
    padding: 2.5rem 4vw;
  }
  .strategy-heading {
    font-size: 1.125rem;
  }
  .strategy-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .strategy-section {
    margin-bottom: 2.75rem;
  }
}

/* Base container – works on all screens */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography that scales */
h1,
h2,
h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

/* Section padding that adapts */
.section {
  padding: 40px 0;
}

/* Laptop/desktop adjustment */
@media (min-width: 992px) {
  .section {
    padding: 60px 0;
  }

  /* Prevent oversized text blocks */
  .text-block {
    max-width: 65ch; /* Optimal reading width */
  }
}

@media (max-width: 768px) {
  .smartiq-section {
    padding: 40px 24px !important;
  }

  .smartiq-section h2 {
    font-size: 26px;
  }

  .smartiq-section > p {
    font-size: 17px;
  }

  .smartiq-section .features-container p {
    font-size: 17px;
  }
}

/* ──────────────────────── */
/* SMART IQ SECTION - Matches Strategy Block Style */
/* ──────────────────────── */
.smartiq-block {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 8vw;
  text-align: left;
}

.smartiq-block .project-summary-label {
  text-align: left;
  margin-bottom: 1.5rem;
}

.smartiq-block .smartiq-text {
  font-size: 1.5rem;
  line-height: 1.7;
  opacity: 0.8;
  color: var(--text-dark);
  font-weight: 400;
  margin: 0 0 2rem;
  text-align: left;
}

.smartiq-block .confidentiality-note {
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  text-align: center;
  margin-top: 32px;
  display: block;
}

/* Light page support */
body.light-page .smartiq-block .smartiq-text {
  color: var(--text-light);
}

/* Mobile */
@media (max-width: 768px) {
  .smartiq-block .smartiq-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* ──────────────────────── */
/* SJP PROJECT - TEAL ACCENT */
/* ──────────────────────── */
.sjp-page .project-summary-label {
  color: #00c4b4 !important;
  font-weight: 600;
}

.sjp-page .project-summary-text strong {
  color: #00c4b4 !important;
  font-weight: 600;
}

.sjp-page .strategy-heading {
  color: #00c4b4 !important;
}

/* ──────────────────────── */
/* BMW PROJECT - BLUE ACCENT */
/* ──────────────────────── */
.bmw-page .project-summary-label {
  color: #1c69d4 !important;
  font-weight: 600;
}

.bmw-page .project-summary-text strong {
  color: #1c69d4 !important;
  font-weight: 600;
}

.bmw-page .strategy-heading {
  color: #1c69d4 !important;
}

/* ──────────────────────── */
/* ARCHITECTURE STUDIO - YELLOW ACCENT */
/* ──────────────────────── */
.architecture-page .project-summary-label {
  color: #f6f116 !important;
  font-weight: 600;
}

.architecture-page .project-summary-text strong {
  color: #f6f116 !important;
  font-weight: 600;
}

.architecture-page .strategy-heading {
  color: #f6f116 !important;
}

.architecture-page .image-caption span.highlight {
  color: #f6f116 !important;
  font-weight: 500;
}
