/* ============================================
   LAYR CREATIVE — Design Tokens & Global Styles
   ============================================ */

:root {
  /* Colors */
  --bg: #000000;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-tertiary: rgba(255, 255, 255, 0.7);
  --text-muted: #dbdbdb;
  --border: rgba(255, 255, 255, 0.2);
  --border-strong: rgba(255, 255, 255, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-light: rgba(255, 255, 255, 0.03);
  --icon-bg: rgba(255, 255, 255, 0.1);
  --tag-bg: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Font sizes (clamp for fluid) */
  --fs-hero: clamp(40px, 4.2vw, 80px);
  --fs-h2: clamp(28px, 2.6vw, 50px);
  --fs-number: clamp(24px, 2.1vw, 40px);
  --fs-body: clamp(16px, 1.04vw, 20px);
  --fs-small: clamp(15px, 0.94vw, 18px);
  --fs-nav: clamp(13px, 0.78vw, 15px);

  /* Line heights */
  --lh-hero: 1;
  --lh-h2: 1;
  --lh-body: 1.5;
  --lh-small: 1.11;

  /* Spacing */
  --space-section: clamp(80px, 7vw, 140px);
  --space-lg: clamp(40px, 3vw, 60px);
  --space-md: clamp(20px, 1.5vw, 30px);
  --space-sm: clamp(12px, 1vw, 20px);
  --space-xs: clamp(8px, 0.7vw, 13px);

  /* Layout */
  --max-narrow: 950px;
  --max-wide: 1280px;
  --side-padding: clamp(20px, 4vw, 80px);

  /* Border radius */
  --radius: 5px;
  --radius-pill: 49px;
  --radius-badge: 31px;
  --radius-team: 4px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================
   Layout Utilities
   ============================================ */

.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.container-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-h2);
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.5;
}

section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   Components: Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 10px 30px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: var(--fs-small);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background: var(--white);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--text-tertiary);
  border: 1px solid var(--border);
  backdrop-filter: blur(3.5px);
}

/* ============================================
   Components: Tags / Pills
   ============================================ */

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  border: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ============================================
   Components: Glass Card
   ============================================ */

.glass-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: -5px -64px;
  background: var(--glass-bg);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

/* ============================================
   NAV BAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--side-padding);
  border-bottom: 1px solid var(--border);
  background: #000000;
}

.navbar-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  gap: clamp(30px, 4.5vw, 86px);
  list-style: none;
}

.navbar-links a {
  font-size: var(--fs-nav);
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.navbar-social {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-social img {
  height: 14px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.navbar-social img:hover {
  opacity: 0.8;
}

.navbar-cta .btn {
  height: 39px;
  padding: 8px 20px;
  font-size: var(--fs-nav);
  background: var(--white);
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 87px;
}

.hero-geometric {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -55%);
  width: clamp(400px, 45vw, 875px);
  height: auto;
  aspect-ratio: 874.58 / 794;
  opacity: 1;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-badge);
  background: var(--glass-bg);
  backdrop-filter: blur(3.5px);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.hero-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero-badge span {
  font-size: var(--fs-small);
  color: var(--text-tertiary);
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: var(--lh-hero);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.hero-buttons .btn {
  width: 193px;
}

/* ============================================
   FEATURE CARDS (When product outgrows)
   ============================================ */

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: clamp(170px, 10.5vw, 201px);
  display: flex;
  align-items: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -5px -64px;
  width: calc(100% + 128px);
  height: calc(100% + 10px);
  background: var(--glass-bg);
  backdrop-filter: blur(1.45px);
  pointer-events: none;
}

.feature-card-content {
  position: relative;
  z-index: 1;
  padding: 0 29px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.feature-card-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
}

.feature-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.5;
}

.feature-card p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.11;
}

/* ============================================
   BRAND STEPS (Brand. Digital. Product.)
   ============================================ */

.brand-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: clamp(170px, 10.5vw, 201px);
  display: flex;
  align-items: center;
}

.brand-step::before {
  content: '';
  position: absolute;
  inset: -5px -64px;
  width: 1071px;
  height: calc(100% + 10px);
  background: var(--glass-bg);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.brand-step-content {
  position: relative;
  z-index: 1;
  padding: 0 29px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.brand-step-number {
  font-size: var(--fs-number);
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1;
}

.brand-step h3 {
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.5;
}

.brand-step p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.11;
}

/* ============================================
   WORK GRID (Selected Work)
   ============================================ */

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

.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.work-card-image {
  height: clamp(200px, 15.6vw, 290px);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-info {
  position: relative;
  padding: clamp(15px, 1.5vw, 33px) clamp(20px, 1.7vw, 33px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.work-card-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.work-card-info::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.work-card-name {
  font-size: var(--fs-small);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.work-card-tags {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

/* ============================================
   ENGAGE CARDS (Three ways to engage)
   ============================================ */

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

.engage-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(340px, 20.8vw, 399px);
}

.engage-card-top {
  position: relative;
  padding: clamp(25px, 2vw, 37px) 29px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.engage-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
  z-index: 0;
}

.engage-card-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--icon-bg);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.engage-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.engage-card h3 {
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.engage-card-desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.11;
  position: relative;
  z-index: 1;
}

.engage-card-divider {
  margin: 0;
  border: none;
  height: 1px;
  background: var(--border);
  position: relative;
  z-index: 1;
}

.engage-card-bottom {
  position: relative;
  padding: clamp(20px, 1.8vw, 34px) 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  align-content: flex-start;
  flex: 1;
}

.engage-card-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}

.engage-card-bottom .tag {
  position: relative;
  z-index: 1;
}

/* ============================================
   TEAM SECTION (One team. No fragmentation.)
   ============================================ */

.team-section .section-header h2 {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.46);
}

.team-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.trust-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: clamp(25px, 2.5vw, 40px) 29px;
  display: flex;
  align-items: center;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: -5px -64px;
  width: 720px;
  height: calc(100% + 10px);
  background: var(--glass-bg);
  backdrop-filter: blur(1.45px);
  pointer-events: none;
}

.trust-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.trust-card-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--icon-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-card h3 {
  font-size: var(--fs-body);
  font-weight: 700;
}

.trust-card-text {
  font-size: var(--fs-body);
  line-height: 1.25;
  max-width: 507px;
}

.trust-card-text p {
  margin-bottom: 1em;
}

.trust-card-text p:last-child {
  margin-bottom: 0;
}

/* Layr Values Card */
.values-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-card-bg-top {
  position: absolute;
  inset: -7px -1px auto -1px;
  height: 580px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
  z-index: 0;
}

.values-card-bg-bottom {
  display: none; /* In Figma, this panel is positioned at top:573px in a 291px card — entirely outside visible area */
}

.values-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 14px;
  padding: 40px;
  max-width: 529px;
}

.values-card-text {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.25;
  width: 100%;
}

.values-card-diamonds {
  display: none;
}

.values-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.values-card-list p {
  font-size: var(--fs-body);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.values-card-list p::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-image: url('assets/icon-diamond.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.values-card-watermark {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: clamp(200px, 20vw, 320px);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* Team Member Cards */
.team-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-team);
  overflow: hidden;
  position: relative;
}

.team-card-photo {
  height: clamp(170px, 12vw, 228px);
  background: var(--icon-bg);
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-info {
  position: relative;
  padding: clamp(12px, 1vw, 17px) 29px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.team-card-name {
  font-size: var(--fs-small);
  position: relative;
  z-index: 1;
}

.team-card-name strong {
  font-weight: 700;
}

.team-card-name span {
  font-weight: 400;
  color: var(--text-secondary);
}

.team-card-role {
  position: relative;
  z-index: 1;
}

.team-card-linkedin {
  position: absolute;
  width: 14px;
  height: 14px;
  object-fit: contain;
  z-index: 1;
  right: 29px;
  bottom: 17px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--space-section) 0;
}

.cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: clamp(60px, 6vw, 120px) 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -31px -1px;
  background: var(--glass-bg);
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.cta-card h2 {
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: var(--lh-hero);
  position: relative;
  z-index: 1;
  max-width: 950px;
}

.cta-card p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  max-width: 685px;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
  width: 193px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  z-index: 1;
  background: #000000;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: clamp(60px, 6.2vw, 119px);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 3.8vw, 74px);
}

.footer-logo img {
  height: clamp(30px, 2.4vw, 46px);
  width: auto;
  object-fit: contain;
}

.footer-social img {
  height: 14px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
}

.footer-right {
  display: flex;
  gap: clamp(40px, 4.2vw, 80px);
}

.footer-col h4 {
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: clamp(20px, 2vw, 40px);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col a {
  font-size: clamp(15px, 0.94vw, 18px);
  color: var(--text-secondary);
  line-height: clamp(28px, 1.8vw, 34px);
  transition: color 0.2s;
}

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

.footer-copyright {
  font-size: clamp(16px, 1.04vw, 20px);
  color: rgba(255, 255, 255, 0.3);
  padding-top: clamp(30px, 2.4vw, 46px);
  padding-bottom: clamp(60px, 7vw, 134px);
}

/* ============================================
   DOT PATTERN (decorative background)
   ============================================ */

.dot-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1.22px, transparent 1.22px);
  background-size: 39px 39px;
  background-position: 0 0;
}

/* ============================================
   MOBILE NAV TOGGLE (hidden on desktop)
   ============================================ */

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-open .navbar-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .navbar-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .navbar-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */

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

  .work-grid {
    grid-template-columns: 1fr;
  }

  .engage-grid {
    grid-template-columns: 1fr;
  }

  .team-top-grid {
    grid-template-columns: 1fr;
  }

  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-card-content {
    max-width: 100%;
  }
}

/* ============================================
   RESPONSIVE — Mobile (≤768px)
   Pixel-perfect from Figma @ 375px
   ============================================ */

@media (max-width: 768px) {

  /* --- Mobile Design Tokens Override --- */
  :root {
    --side-padding: 16px;
    --space-section: clamp(40px, 10vw, 80px);
    --space-lg: clamp(14px, 4vw, 30px);
    --space-md: clamp(7px, 2vw, 15px);
  }

  /* --- Nav --- */
  .navbar {
    padding: 12px 16px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-logo img {
    height: 24px;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 100;
  }

  .nav-open .navbar-links {
    display: flex;
  }

  .navbar-links a {
    font-size: 20px;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-social {
    display: none;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding: 170px 0 210px 0;
    gap: 0;
  }

  .hero-geometric {
    width: clamp(300px, 100vw, 440px);
    left: 46%;
    top: 120px;
    transform: translate(-50%, 0);
    position: absolute;
  }

  .hero-badge {
    gap: 4px;
    padding: 0 10px;
    height: 16px;
    border-radius: 12px;
    margin-bottom: 6px;
    border-width: 0.5px;
  }

  .hero-badge img {
    width: 9px;
    height: 9px;
  }

  .hero-badge span {
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(26px, 8vw, 30px);
    line-height: 1;
    margin-bottom: 3px;
    padding: 0 16px;
  }

  .hero-subtitle {
    font-size: clamp(9px, 2.67vw, 10px);
    line-height: 1.3;
    margin-bottom: 18px;
    color: var(--text-tertiary);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 250px;
  }

  .hero-buttons .btn {
    width: 250px;
    height: 32px;
    padding: 6px 20px;
    border-radius: 3.4px;
    font-size: 12px;
  }

  /* --- Section Headers (mobile) --- */
  .section-header {
    margin-bottom: 27px;
  }

  .section-header h2 {
    font-size: clamp(22px, 6.67vw, 25px);
    line-height: 0.82;
    margin-bottom: 20px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.46);
  }

  .section-header p {
    font-size: clamp(10px, 2.93vw, 12px);
    line-height: 1.8;
    color: var(--text-secondary);
  }

  /* Solutions section subtitle is slightly larger (12px) */
  #solutions .section-header p {
    font-size: 12px;
    color: var(--text-tertiary);
  }

  section {
    padding: clamp(35px, 9.3vw, 70px) 0;
  }

  .container-narrow,
  .container-wide {
    padding: 0 16px;
  }

  /* --- Feature Cards (mobile) --- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-card {
    height: 148px;
    border-radius: 0.5px;
  }

  .feature-card::before {
    inset: -4px -48px;
    width: calc(100% + 96px);
  }

  .feature-card-content {
    padding: 0 21px;
    gap: 10px;
  }

  .feature-card-icon {
    width: 22px;
    height: 22px;
    border-radius: 3.7px;
  }

  .feature-card h3 {
    font-size: 14px;
    line-height: 1.58;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.135;
    color: var(--text-secondary);
  }

  /* --- Brand Steps (mobile) --- */
  .brand-steps {
    gap: 8px;
  }

  .brand-step {
    height: 139px;
    border-radius: 1.8px;
  }

  .brand-step::before {
    width: calc(100% + 48px);
    inset: -2px -24px;
  }

  .brand-step-content {
    padding: 0 21px;
    gap: 12px;
  }

  .brand-step-number {
    font-size: 18px;
    line-height: 0.6;
  }

  .brand-step h3 {
    font-size: 14px;
    line-height: 0.77;
  }

  .brand-step p {
    font-size: 13px;
    line-height: 1.138;
    max-width: 300px;
  }

  /* --- Work Grid (mobile) --- */
  .work-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-card {
    border-radius: 2.7px;
  }

  .work-card-image {
    height: 160px;
  }

  .work-card-info {
    padding: 15px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .work-card-info::before {
    backdrop-filter: blur(0.82px);
  }

  .work-card-name {
    font-size: 13px;
  }

  .work-card-tags {
    gap: 8px;
  }

  .work-card-tags .tag {
    height: 25px;
    font-size: 14px;
    padding: 0 8px;
    border-radius: 41px;
  }

  /* --- Engage Cards (mobile) --- */
  .engage-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .engage-card {
    min-height: 283px;
    border-radius: 4.2px;
  }

  .engage-card:nth-child(2) {
    min-height: 321px;
  }

  .engage-card:nth-child(3) {
    min-height: 322px;
  }

  .engage-card-top {
    padding: 31px 24px 20px;
    gap: 11px;
  }

  .engage-card-top::before {
    backdrop-filter: blur(1.25px);
  }

  .engage-card-icon {
    width: 25px;
    height: 25px;
    border-radius: 4.2px;
  }

  .engage-card h3 {
    font-size: 14px;
    line-height: 1.79;
  }

  .engage-card-desc {
    font-size: 13px;
    line-height: 1.28;
  }

  .engage-card-bottom {
    padding: 20px 24px;
    gap: 14px 8px;
  }

  .engage-card-bottom::before {
    backdrop-filter: blur(1.25px);
  }

  .engage-card-bottom .tag {
    height: 25px;
    font-size: 14px;
    padding: 0 8px;
    border-radius: 41px;
  }

  /* --- Team Section (mobile) --- */
  .team-top-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .trust-card {
    padding: 24px;
    border-color: var(--border-strong);
    border-radius: 2.7px;
  }

  .trust-card::before {
    inset: -3px -35px;
    width: calc(100% + 70px);
  }

  .trust-card-content {
    gap: 11px;
  }

  .trust-card-icon {
    width: 25px;
    height: 25px;
    border-radius: 2.7px;
  }

  .trust-card h3 {
    font-size: 14px;
  }

  .trust-card-text {
    font-size: 13px;
    line-height: 1.052;
    max-width: 288px;
    opacity: 0.7;
  }

  .trust-card-text p {
    margin-bottom: 0.8em;
  }

  /* --- Values Card (mobile) --- */
  .values-card {
    border-color: var(--border-strong);
    border-radius: 2.7px;
    min-height: 208px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .values-card-bg-top {
    height: 580px;
    inset: -6px -1px auto -1px;
  }

  .values-card-content {
    padding: 34px 25px;
    max-width: 100%;
    gap: 8px 8px;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .values-card-text {
    font-size: 14px;
    line-height: 1.036;
    width: 100%;
    margin-bottom: 0;
    color: var(--white);
  }

  .values-card-diamonds {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .values-card-diamonds img {
    width: 11px;
    height: 11px;
    object-fit: contain;
  }

  .values-card-list {
    gap: 6px;
    width: auto;
    flex: 1;
  }

  .values-card-list p {
    font-size: 13px;
    line-height: 1.35;
    height: 17.5px;
    color: var(--text-tertiary);
    gap: 0;
  }

  .values-card-list p::before {
    display: none;
  }

  .values-card-watermark {
    width: clamp(130px, 45vw, 170px);
    bottom: -51px;
    right: -4%;
  }

  /* --- Team Members (mobile) --- */
  .team-members {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 9px;
  }

  .team-card {
    border-radius: 2.15px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
  }

  .team-card-photo {
    flex: 1;
    height: auto;
  }

  .team-card-info {
    padding: 10px 24px;
    gap: 2px;
  }

  .team-card-info::before {
    backdrop-filter: blur(0.82px);
  }

  .team-card-name {
    font-size: 14px;
    line-height: 1.14;
  }

  .team-card-name strong {
    display: block;
  }

  .team-card-name span {
    font-size: 13px;
    line-height: 1.23;
  }

  .team-card-linkedin {
    right: 22px;
    bottom: 14px;
  }

  .team-card-role {
    display: none;
  }

  /* --- CTA Section (mobile) --- */
  .cta-card {
    padding: 22px 20px;
    border-radius: 1.3px;
    gap: 6px;
    min-height: 199px;
    justify-content: center;
  }

  .cta-card::before {
    inset: -4px -1px;
    backdrop-filter: blur(0.4px);
  }

  .cta-card h2 {
    font-size: clamp(26px, 8vw, 30px);
    line-height: 1;
  }

  .cta-card p {
    font-size: 13px;
    line-height: 1.038;
    max-width: 282px;
  }

  .cta-card .btn {
    width: 250px;
    height: 32px;
    padding: 6px 20px;
    border-radius: 3.4px;
    font-size: 12px;
    margin-top: 4px;
  }

  /* --- Footer (mobile) --- */
  .footer-content {
    flex-direction: column;
    gap: 0;
    padding-top: 44px;
  }

  .footer-logo img {
    height: 26px;
  }

  .footer-left {
    gap: 10px;
    margin-bottom: 0;
  }

  .footer-social img {
    height: 12px;
  }

  .footer-right {
    flex-direction: column;
    gap: 7px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 0;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 50px;
  }

  .footer-col ul {
    gap: 0;
  }

  .footer-col a {
    font-size: 13px;
    line-height: 1.46;
    color: var(--white);
  }

  .footer-copyright {
    font-size: 13px;
    padding-top: 7px;
    padding-bottom: 50px;
    text-align: center;
    line-height: 50px;
  }
}
