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

:root {
  --canvas:     #0F0F11;
  --white:      #1A1A1E;
  --ink:        #F2F2F7;
  --mist:       #98989F;
  --border:     #2C2C2E;
  --sky:        #6B9EF0;
  --sky-light:  #1C2540;
  --font:       'Plus Jakarta Sans', sans-serif;
  --radius:     16px;
  --radius-sm:  8px;
  --max-width:  1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Layout ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 15, 17, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.5px;
}
.nav-logo span { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.8; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-mobile-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-sky { background: var(--sky); color: var(--white); }
.btn-sky:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── Hero Full Bleed ─── */
.hero-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 32px 80px;
}
.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(107,158,240,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(107,158,240,0.06) 0%, transparent 65%), radial-gradient(ellipse at center, transparent 20%, var(--canvas) 85%);
  pointer-events: none;
}
.hero-full > * { position: relative; z-index: 1; }
.hero-full .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mist);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
}
.hero-full h1 {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.03;
  margin-bottom: 28px;
  max-width: 860px;
}
.hero-full h1 em { font-style: normal; color: var(--sky); }
.hero-full > p {
  font-size: 18px;
  color: var(--mist);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-full .btn { font-size: 16px; padding: 16px 36px; }

/* ─── Logo Strip ─── */
.logo-strip {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.logo-strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 28px;
}
.logo-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.logo-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.logo-chip:hover { background: rgba(255,255,255,0.1); }
.logo-chip img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* ─── Hero ─── */
.hero {
  padding: 160px 0 96px;
  text-align: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--sky); }
.hero p {
  font-size: 18px;
  color: var(--mist);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-proof {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number { font-size: 32px; font-weight: 700; letter-spacing: -1px; }
.proof-label { font-size: 13px; color: var(--mist); margin-top: 4px; }

/* ─── Section Headers ─── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--mist);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── Services Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--sky-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.3px; }
.service-card p { font-size: 15px; color: var(--mist); line-height: 1.7; margin-bottom: 24px; }
.service-features { list-style: none; }
.service-features li {
  font-size: 14px;
  color: var(--mist);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before { content: "✓"; color: var(--sky); font-weight: 700; font-size: 13px; }

/* ─── Why Us ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-number {
  width: 32px; height: 32px;
  background: var(--sky-light);
  color: var(--sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.why-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--mist); line-height: 1.6; }
.why-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-stat { padding: 20px 24px; background: var(--canvas); border-radius: var(--radius-sm); }
.why-stat-number { font-size: 36px; font-weight: 700; letter-spacing: -1px; color: var(--ink); }
.why-stat-label { font-size: 13px; color: var(--mist); margin-top: 4px; }
.why-stat-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 12px; }
.why-stat-fill { height: 100%; background: var(--sky); border-radius: 2px; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 72px 64px;
  text-align: center;
  margin: 0 32px;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: var(--mist); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--ink); color: var(--canvas); }
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-size: 20px; font-weight: 300; letter-spacing: -0.5px; }
.footer-logo span { font-weight: 700; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--mist); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 13px; color: var(--mist); }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 140px 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--mist); max-width: 520px; line-height: 1.7; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.card-body { padding: 28px; }
.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.3px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--mist); line-height: 1.6; }

/* ─── Contact Form ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sky); }
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--sky-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--mist); }
.meet-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
  text-align: center;
}
.meet-embed h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.meet-embed p { font-size: 14px; color: var(--mist); margin-bottom: 20px; }

/* ─── About ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  background: var(--sky-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.team-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--mist); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--mist); line-height: 1.6; }

/* ─── Work / Portfolio ─── */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.work-thumb {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.work-body { padding: 28px; }
.work-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.work-body p { font-size: 14px; color: var(--mist); margin-bottom: 16px; line-height: 1.6; }
.work-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.work-tag {
  font-size: 12px;
  font-weight: 600;
  background: var(--sky-light);
  color: var(--sky);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ─── Split Hero ─── */
.hero-split {
  padding: 100px 0 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.hero-split-text {
  padding: 80px 64px 80px 32px;
  max-width: 600px;
  margin-left: auto;
}
.hero-split-text .hero-label { display: inline-flex; margin-bottom: 28px; }
.hero-split-text h1 {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.hero-split-text h1 em { font-style: normal; color: var(--sky); }
.hero-split-text p {
  font-size: 17px;
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.hero-split-text .hero-actions { justify-content: flex-start; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mist);
}
.trust-badge span { color: var(--sky); font-size: 16px; }
.hero-split-photo {
  height: 100vh;
  position: sticky;
  top: 0;
}
.hero-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-quote {
  font-size: 32px;
  color: var(--sky-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--mist); }
.stars { color: #F59E0B; font-size: 13px; margin-bottom: 2px; }

/* ─── Photo Feature ─── */
.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.photo-feature.reverse { direction: rtl; }
.photo-feature.reverse > * { direction: ltr; }
.photo-feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}
.photo-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-feature-text h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.15; }
.photo-feature-text p { font-size: 16px; color: var(--mist); line-height: 1.75; margin-bottom: 24px; }

/* ─── Inline CTA Strip ─── */
.cta-strip {
  background: var(--sky-light);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 0 0;
}
.cta-strip p { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0; }
.cta-strip span { font-size: 14px; color: var(--mist); font-weight: 400; display: block; }

/* ─── Floating CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  background: var(--sky);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(91, 141, 239, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 141, 239, 0.5);
}

/* ─── Work Featured Cards ─── */
.work-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-featured:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.work-featured-img { overflow: hidden; border-bottom: 1px solid var(--border); }
.work-featured-img img { width: 100%; height: auto; display: block; }
.work-featured-body {
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.work-featured-body h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; letter-spacing: -1px; margin: 8px 0 16px; line-height: 1.15; }
.work-featured-body .work-desc { font-size: 15px; color: var(--mist); line-height: 1.75; }
.work-results {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: var(--canvas);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.work-result {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.work-result:last-child { border-right: none; }
.work-result-num { font-size: 24px; font-weight: 700; letter-spacing: -1px; color: var(--ink); }
.work-result-label { font-size: 11px; color: var(--mist); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* SVG icon coloring in service/value cards */
.service-icon svg { stroke: var(--sky); display: block; }
.value-icon svg { stroke: var(--sky); display: block; }

/* Work thumb screenshot variant */
.work-thumb.screenshot {
  height: 220px;
  padding: 0;
  background: var(--canvas);
}
.work-thumb.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 24px; margin: 0 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero { padding: 120px 0 64px; }
  .hero-proof { gap: 32px; }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-text { padding: 100px 20px 48px; margin-left: 0; max-width: 100%; }
  .hero-split-photo { height: 320px; position: relative; }
  .photo-feature { grid-template-columns: 1fr; }
  .photo-feature.reverse { direction: ltr; }
  .cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .floating-cta { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 13px; }
  .work-featured-body { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}