@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;700;800&display=swap');

:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #f8fafc;
  --panel-strong: #f1f5f9;
  --white: #ffffff;
  --navy: #0b1120;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --cyan-hover: #0891b2;
  --soft-cyan: #ecfeff;
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--panel);
  font-family: 'Inter', "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-mark, .eyebrow {
  font-family: 'Outfit', sans-serif;
}

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

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

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(24px, 6vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.02);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a {
  padding: 8px 16px;
  border-radius: 8px;
}

.site-nav a:hover, .site-nav a.active {
  background: var(--panel-strong);
  color: var(--blue);
}

/* Hero Section */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  min-height: calc(100vh - 80px);
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 80px);
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  overflow: hidden;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.hero-content .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 24px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 30px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, var(--ink), #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  margin: 24px 0 0;
  color: #475569;
  font-size: clamp(16px, 2vw, 18px);
  max-width: 600px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.button.primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  border: none;
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.button.secondary {
  background: var(--white);
  border: 1px solid #cbd5e1;
  color: var(--ink);
  backdrop-filter: none;
}

.button.secondary:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.hero-visual {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition);
}

.hero-visual:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-visual img {
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Shared Sections */
.section {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 80px);
  background: var(--white);
}

.section.alt {
  background: var(--panel);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.section-heading.center {
  text-align: center;
  margin: 0 auto 60px auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin: 0 auto 60px auto;
}

.split-layout h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.split-layout p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.illustration-container img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.illustration-container img:hover {
  transform: translateY(-8px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Metric Strip */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(24px, 6vw, 80px);
  background: var(--line);
  position: relative;
  top: -1px;
}

.metric-card {
  padding: 40px 32px;
  background: var(--white);
  transition: var(--transition);
}

.metric-card:hover {
  background: var(--panel-strong);
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
}

.metric-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  color: var(--blue);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 800;
}

.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-item {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--soft-cyan);
  color: var(--cyan-hover);
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.service-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--ink);
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

/* Solutions Grid */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.solution-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}

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

.solution-card:hover::after {
  opacity: 1;
}

.solution-card.featured {
  background: var(--navy);
  color: var(--white);
  border: none;
}

.solution-card.featured::after {
  opacity: 1;
}

.solution-card span {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--panel-strong);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-card.featured span {
  background: rgba(255,255,255,0.1);
  color: var(--cyan);
}

.solution-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-card.featured p {
  color: #94a3b8;
}

/* Projects Layout - Enhanced */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
}

.project-info {
  display: flex;
  flex-direction: column;
}

.project-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info h3 {
  margin: 0 0 20px;
  font-size: 32px;
}

.project-info p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
}

.project-info ul {
  max-width: 800px;
  line-height: 1.8;
  color: var(--ink);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: auto 0 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--panel-strong);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

/* Desktop Gallery Grid */
.gallery-desktop {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 180px);
  gap: 16px;
}

.gallery-desktop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
}

.gallery-desktop img:first-child {
  grid-row: span 2;
}

.gallery-desktop img:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: var(--shadow-md);
}

/* Mixed Gallery Layout for Weiguang - Horizontal images stacked left, vertical on right */
.gallery-mixed {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  background: var(--panel-strong);
  padding: 24px;
  border-radius: var(--radius-md);
}

.gallery-col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-mixed img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  transition: transform 0.3s ease;
}

.gallery-mixed img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.process-timeline li {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.process-timeline li:last-child {
  border-right: none;
}

.process-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.process-timeline h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Value Section */
.value-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 80px);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--ink);
}

.value-section .eyebrow {
  color: var(--blue);
}

.value-section h2 {
  color: var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-grid p {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

/* Contact CTA */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px);
  padding: clamp(40px, 5vw, 60px);
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: var(--gradient-accent);
  opacity: 0.1;
  transform: skewX(-20deg) translateX(20%);
}

.contact-cta h2 {
  margin: 0 0 16px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.contact-cta p {
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.contact-cta .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* --- Enterprise Footer --- */
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 80px clamp(24px, 6vw, 80px) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 15px;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--cyan);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* --- Trusted By Section --- */
.trusted-by {
  padding: 60px clamp(24px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.trusted-by p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}
.logo-grid span {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #94a3b8;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}
.logo-grid span:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--blue);
}

/* --- Bento Box Layout (Why Choose Us) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-item {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.bento-item.large {
  grid-column: span 2;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}
.bento-item.large h3 {
  color: var(--white);
}
.bento-item.large p {
  color: #cbd5e1;
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--soft-cyan);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-item.large .bento-icon {
  background: rgba(255,255,255,0.1);
  color: var(--cyan);
}

/* --- Tech Stack Grid --- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.tech-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
  color: var(--blue);
}
.tech-item svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  fill: currentColor;
  color: var(--muted);
  transition: var(--transition);
}
.tech-item:hover svg {
  color: var(--blue);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero, .value-section, .project-card {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 100px;
    text-align: center;
  }
  
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-timeline li:nth-child(3) {
    border-right: none;
  }
  
  .gallery-desktop {
    grid-template-rows: repeat(2, 220px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bento-item.large {
    grid-column: span 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    padding: 16px 20px;
    gap: 16px;
  }
  
  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .process-timeline li {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .gallery-desktop {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .split-layout {
    grid-template-columns: 1fr;
  }
  
  .gallery-desktop img:first-child {
    grid-row: auto;
  }
  
  .gallery-desktop img {
    height: 250px;
  }
  
  .gallery-mixed {
    grid-template-columns: 1fr;
  }
  
  .gallery-mixed img {
    width: 100%;
    max-width: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .metric-strip {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 36px;
  }
}
