:root{
  --bg: #0F172A;
  --bg-soft: #111C31;
  --panel: #162238;
  --panel-soft: #1B2A44;
  --panel-lift: #203451;
  --text: #F8FAFC;
  --muted: #A7B3C4;
  --accent: #38BDF8;
  --accent-strong: #2563EB;
  --accent-soft: rgba(56, 189, 248, 0.14);
  --border: rgba(148, 163, 184, 0.24);
  --border-strong: rgba(56, 189, 248, 0.36);
  --success: var(--accent);
  --warning: var(--text-dim);
  --panel-strong: rgba(32, 52, 81, 0.94);
  --ink: var(--text);
  --accent2: var(--accent-strong);
  --text-soft: #CBD5E1;
  --text-dim: #A7B3C4;
  --nav-glow: rgba(56, 189, 248, 0.14);
  --nav-border: var(--border-strong);
  --nav-fill: rgba(37, 99, 235, 0.16);
  --pill-border: rgba(148, 163, 184, 0.28);
  --pill-highlight: rgba(248, 250, 252, 0.08);
  --btn-border: rgba(56, 189, 248, 0.34);
  --btn-primary-start: rgba(56, 189, 248, 0.28);
  --btn-primary-end: rgba(37, 99, 235, 0.46);
  --btn-secondary-start: rgba(32, 52, 81, 0.96);
  --btn-secondary-end: rgba(22, 34, 56, 0.98);
  --field-border: rgba(148, 163, 184, 0.3);
  --field-focus: rgba(37, 99, 235, 0.22);
  --focus-ring: rgba(56, 189, 248, 0.18);
  --social-border: rgba(148, 163, 184, 0.32);
  --placeholder-border: rgba(148, 163, 184, 0.3);
  --placeholder-top: rgba(56, 189, 248, 0.16);
  --placeholder-bottom-a: rgba(27, 42, 68, 0.96);
  --placeholder-bottom-b: rgba(15, 23, 42, 0.98);
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
  --radius: 22px;
  --shell-max: 1200px;
  --section-max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-soft);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

img,
picture,
video {
  max-width: 100%;
}

body{
  margin:0;
  min-height:100vh;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.18), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 34%, var(--panel) 72%, var(--bg-soft) 100%);
  background-color: var(--bg-soft);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.04), rgba(15, 23, 42, 0));
  opacity: 0.5;
}

body::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.22));
  z-index: -1;
}

.background-layer {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  z-index: -3;
  background:
    radial-gradient(circle at 12% 24%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.1), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(32, 52, 81, 0.5), transparent 42%);
  background-color: var(--bg-soft);
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h2 {
  margin: 0;
}

.portfolio-shell {
  width: min(100%, var(--shell-max));
  margin: 0 auto;
  padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4.5rem);
}

.hero,
.section-shell {
  animation: popIn 700ms cubic-bezier(0.2, 6.7, 0.2, 1) both;
  /* ensure anchored sections appear slightly lower than the top of the viewport */
  scroll-margin-top: 1rem;
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-reveal.js-reveal {
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, var(--section-max));
  gap: clamp(3rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 64vh, 680px);
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  margin-bottom: 0;
  text-align: center;
}

.footer-note {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem clamp(1rem, 2vw, 1.6rem);
  width: calc(100% + clamp(2rem, 8vw, 8rem) - 2rem);
  max-width: var(--shell-max);
  padding: 0.9rem 1rem;
  margin: 0 auto 0 calc(1rem - clamp(1rem, 4vw, 4rem));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.site-header::before {
  content: none;
}

.site-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  overflow: visible;
  text-decoration: none;
  transform: translateX(-4rem);
}

.site-brand-logo {
  display: block;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  transform: scale(2.0);
  transform-origin: center;
  filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.16));
}

.site-brand-copy {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.site-brand-name {
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.site-brand-role {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
}

.mobile-nav-toggle:hover {
  border-color: transparent;
  background: transparent;
  color: var(--accent);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(0.35rem, 0.75vw, 0.55rem);
  width: 100%;
  padding-top: 0;
  margin-bottom: 0;
}

.site-nav a {
  position: relative;
  width: fit-content;
  padding: 0.56rem 0.58rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nav-glow), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-nav a:hover::before,
.site-nav a.is-active::before,
.site-nav a[aria-current="page"]::before {
  opacity: 0;
}

.site-nav a:focus-visible,
.site-brand:focus-visible,
.btn:focus-visible,
.project-link:focus-visible,
.project-preview:focus-visible,
.social-link:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.hero-minimal {
  width: min(100%, 1100px);
  margin: 0 auto;
  background: transparent;
  border: 0px;
  box-shadow: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-eyebrow::before {
  content: none;
}

.hero-headline {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 25ch;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

.hero .hero-headline {
  display: grid;
  gap: 0.18em;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
}

.hero .hero-headline span {
  display: block;
  white-space: nowrap;
}

.hero-supporting {
  max-width: 620px;
  margin: clamp(1.25rem, 2vw, 1.8rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}

.hero-editorial-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-editorial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-editorial-cta:hover .hero-editorial-arrow,
.hero-editorial-cta:focus-visible .hero-editorial-arrow {
  border-color: var(--accent);
  background: var(--accent-soft);
  animation: heroArrowPulse 1.45s ease-in-out infinite;
}

.hero-subheadline {
  position: relative;
  z-index: 1;
  max-width: 37rem;
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.trust-standard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  width: min(100%, var(--section-max));
  margin: clamp(1.25rem, 3vw, 2.6rem) auto 0;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 9vw, 8.5rem);
}

.trust-standard-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(248, 250, 252, 0.08),
    0 30px 70px rgba(2, 6, 23, 0.28);
  isolation: isolate;
}

.trust-standard-image {
  display: block;
  width: 100%;
  height: clamp(360px, 40vw, 500px);
  object-fit: cover;
  object-position: center;
}

.trust-standard-copy {
  min-width: 0;
}

.trust-standard-label {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trust-standard-copy h2 {
  max-width: 12ch;
  margin: 0 0 1.45rem;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

.trust-standard-body {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.trust-standard-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.82;
}

.trust-standard-principle {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(56, 189, 248, 0.24);
  color: var(--text);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 700;
  line-height: 1.6;
}

.process-reveal .process-visual {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.process-reveal .process-copy {
  opacity: 0;
  transform: translateY(28px);
  transform-origin: top;
  transition:
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
  will-change: opacity, transform;
}

.process-reveal .process-reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1.15s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.process-reveal.is-visible .process-visual,
.process-reveal.is-visible .process-copy,
.process-reveal.is-visible .process-reveal-item {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.process-reveal.is-visible .trust-standard-label {
  transition-delay: 0.1s;
}

.process-reveal.is-visible .trust-standard-copy h2 {
  transition-delay: 0.2s;
}

.process-reveal.is-visible .trust-standard-body p:nth-child(1) {
  transition-delay: 0.3s;
}

.process-reveal.is-visible .trust-standard-body p:nth-child(2) {
  transition-delay: 0.4s;
}

.process-reveal.is-visible .trust-standard-body p:nth-child(3) {
  transition-delay: 0.5s;
}

.process-reveal.is-visible .trust-standard-principle {
  transition-delay: 0.6s;
}

.home-services-preview.is-visible .section-heading {
  transition-delay: 0.1s;
}

.home-services-preview.is-visible .home-service-card:nth-child(1) {
  transition-delay: 0.2s;
}

.home-services-preview.is-visible .home-service-card:nth-child(2) {
  transition-delay: 0.3s;
}

.home-services-preview.is-visible .home-service-card:nth-child(3) {
  transition-delay: 0.4s;
}

.home-services-preview.is-visible .home-service-card:nth-child(4) {
  transition-delay: 0.5s;
}

.home-services-preview.is-visible .home-section-link {
  transition-delay: 0.6s;
}

.home-process-section.is-visible .home-process-intro {
  transition-delay: 0.1s;
}

.home-process-section.is-visible .home-process-step:nth-child(1) {
  transition-delay: 0.2s;
}

.home-process-section.is-visible .home-process-step:nth-child(2) {
  transition-delay: 0.3s;
}

.home-process-section.is-visible .home-process-step:nth-child(3) {
  transition-delay: 0.4s;
}

.home-process-section.is-visible .home-process-step:nth-child(4) {
  transition-delay: 0.5s;
}

.home-process-section.is-visible .home-process-step:nth-child(5) {
  transition-delay: 0.6s;
}

.home-process-section.is-visible .home-process-step:nth-child(6) {
  transition-delay: 0.7s;
}

.home-process-section.is-visible .home-process-step:nth-child(7) {
  transition-delay: 0.7s;
}

.services-page .section-heading.process-reveal,
.services-page .service-stagger-card.process-reveal,
.services-page .monthly-care-intro-row.process-reveal,
.services-page .monthly-care-panel.process-reveal,
.services-page .services-final-cta.process-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.services-page .section-heading.process-reveal.is-visible,
.services-page .service-stagger-card.process-reveal.is-visible,
.services-page .monthly-care-intro-row.process-reveal.is-visible,
.services-page .monthly-care-panel.process-reveal.is-visible,
.services-page .services-final-cta.process-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.services-page .process-reveal .process-visual.process-visual-right {
  transform: translateX(42px);
}

.services-page .process-reveal.is-visible .process-visual.process-visual-right {
  transform: none;
}

.services-page .services-hero.is-visible .services-hero-kicker {
  transition-delay: 0.08s;
}

.services-page .services-hero.is-visible #services-hero-heading {
  transition-delay: 0.18s;
}

.services-page .services-hero.is-visible .services-hero-copy {
  transition-delay: 0.28s;
}

.services-page .services-hero.is-visible .services-hero-principle {
  transition-delay: 0.38s;
}

.services-page .services-hero.is-visible .services-hero-link {
  transition-delay: 0.48s;
}

.services-page .services-detail-section .section-heading.is-visible .services-section-kicker {
  transition-delay: 0.08s;
}

.services-page .services-detail-section .section-heading.is-visible h2 {
  transition-delay: 0.18s;
}

.services-page .service-stagger-card.is-visible .process-visual {
  transition-delay: 0.08s;
}

.services-page .service-stagger-card.is-visible .process-copy {
  transition-delay: 0.18s;
}

.services-page .monthly-care-intro-row.is-visible .monthly-care-kicker {
  transition-delay: 0.08s;
}

.services-page .monthly-care-intro-row.is-visible .monthly-care-heading-block h2 {
  transition-delay: 0.18s;
}

.services-page .monthly-care-intro-row.is-visible .monthly-care-summary .process-reveal-item:nth-child(1) {
  transition-delay: 0.28s;
}

.services-page .monthly-care-intro-row.is-visible .monthly-care-principle {
  transition-delay: 0.38s;
}

.services-page .monthly-care-intro-row.is-visible .monthly-care-link {
  transition-delay: 0.48s;
}

.services-page .services-final-cta.is-visible .services-final-cta-kicker {
  transition-delay: 0.08s;
}

.services-page .services-final-cta.is-visible h2 {
  transition-delay: 0.18s;
}

.services-page .services-final-cta.is-visible p:not(.services-final-cta-kicker) {
  transition-delay: 0.28s;
}

.services-page .services-final-cta.is-visible .btn {
  transition-delay: 0.38s;
}

.work-examples-section .work-examples-heading.process-reveal,
.work-examples-section .project-card.process-reveal,
.work-final-cta.process-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1.25s ease,
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.work-examples-section .work-examples-heading.process-reveal.is-visible,
.work-examples-section .project-card.process-reveal.is-visible,
.work-final-cta.process-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.work-examples-section .process-reveal .process-visual.process-visual-right {
  transform: translateX(42px);
}

.work-examples-section .process-reveal.is-visible .process-visual.process-visual-right {
  transform: none;
}

.work-page-hero.is-visible .hero-eyebrow {
  transition-delay: 0.08s;
}

.work-page-hero.is-visible .hero-headline {
  transition-delay: 0.18s;
}

.work-page-hero.is-visible .hero-subheadline {
  transition-delay: 0.28s;
}

.work-page-hero.is-visible .work-hero-principle {
  transition-delay: 0.38s;
}

.work-page-hero.is-visible .work-hero-link {
  transition-delay: 0.48s;
}

.work-examples-section .work-examples-heading.is-visible .work-section-kicker {
  transition-delay: 0.08s;
}

.work-examples-section .work-examples-heading.is-visible h2 {
  transition-delay: 0.18s;
}

.work-examples-section .work-examples-heading.is-visible p:not(.work-section-kicker) {
  transition-delay: 0.28s;
}

.work-examples-section .project-card.is-visible .process-copy {
  transition-delay: 0.08s;
}

.work-examples-section .project-card.is-visible .process-visual {
  transition-delay: 0.18s;
}

.work-final-cta.is-visible .work-final-cta-kicker {
  transition-delay: 0.08s;
}

.work-final-cta.is-visible h2 {
  transition-delay: 0.18s;
}

.work-final-cta.is-visible p:not(.work-final-cta-kicker) {
  transition-delay: 0.28s;
}

.work-final-cta.is-visible .btn {
  transition-delay: 0.38s;
}

.insights-hero.is-visible .insights-kicker {
  transition-delay: 0.08s;
}

.insights-hero.is-visible h1 {
  transition-delay: 0.18s;
}

.insights-hero.is-visible p:not(.insights-kicker):not(.insights-principle) {
  transition-delay: 0.28s;
}

.insights-hero.is-visible .insights-principle {
  transition-delay: 0.38s;
}

.insights-topics-heading.is-visible .insights-kicker {
  transition-delay: 0.08s;
}

.insights-topics-heading.is-visible h2 {
  transition-delay: 0.18s;
}

.insights-topics-heading.is-visible p:not(.insights-kicker) {
  transition-delay: 0.28s;
}

.insights-topic-grid.is-visible .insights-topic-card:nth-child(1) {
  transition-delay: 0.08s;
}

.insights-topic-grid.is-visible .insights-topic-card:nth-child(2) {
  transition-delay: 0.18s;
}

.insights-topic-grid.is-visible .insights-topic-card:nth-child(3) {
  transition-delay: 0.28s;
}

.insights-topic-grid.is-visible .insights-topic-card:nth-child(4) {
  transition-delay: 0.38s;
}

.insights-topic-grid.is-visible .insights-topic-card:nth-child(5) {
  transition-delay: 0.48s;
}

.insights-topic-grid.is-visible .insights-topic-card:nth-child(6) {
  transition-delay: 0.58s;
}

.insights-final-cta.is-visible .insights-kicker {
  transition-delay: 0.08s;
}

.insights-final-cta.is-visible h2 {
  transition-delay: 0.18s;
}

.insights-final-cta.is-visible p:not(.insights-kicker) {
  transition-delay: 0.28s;
}

.insights-final-cta.is-visible .btn {
  transition-delay: 0.38s;
}

.home-services-preview {
  margin-top: clamp(8rem, 14vw, 13rem);
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.home-services-preview .section-heading h2 {
  max-width: 13ch;
  margin: 0 auto;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-inline: auto;
}

.home-services-preview .home-service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  border: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(22, 34, 56, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(248, 250, 252, 0.04);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.home-services-preview .home-service-card::before {
  content: none !important;
  display: none !important;
}

.home-service-card-image {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 16 / 10;
  max-height: 260px;
  margin-bottom: 1.15rem;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.86);
}

.home-service-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.02);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.home-service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.72)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.18), transparent 48%);
  pointer-events: none;
}

.home-service-card-content {
  display: grid;
  align-content: start;
  padding: clamp(1.25rem, 2vw, 1.5rem);
}

.home-services-preview .home-service-card h3 {
  position: relative;
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.home-services-preview .home-service-card h3::after {
  content: none;
}

.home-services-preview .home-service-card p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 1.96rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.home-services-preview .home-service-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(32, 52, 81, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(56, 189, 248, 0.06),
    inset 0 1px 0 rgba(248, 250, 252, 0.05);
}

.home-services-preview .home-service-card:hover .home-service-card-image img {
  filter: saturate(1.04);
  transform: scale(1.06);
}

.home-services-preview .home-service-card:hover h3 {
  color: var(--accent);
}

.home-section-link {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.45rem;
  margin-top: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-section-link:hover,
.home-section-link:focus-visible {
  color: var(--accent);
}

.home-section-link:hover span,
.home-section-link:focus-visible span {
  transform: translateX(3px);
}

.home-section-link span {
  transition: transform 0.2s ease;
}

.home-process-section {
  position: relative;
  overflow: hidden;
  margin-top: clamp(8rem, 14vw, 13rem);
  padding: 0 0 clamp(5rem, 9vw, 8rem);
}

.home-process-section::before {
  content: none;
}

.home-process-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.home-process-intro {
  position: static;
  display: grid;
  gap: 1.2rem;
}

.home-process-section .home-process-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-process-intro h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
  text-wrap: balance;
}

.home-process-intro > p {
  max-width: 42rem;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.82;
}

.home-process-cta {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  margin-top: 0.25rem;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.home-process-cta::before,
.home-process-cta::after {
  content: none !important;
  display: none !important;
}

.home-process-cta p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.home-process-cta p:first-child {
  color: var(--text);
  font-weight: 800;
}

.home-process-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.home-process-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-process-secondary:hover,
.home-process-secondary:focus-visible {
  color: var(--accent);
}

.home-process-steps {
  position: relative;
  display: grid;
  gap: clamp(1.45rem, 2.5vw, 1.9rem);
}

.home-process-steps::before {
  content: none !important;
  display: none !important;
}

.home-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.1rem;
  min-width: 0;
  padding: clamp(1.25rem, 2.2vw, 1.45rem);
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.home-process-step::before,
.home-process-step::after {
  content: none !important;
  display: none !important;
}

.home-process-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.22),
    0 0 30px rgba(56, 189, 248, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-process-step:not(:last-child) .home-process-number::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  width: 1px;
  height: clamp(2.4rem, 4vw, 3.4rem);
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.42),
    rgba(148, 163, 184, 0.08)
  );
  pointer-events: none;
}

.home-process-step h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.home-process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (min-width: 1000px) and (min-height: 900px) {
  .home-process-intro {
    position: sticky;
    top: 7rem;
  }
}

@media (max-height: 899px) {
  .home-process-intro {
    position: static;
  }
}

.glass-card p,
.skills-note,
.project-slot p,
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--text-soft);
  line-height: 1.7;
}

.social-links {
  list-style: none;
  padding: 0;
}

.contact-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(22, 34, 56, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 26px rgba(2, 6, 23, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--btn-primary-start), var(--btn-primary-end)), rgba(22, 34, 56, 0.96);
  border-color: rgba(56, 189, 248, 0.38);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 32px rgba(37, 99, 235, 0.12);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--btn-secondary-start), var(--btn-secondary-end)), rgba(22, 34, 56, 0.94);
}

.content-grid {
  display: grid;
  gap: 2.1rem;
  margin-top: 2.6rem;
}

#services,
#skills,
#projects,
#contact {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

/* FLOATING PANELS (no borders, soft depth) */
.float-panel{
  background: rgba(32, 52, 81, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.float-text{
  padding: 2rem;
}

.glass-card{
  border: none;                 
  background: transparent;      
  box-shadow: none;             
  border-radius: 0;
}

.intro-card,
.metric-card,
.info-card,
.project-slot,
.contact-form,
.contact-card-list,
.social-card {
  padding: 1.4rem;
}

.mini-label,
.section-label,
.project-kicker,
.contact-card-title {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

h4 {
  margin-bottom: 0.55rem;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.section-shell {
  display: grid;
  gap: 0.9rem;
  width: min(100%, var(--section-max));
  margin: 0 auto;
  padding-left: 0;
}

.section-heading {
  padding-left: 0;
  text-align: center;
}

.section-card-grid {
  display: grid;
  gap: 1.05rem;
  min-width: 0;
}

.page-hero {
  justify-items: center;
  padding-top: 1.8rem;
  text-align: center;
}

.page-hero .hero-headline,
.page-hero .hero-subheadline {
  margin-inline: auto;
}

.work-page-hero .hero-eyebrow {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.22em;
}

.work-page-hero .hero-headline {
  max-width: 20ch;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-align: center;
}

.work-page-hero .hero-subheadline {
  max-width: 780px;
  margin-top: clamp(1.3rem, 2vw, 1.8rem);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.7;
}

.work-hero-principle {
  max-width: 720px;
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 800;
  line-height: 1.6;
}

.work-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.work-hero-link:hover,
.work-hero-link:focus-visible {
  color: var(--text);
}

.work-hero-link span {
  line-height: 1;
}

.services-page .services-hero {
  justify-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3.25rem, 6vw, 5rem);
  text-align: center;
}

.services-page .services-hero-inner {
  width: min(100%, 920px);
  margin-inline: auto;
}

.services-page .services-hero-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services-page .services-hero h1 {
  max-width: 22ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.services-page .services-hero h1 span {
  display: block;
}

.services-page .services-hero-copy {
  max-width: 760px;
  margin: clamp(1.3rem, 2vw, 1.8rem) auto 0;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.72;
}

.services-page .services-hero-principle {
  margin: clamp(1.1rem, 2vw, 1.5rem) auto 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
}

.services-page .services-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-page .services-hero-link:hover,
.services-page .services-hero-link:focus-visible {
  color: var(--text);
}

.services-page .services-hero-link span {
  line-height: 1;
}

.services-page .services-detail-section {
  margin-top: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
}

.services-page .services-detail-section .section-heading {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.services-page .services-section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services-page .service-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-page .services-detail-section .section-heading h2 {
  max-width: 22ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.services-page .services-stagger-list {
  display: grid;
  gap: clamp(3rem, 6vw, 5.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  min-width: 0;
  max-width: 100%;
}

.services-page .service-stagger-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  width: min(100%, 980px);
  min-width: 0;
  max-width: 100%;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(32, 52, 81, 0.72), rgba(22, 34, 56, 0.52));
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.26),
    inset 0 1px 0 rgba(248, 250, 252, 0.05);
  overflow: hidden;
}

.services-page .service-stagger-card:nth-child(odd) {
  justify-self: start;
}

.services-page .service-stagger-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.58fr) minmax(220px, 0.42fr);
  justify-self: end;
}

.services-page .service-stagger-card:nth-child(even) .service-media {
  order: 2;
}

.services-page .service-stagger-card:nth-child(even) .service-stagger-copy {
  order: 1;
}

.services-page .service-media {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.services-page .service-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: inherit;
}

.services-page .service-stagger-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.services-page .service-stagger-copy h3 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-page .service-stagger-copy p:not(.service-label) {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.services-page .service-stagger-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.services-page .service-stagger-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.44);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 760px) {
  .services-page .services-detail-section {
    margin-top: clamp(3.5rem, 11vw, 5rem);
  }

  .services-page .services-detail-section .section-heading h2 {
    max-width: 15ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-page .services-stagger-list {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .services-page .service-stagger-card,
  .services-page .service-stagger-card:nth-child(even) {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    padding: 1rem;
    border-radius: 24px;
  }

  .services-page .service-stagger-card:nth-child(even) .service-media,
  .services-page .service-stagger-card:nth-child(even) .service-stagger-copy {
    order: initial;
  }

  .services-page .process-reveal .process-visual,
  .services-page .process-reveal .process-visual.process-visual-right {
    transform: translateY(34px);
  }

  .services-page .process-reveal.is-visible .process-visual,
  .services-page .process-reveal.is-visible .process-visual.process-visual-right {
    transform: none;
  }

  .services-page .service-media {
    border-radius: 18px;
  }

  .services-page .service-stagger-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }
}

.services-page .monthly-care-section {
  margin-top: clamp(8rem, 14vw, 13rem);
  min-width: 0;
  max-width: 100%;
}

.services-page .monthly-care-inner {
  width: min(100%, 1180px);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.services-page .monthly-care-intro-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(1.35rem, 3vw, 2.25rem);
  align-items: start;
  width: min(100%, 1180px);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.services-page .monthly-care-heading-block,
.services-page .monthly-care-summary {
  min-width: 0;
  max-width: 100%;
}

.services-page .monthly-care-heading-block {
  width: min(100%, 1180px);
  margin-inline: auto;
  text-align: center;
}

.services-page .monthly-care-summary {
  width: min(100%, 920px);
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.services-page .monthly-care-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services-page .monthly-care-heading-block h2 {
  max-width: 24ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.services-page .monthly-care-summary p {
  margin: 0 auto 1rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.75;
}

.services-page .monthly-care-summary p:last-of-type {
  margin-bottom: 0;
}

.services-page .monthly-care-summary .monthly-care-principle {
  color: var(--text);
  font-weight: 700;
}

.services-page .monthly-care-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  justify-self: center;
  margin: 1rem auto 0;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-page .monthly-care-link:hover,
.services-page .monthly-care-link:focus-visible {
  color: var(--text);
}

.services-page .monthly-care-stagger-list {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  min-width: 0;
  max-width: 100%;
}

.services-page .monthly-care-panel {
  width: min(100%, 920px);
  min-width: 0;
  max-width: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(32, 52, 81, 0.7), rgba(22, 34, 56, 0.5));
  box-shadow:
    0 24px 60px rgba(2, 6, 23, 0.22),
    inset 0 1px 0 rgba(248, 250, 252, 0.04);
}

.services-page .monthly-care-panel:nth-child(odd) {
  justify-self: start;
}

.services-page .monthly-care-panel:nth-child(even) {
  justify-self: end;
}

.services-page .monthly-care-panel-label {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-page .monthly-care-panel h3 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-page .monthly-care-panel p:not(.monthly-care-panel-label) {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.services-page .services-final-cta {
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  min-width: 0;
  max-width: 100%;
}

.services-page .services-final-cta-inner {
  width: min(100%, 980px);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.services-page .services-final-cta-inner::before {
  content: "";
  display: block;
  width: min(180px, 40%);
  height: 1px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

.services-page .services-final-cta-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services-page .services-final-cta h2 {
  max-width: 15ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-page .services-final-cta p:not(.services-final-cta-kicker) {
  max-width: 780px;
  margin: clamp(1.2rem, 2vw, 1.6rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.services-page .services-final-cta .btn {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

@media (max-width: 760px) {
  .services-page .monthly-care-intro-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-page .monthly-care-section {
    margin-top: clamp(5rem, 16vw, 7rem);
  }

  .services-page .monthly-care-panel,
  .services-page .monthly-care-panel:nth-child(even),
  .services-page .monthly-care-panel:nth-child(odd) {
    justify-self: stretch;
    width: 100%;
  }

  .services-page .monthly-care-heading-block h2 {
    max-width: 12ch;
  }

  .services-page .monthly-care-summary {
    max-width: 100%;
  }

  .services-page .monthly-care-panel h3 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .services-page .services-final-cta {
    margin-top: clamp(4.5rem, 13vw, 6.5rem);
  }

  .services-page .services-final-cta-inner {
    padding-inline: 0;
  }

  .services-page .services-final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1;
  }
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.1rem;
}

.cta-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
}

.cta-card h2 {
  max-width: 18ch;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  color: var(--text);
}

.cta-card p {
  max-width: 44rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.faq-hero {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.faq-hero-inner {
  width: min(100%, 980px);
  margin-inline: auto;
}

.faq-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-hero h1 {
  max-width: 17ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.faq-hero-copy {
  max-width: 760px;
  margin: clamp(1.3rem, 2vw, 1.8rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.faq-hero-principle {
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.6;
}

.faq-section {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.faq-section-heading {
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.faq-section-heading h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.faq-list {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  width: min(100%, 980px);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}

.faq-item {
  min-width: 0;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(32, 52, 81, 0.52), rgba(22, 34, 56, 0.28));
}

.faq-question-label {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.faq-item h3 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.faq-answer {
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding-top: clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(56, 189, 248, 0.16);
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}

.faq-final-cta {
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.faq-final-cta-inner {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-final-cta-inner::before {
  content: "";
  display: block;
  width: min(180px, 40%);
  height: 1px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

.faq-final-cta-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-final-cta h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.faq-final-cta p:not(.faq-final-cta-kicker) {
  max-width: 780px;
  margin: clamp(1.2rem, 2vw, 1.6rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.faq-final-cta .btn {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.faq-hero.is-visible .faq-kicker,
.faq-section-heading.is-visible .faq-kicker,
.faq-final-cta.is-visible .faq-final-cta-kicker {
  transition-delay: 0.08s;
}

.faq-hero.is-visible h1,
.faq-section-heading.is-visible h2,
.faq-final-cta.is-visible h2 {
  transition-delay: 0.18s;
}

.faq-hero.is-visible .faq-hero-copy,
.faq-final-cta.is-visible p:not(.faq-final-cta-kicker) {
  transition-delay: 0.28s;
}

.faq-hero.is-visible .faq-hero-principle,
.faq-final-cta.is-visible .btn {
  transition-delay: 0.38s;
}

.faq-item.is-visible .faq-question-label {
  transition-delay: 0.08s;
}

.faq-item.is-visible h3 {
  transition-delay: 0.18s;
}

.faq-item.is-visible .faq-answer {
  transition-delay: 0.28s;
}

@media (max-width: 760px) {
  .faq-hero h1,
  .faq-section-heading h2,
  .faq-final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .faq-final-cta-inner {
    padding-inline: 0;
  }
}

.section-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-card,
.panel-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--border);
  background: rgba(27, 42, 68, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(248, 250, 252, 0.07),
    0 18px 40px rgba(2, 6, 23, 0.2);
}

.section-card::before,
.panel-card::before {
  content: none;
}

.card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.card-mark {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: none;
  flex-shrink: 0;
}

.card-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-tag,
.card-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(32, 52, 81, 0.58);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.card-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-hero {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.about-hero-inner {
  width: min(100%, 980px);
  margin-inline: auto;
}

.about-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero-copy {
  max-width: 760px;
  margin: clamp(1.3rem, 2vw, 1.8rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.about-hero-principle {
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.6;
}

.about-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-hero-link:hover,
.about-hero-link:focus-visible {
  color: var(--text);
}

.about-standard-section {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.about-standard-inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-standard-heading h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-standard-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.about-standard-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.about-standard-copy .about-standard-principle {
  margin-top: 0.25rem;
  color: var(--text);
  font-weight: 800;
}

.about-final-cta {
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.about-final-cta-inner {
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-final-cta-inner::before {
  content: "";
  display: block;
  width: min(180px, 40%);
  height: 1px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

.about-final-cta-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-final-cta h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-final-cta p:not(.about-final-cta-kicker) {
  max-width: 780px;
  margin: clamp(1.2rem, 2vw, 1.6rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.about-final-cta .btn {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.about-hero.is-visible .about-kicker,
.about-standard-section.is-visible .about-standard-heading .about-kicker,
.about-final-cta.is-visible .about-final-cta-kicker {
  transition-delay: 0.08s;
}

.about-hero.is-visible h1,
.about-standard-section.is-visible .about-standard-heading h2,
.about-final-cta.is-visible h2 {
  transition-delay: 0.18s;
}

.about-hero.is-visible .about-hero-copy,
.about-standard-section.is-visible .about-standard-copy .process-reveal-item:nth-child(1),
.about-final-cta.is-visible p:not(.about-final-cta-kicker) {
  transition-delay: 0.28s;
}

.about-hero.is-visible .about-hero-principle,
.about-standard-section.is-visible .about-standard-copy .process-reveal-item:nth-child(2),
.about-final-cta.is-visible .btn {
  transition-delay: 0.38s;
}

.about-hero.is-visible .about-hero-link,
.about-standard-section.is-visible .about-standard-copy .process-reveal-item:nth-child(3) {
  transition-delay: 0.48s;
}

.about-standard-section.is-visible .about-standard-principle {
  transition-delay: 0.58s;
}

@media (max-width: 760px) {
  .about-standard-inner {
    grid-template-columns: 1fr;
  }

  .about-hero h1,
  .about-standard-heading h2,
  .about-final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .about-final-cta-inner {
    padding-inline: 0;
  }
}

.about-card {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1.8rem;
  min-width: 0;
}

.about-card h3 {
  margin: 0;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.15;
  color: var(--text);
}

.about-card .card-note {
  margin-top: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-approach-card {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  min-width: 0;
}

.approach-list {
  display: grid;
  gap: 0.85rem;
}

.approach-item {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(32, 52, 81, 0.52);
}

.approach-item h3 {
  margin: 0 0 0.25rem;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--text);
}

.approach-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  min-width: 0;
}

.skill-group-card {
  display: grid;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.15rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
}

.skill-group-card::before {
  content: none;
}

.skill-group-card h3 {
  margin: 0;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.18;
  color: var(--text);
}

.skill-group-card .skill-pills {
  justify-content: flex-start;
  gap: 0.55rem;
}

.skill-group-card .card-tag {
  font-size: 0.78rem;
  padding: 0.36rem 0.62rem;
  min-height: 28px;
}

.skill-group-card:nth-child(4n + 2),
.skill-group-card:nth-child(4n + 3) {
  background: rgba(27, 42, 68, 0.82);
}

.section-card-grid-three .info-card,
.project-slot {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(27, 42, 68, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(248, 250, 252, 0.07),
    0 18px 40px rgba(2, 6, 23, 0.2);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.about-card p + p {
  margin-top: 1.2rem;
}

.about-card p {
  font-size: 1.08rem;
}

.skills-note,
.contact-grid .info-card p {
  font-size: 1.08rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  padding: 1.35rem;
  border-radius: 22px;
  min-width: 0;
}

.service-card h3,
.project-copy h3 {
  margin: 0;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  line-height: 1.15;
  color: var(--text);
}

.service-card h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 1.62rem;
}

.service-card h3::after {
  content: none;
}

.card-description,
.service-card .skills-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.service-card .card-note {
  margin-top: auto;
}

.project-list {
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: 1.5rem;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}


.project-slot{
  padding: 1.35rem;
  width: 100%;
  margin: 0;
  min-width: 0;
}

.project-card {
  border-radius: 26px;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.05rem;
  padding: 0.35rem;
  min-width: 0;
}

.project-copy h3 {
  font-size: clamp(1.75rem, 2.35vw, 2.25rem);
}

.project-copy p {
  margin: 0;
}

.project-description {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.work-examples-section {
  margin-top: clamp(5rem, 9vw, 8rem);
  min-width: 0;
  max-width: 100%;
}

.work-examples-section .work-examples-heading {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.work-section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.work-examples-section .work-examples-heading h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.work-examples-section .work-examples-heading p:not(.work-section-kicker) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.work-examples-section .project-list {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  gap: clamp(4rem, 8vw, 7rem);
}

.work-examples-section .project-card {
  min-width: 0;
  max-width: 100%;
}

.work-examples-section .project-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-examples-section .project-focus {
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(56, 189, 248, 0.18);
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.work-examples-section .project-focus strong {
  color: var(--text);
  font-weight: 800;
}

.work-examples-section .project-preview {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 26px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.work-examples-section .project-browser-bar {
  display: none;
}

.work-examples-section .project-preview-stage {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.work-examples-section .project-preview picture {
  display: block;
  width: 100%;
  height: 100%;
}

.work-examples-section .project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  border-radius: inherit;
  background: transparent;
  object-fit: contain;
  object-position: center;
}

.work-final-cta {
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  min-width: 0;
  max-width: 100%;
}

.work-final-cta-inner {
  width: min(100%, 980px);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.work-final-cta-inner::before {
  content: "";
  display: block;
  width: min(180px, 40%);
  height: 1px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

.work-final-cta-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.work-final-cta h2 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.work-final-cta p:not(.work-final-cta-kicker) {
  max-width: 780px;
  margin: clamp(1.2rem, 2vw, 1.6rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.work-final-cta .btn {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.insights-hero {
  justify-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(3.25rem, 6vw, 5rem);
  text-align: center;
}

.insights-hero-inner {
  width: min(100%, 980px);
  margin-inline: auto;
}

.insights-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.insights-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.insights-hero p:not(.insights-kicker):not(.insights-principle) {
  max-width: 780px;
  margin: clamp(1.3rem, 2vw, 1.8rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.7;
}

.insights-principle {
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--text);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 800;
  line-height: 1.6;
}

.insights-topics-section {
  margin-top: clamp(5rem, 9vw, 8rem);
  min-width: 0;
  max-width: 100%;
}

.insights-topics-heading {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.insights-topics-heading h2 {
  max-width: 17ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.insights-topics-heading p:not(.insights-kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.insights-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  min-width: 0;
}

.insights-topic-card {
  min-width: 0;
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(32, 52, 81, 0.48), rgba(22, 34, 56, 0.28));
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.16);
}

.insights-topic-card h3 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.insights-topic-card p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.insights-final-cta {
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  min-width: 0;
  max-width: 100%;
}

.insights-final-cta-inner {
  width: min(100%, 980px);
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.insights-final-cta-inner::before {
  content: "";
  display: block;
  width: min(180px, 40%);
  height: 1px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

.insights-final-cta h2 {
  max-width: 15ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.insights-final-cta p:not(.insights-kicker) {
  max-width: 760px;
  margin: clamp(1.2rem, 2vw, 1.6rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.insights-final-cta .btn {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

@media (max-width: 900px) {
  .insights-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .insights-hero {
    padding-top: clamp(1.25rem, 5vw, 2rem);
    padding-bottom: clamp(3rem, 10vw, 4.25rem);
  }

  .insights-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .insights-hero h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1;
  }

  .insights-hero p:not(.insights-kicker):not(.insights-principle),
  .insights-topics-heading p:not(.insights-kicker),
  .insights-final-cta p:not(.insights-kicker) {
    font-size: 1rem;
    line-height: 1.7;
  }

  .insights-topics-section {
    margin-top: clamp(4rem, 13vw, 6rem);
  }

  .insights-topics-heading h2,
  .insights-final-cta h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1;
  }

  .insights-topic-card h3 {
    font-size: 1.2rem;
  }

  .insights-topic-grid {
    grid-template-columns: 1fr;
    margin-top: clamp(2.5rem, 10vw, 4rem);
  }

  .insights-final-cta {
    margin-top: clamp(4.5rem, 13vw, 6.5rem);
  }

  .insights-final-cta-inner {
    padding-inline: 0;
  }
}

.project-stack-list {
  margin-top: 0.2rem;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.2rem;
}

.project-link{
  width: fit-content;
  color: var(--text);
  text-decoration: none;
}
.project-link:hover{
  text-decoration: none;
}

/* PROJECT PREVIEW (single source of truth) */
/* FLOATING SCREENSHOT PREVIEW */
.project-preview{
  display: block;
  width: 100%;
  min-height: 0;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(27, 42, 68, 0.98), rgba(22, 34, 56, 0.98));
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  transform: translateZ(0);
  text-decoration: none;
  min-width: 0;
}

.project-preview-stage {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.68rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(22, 34, 56, 0.86);
}

.browser-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.browser-dots span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.36);
}

.browser-dots span:nth-child(2) {
  background: rgba(56, 189, 248, 0.42);
}

.browser-dots span:nth-child(3) {
  background: rgba(37, 99, 235, 0.56);
}

.browser-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.project-preview picture{
  display: block;
  width: 100%;
}

.project-preview img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(27, 42, 68, 0.8));
}

.project-preview-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid var(--placeholder-border);
  background:
    radial-gradient(circle at top, var(--placeholder-top), transparent 55%),
    linear-gradient(180deg, var(--placeholder-bottom-a), var(--placeholder-bottom-b));
}

.project-preview-placeholder span {
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.92);
  text-align: center;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#skills .skills-grid {
  justify-items: stretch;
}

.skill-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  max-width: 100%;
  justify-content: center;
  text-align: center;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 1.65rem;
}

.contact-grid > .info-card,
.contact-form {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(27, 42, 68, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(248, 250, 252, 0.07),
    0 18px 40px rgba(2, 6, 23, 0.22);
}

.contact-intro-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
  padding: 2rem;
}

.contact-intro-card h3,
.contact-form h3 {
  margin: 0;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  color: var(--text);
}

.contact-intro-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
}

.contact-lead {
  color: var(--text);
  font-weight: 600;
}

.contact-email-line {
  margin-top: 0.25rem;
  color: var(--text);
  font-weight: 600;
}

.contact-trust-note {
  margin-top: 0.15rem;
  color: var(--text-dim);
  font-weight: 500;
}

.contact-email-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  overflow-wrap: anywhere;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.contact-email-link:hover {
  color: var(--text);
  border-color: rgba(56, 189, 248, 0.52);
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.45rem;
}

.contact-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  background: rgba(32, 52, 81, 0.5);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.06);
}

.contact-method-social {
  grid-template-columns: minmax(0, 1fr);
}

.contact-method-main {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.contact-method-heading-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.contact-method-icon {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
  flex-shrink: 0;
}

.contact-method-heading-row h3 {
  margin: 0;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.contact-method-main p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 30rem;
}

.contact-method-action {
  justify-self: end;
  width: fit-content;
  min-width: 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  overflow-wrap: anywhere;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.contact-method-action:hover,
.contact-method-action:focus-visible {
  color: var(--text);
  border-color: rgba(56, 189, 248, 0.52);
}

.contact-social-links {
  margin: 0;
  gap: 0.7rem;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.contact-social-links .social-link {
  width: 44px;
  height: 44px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 2rem;
  align-content: start;
}

.contact-form-intro {
  margin: -0.15rem 0 0.15rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label {
  line-height: 1.1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--field-border);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  font: inherit;
  color: var(--text);
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(56, 189, 248, 0.9) 50%),
    linear-gradient(135deg, rgba(56, 189, 248, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
  cursor: pointer;
}

.contact-form select:invalid {
  color: var(--text-dim);
}

.contact-form:focus-within {
  border-color: rgba(56, 189, 248, 0.34);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.68);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
  background: rgba(22, 34, 56, 0.96);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: rgba(56, 189, 248, 0.74);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.form-honeypot {
  display: none !important;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.form-status.is-pending {
  color: var(--text-soft);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #ffb7b7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dim);
}

.contact-submit {
  width: 100%;
  margin-top: 0.15rem;
}

.contact-trust {
  margin: 0.1rem 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  text-align: center;
}

.contact-form .btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
}

.contact-hero {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.contact-hero-inner {
  width: min(100%, 980px);
  margin-inline: auto;
}

.contact-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-hero-copy {
  max-width: 760px;
  margin: clamp(1.3rem, 2vw, 1.8rem) auto 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.contact-hero-principle {
  margin: clamp(1rem, 2vw, 1.4rem) auto 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.6;
}

.contact-main-section {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.contact-main-grid {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  min-width: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(32, 52, 81, 0.58), rgba(22, 34, 56, 0.34));
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-info-panel h2,
.contact-form-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-info-panel p,
.contact-form-panel p {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-detail-list {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}

.contact-detail-list div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(56, 189, 248, 0.16);
}

.contact-detail-list span {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail-list a {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-note {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--text);
  font-weight: 700;
}

.contact-form-panel .contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-panel label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 700;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.62);
  color: var(--text);
  padding: 0.85rem 0.95rem;
}

.contact-form-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-social-section {
  margin-top: clamp(5rem, 9vw, 8rem);
}

.contact-social-inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-social-copy h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-social-copy p:not(.contact-kicker) {
  max-width: 620px;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.contact-social-section .contact-social-links {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(32, 52, 81, 0.48), rgba(22, 34, 56, 0.28));
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
}

.contact-social-link-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.contact-social-icon {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent);
}

.contact-social-icon svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.contact-social-link:hover .contact-social-icon,
.contact-social-link:focus-visible .contact-social-icon {
  background: rgba(56, 189, 248, 0.18);
  color: var(--text);
}

.contact-social-section.is-visible .contact-social-copy .contact-kicker {
  transition-delay: 0.08s;
}

.contact-social-section.is-visible .contact-social-copy h2 {
  transition-delay: 0.18s;
}

.contact-social-section.is-visible .contact-social-copy p:not(.contact-kicker) {
  transition-delay: 0.28s;
}

.contact-social-section.is-visible .contact-social-link:nth-child(1) {
  transition-delay: 0.12s;
}

.contact-social-section.is-visible .contact-social-link:nth-child(2) {
  transition-delay: 0.2s;
}

.contact-social-section.is-visible .contact-social-link:nth-child(3) {
  transition-delay: 0.28s;
}

.contact-social-section.is-visible .contact-social-link:nth-child(4) {
  transition-delay: 0.36s;
}

.contact-social-section.is-visible .contact-social-link:nth-child(5) {
  transition-delay: 0.44s;
}

.contact-hero.process-reveal .process-reveal-item,
.contact-social-section.process-reveal .process-reveal-item,
.contact-next-section.process-reveal .process-reveal-item {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 1.35s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.contact-main-section.process-reveal .process-visual {
  opacity: 0;
  transform: translateX(-46px);
  transition:
    opacity 1.4s ease,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.contact-main-section.process-reveal .process-visual.process-visual-right {
  transform: translateX(46px);
}

@media (max-width: 1100px) {
  .contact-main-section.process-reveal .process-visual,
  .contact-main-section.process-reveal .process-visual.process-visual-right {
    transform: translateY(38px);
  }
}

.contact-hero.process-reveal.is-visible .process-reveal-item,
.contact-main-section.process-reveal.is-visible .process-visual,
.contact-social-section.process-reveal.is-visible .process-reveal-item,
.contact-next-section.process-reveal.is-visible .process-reveal-item {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.contact-hero.is-visible .contact-kicker {
  transition-delay: 0.08s;
}

.contact-hero.is-visible h1 {
  transition-delay: 0.18s;
}

.contact-hero.is-visible .contact-hero-copy {
  transition-delay: 0.28s;
}

.contact-hero.is-visible .contact-hero-principle {
  transition-delay: 0.38s;
}

.contact-main-section.is-visible .contact-info-panel {
  transition-delay: 0.08s;
}

.contact-main-section.is-visible .contact-form-panel {
  transition-delay: 0.18s;
}

.contact-next-section {
  margin-top: clamp(5rem, 9vw, 8rem);
}

.contact-next-heading {
  width: min(100%, 820px);
  margin-inline: auto;
  text-align: center;
}

.contact-next-heading h2 {
  max-width: 15ch;
  margin: 0 auto;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
  width: min(100%, 1040px);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}

.contact-next-grid article {
  min-width: 0;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.34);
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.contact-next-grid h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.contact-next-grid p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.contact-next-section.is-visible .contact-next-heading .contact-kicker {
  transition-delay: 0.08s;
}

.contact-next-section.is-visible .contact-next-heading h2 {
  transition-delay: 0.18s;
}

.contact-next-section.is-visible .contact-next-grid .process-reveal-item:nth-child(1) {
  transition-delay: 0.28s;
}

.contact-next-section.is-visible .contact-next-grid .process-reveal-item:nth-child(2) {
  transition-delay: 0.38s;
}

.contact-next-section.is-visible .contact-next-grid .process-reveal-item:nth-child(3) {
  transition-delay: 0.48s;
}

@media (max-width: 860px) {
  .contact-main-grid,
  .contact-social-inner,
  .contact-next-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-copy h2 {
    max-width: 16ch;
  }
}

.contact-hero h1,
.contact-social-copy h2,
.contact-next-heading h2 {
  overflow-wrap: anywhere;
}

.footer-brandline {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-card {
  display: grid;
  gap: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--social-border);
  background: rgba(22, 34, 56, 0.92);
  color: var(--text-soft);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

footer {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  padding: 0 1rem 2rem;
  text-align: center;
  color: var(--text-dim);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .service-card:hover,
  .project-slot:hover,
  .project-preview:hover,
  .social-link:hover {
    transform: translateY(-4px);
  }

  .btn:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 20px 42px rgba(2, 6, 23, 0.26);
  }

  .project-slot:hover,
  .project-preview:hover,
  .social-link:hover {
    border-color: rgba(56, 189, 248, 0.36);
  }

  .service-card:hover {
    box-shadow:
      inset 0 1px 0 rgba(248, 250, 252, 0.08),
      0 24px 54px rgba(2, 6, 23, 0.24),
      0 0 0 1px rgba(56, 189, 248, 0.12);
  }

  .project-slot:hover {
    box-shadow:
      inset 0 1px 0 rgba(248, 250, 252, 0.08),
      0 24px 54px rgba(2, 6, 23, 0.24),
      0 0 0 1px rgba(56, 189, 248, 0.12);
  }

  .project-preview:hover {
    box-shadow:
      0 26px 60px rgba(2, 6, 23, 0.3),
      0 0 0 1px rgba(56, 189, 248, 0.1);
  }

  .social-link:hover {
    color: var(--text);
    background: rgba(32, 52, 81, 0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover,
  .project-slot:hover,
  .project-preview:hover,
  .social-link:hover {
    transform: none;
  }

  .hero-editorial-cta:hover .hero-editorial-arrow,
  .hero-editorial-cta:focus-visible .hero-editorial-arrow {
    animation: none;
    transform: none;
  }

  .process-reveal.js-reveal,
  .process-reveal .process-visual,
  .process-reveal .process-copy,
  .process-reveal .process-reveal-item,
  .services-page .section-heading.process-reveal,
  .services-page .service-stagger-card.process-reveal,
  .services-page .monthly-care-intro-row.process-reveal,
  .services-page .monthly-care-panel.process-reveal,
  .services-page .services-final-cta.process-reveal,
  .work-examples-section .work-examples-heading.process-reveal,
  .work-examples-section .project-card.process-reveal,
  .work-final-cta.process-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.contact-form-panel .contact-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroArrowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.22);
    transform: translateX(2px) scale(1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0.04);
    transform: translateX(2px) scale(1.045);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    transform: translateX(2px) scale(1);
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .site-header {
    width: 100%;
    margin-inline: auto;
    padding-inline: 0.85rem;
  }

  .site-brand {
    gap: 0.7rem;
    transform: none;
  }

  .site-brand-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    transform: scale(1.16);
  }

  .site-brand-name {
    font-size: 1rem;
  }

  .site-brand-role {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .site-nav {
    gap: 0.25rem;
  }

  .site-nav a {
    padding-inline: 0.48rem;
    font-size: 0.78rem;
    letter-spacing: 0.075em;
  }
}

@media (max-width: 980px) {
  .portfolio-shell {
    padding: 0.7rem 1.5rem 3.5rem;
  }

  .hero {
    gap: 1.35rem;
  }

  .trust-standard-section.process-reveal .process-visual,
  .work-examples-section .process-reveal .process-visual.process-visual-right {
    transform: translateY(34px);
  }

  .trust-standard-section.process-reveal.is-visible .process-visual,
  .work-examples-section .process-reveal.is-visible .process-visual.process-visual-right {
    transform: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: center;
    gap: 0.7rem 0.8rem;
    width: 100%;
    padding: 0.78rem 0.85rem;
    margin-inline: auto;
  }

  .site-brand {
    width: auto;
    justify-content: flex-start;
    gap: 0.7rem;
    transform: none;
  }

  .site-brand-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    transform: scale(1.08);
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.05rem;
    padding-top: 0.7rem;
    border-top: 0;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 0.72rem 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .hero .hero-headline {
    font-size: clamp(2.4rem, 7.5vw, 4.8rem);
  }

  .trust-standard-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: clamp(3.8rem, 8vw, 5.5rem) 0 clamp(4.4rem, 8vw, 6rem);
  }

  .trust-standard-visual {
    border-radius: 22px;
  }

  .trust-standard-image {
    height: 360px;
  }

  .trust-standard-copy h2 {
    max-width: 15ch;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-process-intro {
    position: static;
  }

  .home-process-intro h2 {
    max-width: 14ch;
  }

  .contact-grid,
  .project-row {
    grid-template-columns: 1fr;
  }

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

  .section-card-grid-three,
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-method {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .contact-method-action { justify-self: start; }

  .contact-method .contact-social-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .contact-method-social {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    gap: 1.1rem;
  }

  .project-row {
    gap: 1.4rem;
  }

  .service-card {
    padding: 1.4rem;
  }

  #projects .project-slot {
    padding: 1.8rem;
  }

  .project-copy {
    padding: 1.5rem;
  }

  .contact-intro-card,
  .contact-form {
    padding: 1.7rem;
  }
}

@media (max-width: 768px) {
  .portfolio-shell {
    padding: 0.65rem 1rem 2.85rem;
  }

  .site-header {
    border-radius: 22px;
  }

  .section-heading {
    text-align: center;
  }

  .section-label {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
  }

  .section-card-grid {
    gap: 1rem;
  }

  .project-slot,
  .about-card,
  .contact-intro-card,
  .contact-form,
  .section-card-grid-three .info-card {
    padding: 1.3rem;
  }

  .project-copy {
    padding: 1.25rem;
  }

  #projects .project-copy {
    align-items: center;
    text-align: center;
  }

  #projects .project-actions {
    justify-content: center;
    text-align: center;
  }

  #projects .project-copy > h3,
  #projects .project-copy > p {
    width: min(100%, 30ch);
    margin-inline: auto;
  }

  #projects .project-stack-list {
    justify-content: center;
  }

  .project-preview {
    order: -1;
  }

  .section-shell {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .services-page .services-section-kicker,
  .services-page .monthly-care-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
  }

  .services-page .monthly-care-heading-block h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1;
  }

  .services-page .services-detail-section .section-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: 0.98;
  }

  .services-page .services-hero {
    padding-top: clamp(1.25rem, 5vw, 2rem);
    padding-bottom: clamp(3rem, 10vw, 4.25rem);
  }

  .services-page .services-hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .services-page .services-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .services-page .services-hero-copy {
    font-size: 1rem;
    line-height: 1.7;
  }

  .services-page .services-hero-principle {
    font-size: 0.98rem;
  }

  .work-examples-section .project-list {
    margin-top: clamp(2.5rem, 10vw, 4rem);
    gap: clamp(2.75rem, 11vw, 4.5rem);
  }

  .work-final-cta {
    margin-top: clamp(4.5rem, 13vw, 6.5rem);
  }

  .work-final-cta-inner {
    padding-inline: 0;
  }

  .work-final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1;
  }

  .work-page-hero .hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .work-page-hero .hero-headline {
    max-width: 12ch;
    font-size: clamp(2.5rem, 12vw, 3.8rem);
    line-height: 0.98;
  }

  .work-page-hero .hero-subheadline {
    font-size: 1rem;
    line-height: 1.7;
  }

  .portfolio-shell {
    padding: 0.55rem 1rem 2.25rem;
  }

  .section-card-grid-three,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 0.55rem 0.65rem;
    padding: 0.65rem 0.75rem;
  }

  .site-brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 0;
    transform: scale(1.02);
  }

  .site-brand-name {
    font-size: 0.9rem;
  }

  .site-brand-role {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .mobile-nav-toggle {
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .site-nav a {
    padding: 0.68rem 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: clamp(360px, 58vh, 540px);
    padding: 3.5rem 1rem;
  }

  .hero .hero-headline {
    max-width: 100%;
    font-size: clamp(1.4rem, 7vw, 3.5rem);
    line-height: 0.98;
  }

  .hero-supporting {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-editorial-arrow {
    width: 2.75rem;
    height: 2.75rem;
  }

  .trust-standard-section {
    gap: 1.8rem;
    margin-top: clamp(1.1rem, 5vw, 2rem);
    padding: 2.8rem 0 4.4rem;
  }

  .trust-standard-visual {
    border-radius: 20px;
  }

  .trust-standard-image {
    height: 280px;
  }

  .trust-standard-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .trust-standard-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .trust-standard-body p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .home-services-preview {
    margin-top: clamp(5rem, 16vw, 7rem);
    padding-bottom: clamp(4rem, 12vw, 5.5rem);
  }

  .home-services-preview .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 1.8rem;
  }

  .home-service-card-content {
    padding: 1.25rem;
  }

  .home-services-preview .home-service-card h3 {
    font-size: clamp(1.18rem, 6vw, 1.45rem);
  }

  .home-services-preview .home-service-card p {
    font-size: 1rem;
  }

  .home-process-section {
    margin-top: clamp(5rem, 16vw, 7rem);
    padding-bottom: clamp(4rem, 12vw, 5.5rem);
  }

  .home-process-inner {
    gap: 2rem;
  }

  .home-process-section .home-process-eyebrow {
    color: var(--accent);
    font-size: 0.95rem;
    letter-spacing: 0.24em;
  }

  .home-process-intro h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.1rem);
    line-height: 1.02;
  }

  .home-process-actions {
    align-items: stretch;
  }

  .home-process-actions .btn,
  .home-process-secondary {
    width: 100%;
  }

  .home-process-secondary {
    justify-content: center;
  }

  .home-process-steps {
    gap: 1.35rem;
  }

  .home-process-steps::before {
    display: none;
  }

  .home-process-step {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.2rem;
    border-radius: 0 !important;
  }

  .home-process-step:not(:last-child) .home-process-number::after {
    top: calc(100% + 0.25rem);
    height: 0.7rem;
  }

  .content-grid {
    gap: 1.65rem;
    margin-top: 1.65rem;
  }

  .section-shell {
    gap: 0.8rem;
  }

  .section-heading {
    text-align: center;
  }

  .section-label {
    font-size: 1.02rem;
    letter-spacing: 0.13em;
  }

  .section-card-grid {
    gap: 0.9rem;
  }

  .intro-card,
  .metric-card,
  .info-card,
  .project-slot,
  .contact-form,
  .contact-card-list,
  .social-card,
  .about-card {
    padding: 1.25rem;
  }

  .about-card {
    min-height: 0;
  }

  .section-card-grid-three .info-card {
    padding: 1.25rem;
  }

  .service-card {
    padding: 1.2rem;
    gap: 0.9rem;
  }

  .contact-method {
    padding: 0.95rem;
  }

  .skill-pills {
    gap: 0.6rem;
  }

  .project-row {
    gap: 0.85rem;
  }

  #projects .project-list {
    justify-items: stretch;
    gap: 1rem;
  }

  #projects .project-slot {
    padding: 0.95rem;
  }

  #projects .project-row {
    width: 100%;
    margin: 0;
    justify-items: stretch;
    gap: 1rem;
  }

  #projects .project-copy {
    gap: 0.75rem;
    padding: 1rem;
  }

  #projects .project-copy,
  #projects .project-preview {
    width: 100%;
    margin: 0;
  }

  .project-preview {
    order: -1;
    min-height: 0;
    border-radius: 18px;
  }

  .project-preview-placeholder {
    min-height: 220px;
  }

  .btn {
    width: 100%;
  }

  #projects .project-link {
    width: fit-content;
    margin-inline: auto;
    margin-top: 0.35rem;
  }

  .contact-intro-card,
  .contact-form {
    padding: 1.25rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 170px;
  }

  .contact-social-links {
    gap: 0.55rem;
  }

  .contact-social-links .social-link {
    width: 42px;
    height: 42px;
  }

  .contact-method {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-method-action {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 700px) {
  .contact-method {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.85rem;
  }

  .contact-method-action {
    justify-self: start;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-method .contact-social-links {
    justify-content: flex-start;
  }
}

/* Homepage services editorial override */
.home-services-preview .home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3.5rem, 7vw, 6rem) clamp(3rem, 8vw, 7rem);
  width: min(100%, 1080px);
  margin-inline: auto;
}

.home-services-preview .home-service-card {
  display: block;
  position: relative;
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none;
}

.home-services-preview .home-service-card::before,
.home-services-preview .home-service-card::after {
  content: none !important;
  display: none !important;
}

.home-services-preview .home-service-card h3 {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--accent);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.home-services-preview .home-service-card h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.85), rgba(56, 189, 248, 0));
  opacity: 0.75;
}

.home-services-preview .home-service-card p {
  max-width: 34ch;
  margin: 1.25rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.75;
}

.home-services-preview .home-service-card:hover {
  border: 0 !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.home-services-preview .home-service-card:hover h3 {
  color: var(--text);
}

.home-services-preview .home-service-card:hover h3::after {
  opacity: 1;
}

@media (max-width: 640px) {
  .home-services-preview .home-services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-services-preview .home-service-card h3 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }

  .home-services-preview .home-service-card p {
    font-size: 1rem;
  }
}

/* Homepage section spacing override */
.home-services-preview {
  margin-top: clamp(4.5rem, 7vw, 6.5rem) !important;
}

.home-process-section {
  margin-top: clamp(4.5rem, 7vw, 6.5rem) !important;
}

@media (max-width: 640px) {
  .home-services-preview {
    margin-top: clamp(3rem, 9vw, 4.25rem) !important;
  }

  .home-process-section {
    margin-top: clamp(3rem, 9vw, 4.25rem) !important;
  }
}
