/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0f1a;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLORS ===== */
:root {
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #b8860b;
  --dark: #0a0f1a;
  --dark-2: #0f1629;
  --dark-3: #151d33;
  --card: #121a2e;
  --border: rgba(212, 160, 23, 0.15);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0f1a;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: transparent;
  color: #25d366;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  margin-top: 12px;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
}
.btn-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.btn-icon:hover { background: rgba(37, 211, 102, 0.25); }

/* ===== TOP BAR ===== */
.top-bar {
  background: #060a12;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25d366;
  font-weight: 500;
}
.top-whatsapp:hover { color: #4ade80; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #0a0f1a;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0f1a;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 0 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 60, 120, 0.15) 0%, transparent 50%),
    var(--dark);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 50px;
}
.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-content h1 .gold { color: var(--gold); }
.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

/* Laptop + Phone mockups */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 340px;
}
.laptop-mockup {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.laptop-screen {
  background: linear-gradient(160deg, #0d1525 0%, #1a2744 100%);
  border: 3px solid #2a3548;
  border-radius: 10px 10px 0 0;
  padding: 12px 16px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/10;
  overflow: hidden;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 10px;
  color: #64748b;
}
.mock-logo { font-weight: 600; color: #94a3b8; }
.mock-nav { display: flex; gap: 10px; }
.mock-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.mock-body p {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 12px;
  max-width: 200px;
}
.mock-btn {
  background: var(--gold);
  color: #0a0f1a;
  border: none;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}
.mock-btn.small { padding: 5px 10px; font-size: 9px; }
.laptop-base {
  height: 12px;
  background: #1e293b;
  border-radius: 0 0 8px 8px;
  margin: 0 20px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 6px;
  background: #0f172a;
  border-radius: 0 0 4px 4px;
}
.phone-mockup {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 130px;
  z-index: 2;
  border-radius: 16px;
  border: 3px solid #334155;
  background: #0f172a;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  overflow: hidden;
}
.phone-screen { padding: 10px 8px 14px; }
.phone-header {
  font-size: 8px;
  color: #64748b;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}
.phone-body h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.phone-services {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.phone-services span {
  font-size: 8px;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
}
.phone-icons {
  display: flex;
  gap: 6px;
}
.phone-icons i {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(212, 160, 23, 0.2);
  display: block;
}

/* Feature strip */
.feature-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.section-header p {
  font-size: 15px;
  color: var(--text-muted);
}
.section-header.light {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}
.section-header.light .view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.section-header.light .view-all:hover { color: var(--gold-light); }

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: #f8fafc;
  color: #1e293b;
}
.services .section-header h2 { color: #0f172a; }
.services .section-header p { color: #64748b; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(212, 160, 23, 0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}
.learn-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
}
.learn-more:hover { color: var(--gold); }

/* ===== WORK ===== */
.work {
  padding: 80px 0;
  background: var(--dark);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.work-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
  gap: 28px;
}
.work-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease;
}
.work-card:hover { transform: translateY(-4px); }
.work-image {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-grid-2 .work-image { height: 200px; }
.work-image.spice { background: linear-gradient(135deg, #7c2d12, #c2410c); }
.work-image.mega { background: linear-gradient(135deg, #1e3a5f, #3b82f6); }
.work-image.bright { background: linear-gradient(135deg, #14532d, #22c55e); }
.work-image.health { background: linear-gradient(135deg, #1e3a5f, #06b6d4); }
.work-image.urban { background: linear-gradient(135deg, #1e1b4b, #8b5cf6); }
.work-image.healing { background: linear-gradient(135deg, #14532d 0%, #166534 40%, #4ade80 100%); }
.work-image.protein { background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #f97316 100%); }
.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.work-info {
  padding: 16px;
}
.work-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.work-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.work-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.work-actions a {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}
.work-actions a:hover { color: var(--gold-light); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 0;
  background: #f8fafc;
  color: #1e293b;
}
.how-it-works .section-header h2 { color: #0f172a; }
.how-it-works .section-header p { color: #64748b; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e2e8f0 10%, #e2e8f0 90%, transparent);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0f1a;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold-dark);
}
.step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.step p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  padding: 80px 0;
  background: var(--dark-2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 0;
  background: #f8fafc;
  color: #1e293b;
}
.pricing .section-header h2 { color: #0f172a; }
.pricing .section-header p { color: #64748b; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0f1a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 12px 0 4px;
  line-height: 1;
}
.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}
.pricing-desc {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 13px;
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
}

/* ===== CTA ===== */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f1629 0%, #1a2744 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 15px;
  color: var(--text-muted);
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #060a12;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 16px 0 20px;
  line-height: 1.6;
  max-width: 260px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-links a:hover {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-col ul a:hover { color: var(--gold); }
.contact-list li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-list strong {
  color: #cbd5e1;
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #64748b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid-2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .header {
    position: sticky; /* keep sticky on mobile */
  }
  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
  .nav {
    display: none;
    width: 100%;
    order: 10;
    flex-direction: column;
    padding: 12px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 12px;
    gap: 2px;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 12px 8px;
    border-radius: 6px;
  }
  .nav a:hover {
    background: rgba(255,255,255,0.05);
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-toggle span {
    transition: all 0.25s;
  }
  .header-actions .btn-primary {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-content .btn-whatsapp {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    min-height: 280px;
  }
  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header.light {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .feature-strip-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .phone-mockup { width: 100px; right: 10px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .top-bar-inner { justify-content: center; text-align: center; }
}
@media (max-width: 640px) {
  .work-grid-2 { grid-template-columns: 1fr; max-width: 100%; }
}
@media (max-width: 400px) {
  .work-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .work-grid-2 { grid-template-columns: 1fr; max-width: 100%; }
}
