:root {
  /* Colors - Light Mode Corporate SG Agency */
  --color-primary: #2a2b2e; /* Soft Premium Dark Slate */
  --color-primary-hover: #3b3d42; /* Slightly lighter on hover */
  --color-primary-light: #f3f4f6; /* Very light gray */
  
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-light: #f8fafc; /* Very light gray */
  --color-border: #e2e8f0;
  
  --color-text: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  --color-success: #10b981;
  --color-purple: #8b5cf6;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-sans);
  
  /* Layout */
  --container-width: 1240px;
  --container-padding: 24px;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.06), 0 4px 6px -4px rgb(0 0 0 / 0.03);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.01);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* English Language Sizing Adjustments */
html[lang="en"] .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}
html[lang="en"] .hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}
html[lang="en"] .card h3, html[lang="en"] .work-item h3 {
  font-size: 1.15rem;
}
html[lang="en"] .hero-text, html[lang="en"] .section-desc {
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }
.text-dark { color: var(--color-text) !important; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 32px; }
.bg-light { background-color: var(--color-light); }
.bg-primary { background-color: var(--color-primary); }

.eyebrow-text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.button-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
}

.button-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.button-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.button-white {
  background-color: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.button-white:hover {
  background-color: var(--color-light);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-shell,
.footer-logo-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brand-logo-shell {
  min-width: 148px;
  height: 48px;
  padding: 8px 16px;
}

.brand-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-logo-shell {
  min-width: 116px;
  height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
}

.footer-logo {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

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

.language-switcher {
  display: flex;
  background: var(--color-light);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.lang-button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border-radius: 6px;
  transition: var(--transition);
}

.lang-button:hover {
  color: var(--color-text);
}

.lang-button.is-active {
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.header-cta {
  padding: 10px 20px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.bg-grid {
  background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, var(--color-background) 80%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 2px solid var(--color-primary-light);
  box-sizing: content-box;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 11ch;
}

html[lang="en"] .hero-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.06;
  max-width: 14ch;
}

html[lang="en"] .hero-text {
  font-size: 1rem;
  max-width: 500px;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
}

.image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid #fff;
  background: var(--color-light);
  aspect-ratio: 1 / 1;
}

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

.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-md { box-shadow: var(--shadow-md); }
.rounded-2xl { border-radius: var(--radius-xl); }

.floating-card {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--color-border);
  max-width: 320px;
}

.stat-icon {
  font-size: 2rem;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

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

/* Sections */
.section { padding: 96px 0; }

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 56px;
}

.section-header.text-center {
  justify-items: center;
}

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

.about-content {
  display: grid;
  align-content: start;
}

.brand-panel {
  background: var(--color-primary);
  color: #fff;
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.brand-panel .panel-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.brand-panel .panel-title {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #fff;
}

.brand-panel .panel-body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
}

.text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.stat-row {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.stat-item .stat-value {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* Services */
.services-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: 40px;
  margin-top: 64px;
  align-items: start;
}

.services-visual {
  position: sticky;
  top: 120px;
}

.services-visual img {
  width: 100%;
}

.grid {
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.cards-grid > .card,
.work-list > .card,
.feature-grid > * {
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

html[lang="en"] .service-card h3 {
  font-size: 1.12rem;
  line-height: 1.3;
  max-width: 11ch;
  min-height: 2.6em;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

.service-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

/* Work */
.work-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}

.work-showcase {
  align-self: start;
}

.work-showcase img {
  width: 100%;
  min-height: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

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

.badge-blue { background: var(--color-primary-light); color: var(--color-primary); }
.badge-purple { background: #f3e8ff; color: var(--color-purple); }
.badge-green { background: #d1fae5; color: var(--color-success); }

.work-item.card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 180px;
}

.work-item h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.work-item p {
  color: var(--color-text-secondary);
}

/* Features */
.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}

.feature-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

/* Process Timeline */
.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(30, 64, 175, 0.06), rgba(255, 255, 255, 1) 45%),
    #fff;
}

.process-intro .section-title {
  margin-bottom: 0;
}

.process-desc {
  max-width: 48ch;
}

.process-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
}

.process-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.process-mini-number {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
}

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

.process-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.process-card-top {
  display: flex;
  align-items: center;
}

.timeline-marker {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--color-text-secondary);
  font-size: 0.96rem;
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
}

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

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-info .section-title {
  margin-bottom: 8px;
}

.contact-info .section-desc {
  color: rgba(255, 255, 255, 0.82);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.meta-item {
  display: flex;
  gap: 16px;
}

.meta-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-link strong {
  transition: var(--transition);
}

.contact-link:hover strong {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--color-light);
  padding: 80px 0 32px;
  border-top: 1px solid var(--color-border);
}

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

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

.footer-brief {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--color-text);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-nav a, .footer-nav span {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #000000;
}

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

.footer-copy {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-icons {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 100;
}

.footer-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: var(--color-text);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.footer-icon-btn svg {
  width: 22px;
  height: 22px;
}

.footer-icon-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(42, 43, 46, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout, .about-layout, .services-layout, .work-layout, .process-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .work-layout {
    grid-template-columns: 1fr;
  }

  .work-showcase {
    order: -1;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin: -32px auto 0;
    width: calc(100% - 48px);
    max-width: 360px;
  }
  
  .services-visual, .process-intro {
    position: relative;
    top: 0;
  }

  .hero-visual,
  .hero-content {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .hero-title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  
  .section-title { font-size: 1.5rem; }
  html[lang="en"] .section-title { font-size: 1.35rem; }
  .section-header { margin-bottom: 24px; }
  
  .hero { padding: 40px 0 40px; min-height: auto; display: block; }
  .hero-title { font-size: 1.8rem; margin-bottom: 16px; }
  .hero-text { font-size: 0.92rem; }
  
  .panel-title { font-size: 1.4rem; margin-bottom: 16px; }
  .text-group p { font-size: 1rem; }
  
  .card h3, .feature-card h3, .process-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .card p, .feature-card p, .process-card p, .process-desc, .timeline-content p { font-size: 0.85rem; }
  
  .service-card, .feature-card, .work-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
  }
  
  .service-card .card-icon, .feature-card .feature-icon, .work-item .badge {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 0;
  }
  
  .service-card h3, .feature-card h3, .work-item h3 {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
  }
  
  .service-card p, .feature-card p, .work-item p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 12px;
  }
  
  .process-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
  }
  
  .process-card-top, .timeline-content {
    display: contents;
  }
  
  .process-card .timeline-marker {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  
  .process-card h3 {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
  }
  
  .process-card p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 12px;
  }
  
  .hero-visual,
  .about-visual,
  .services-visual,
  .work-showcase {
    display: none;
  }

  .nav-actions {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid var(--color-border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
    display: flex;
    pointer-events: none;
    opacity: 0;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-actions.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: auto;
    opacity: 1;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .brand-logo-shell {
    min-width: 126px;
    height: 42px;
    padding: 7px 12px;
  }

  .brand-logo {
    height: 28px;
  }
  
  .mobile-menu-toggle { display: block; }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
  }
  
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
  }
  
  .hero-actions {
    flex-direction: column;
  }

  .process-mini-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .header-cta {
    width: 100%;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .lang-button {
    flex: 1;
  }

  .hero-tags {
    gap: 12px;
  }

  .tag {
    width: 100%;
    padding: 10px 12px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
  }

  .card,
  .contact-card,
  .timeline-item,
  .brand-panel {
    padding: 24px;
  }

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

  .work-layout,
  .services-layout {
    margin-top: 40px;
  }

  .meta-item {
    align-items: flex-start;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-hide {
    display: none !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-icons {
    bottom: 24px;
    right: 24px;
    gap: 12px;
  }
  
  .footer-icon-btn {
    width: 44px;
    height: 44px;
  }
}
