@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@700;800&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-solid: #fffdf9;
  --surface-strong: #f2ece1;
  --text: #151515;
  --text-soft: rgba(21, 21, 21, 0.68);
  --text-faint: rgba(21, 21, 21, 0.46);
  --line: rgba(21, 21, 21, 0.1);
  --line-strong: rgba(21, 21, 21, 0.18);
  --accent: #1e5eff;
  --accent-soft: rgba(30, 94, 255, 0.12);
  --white: #ffffff;
  --success: #25d366;
  --shadow-sm: 0 10px 30px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 20px 60px rgba(17, 17, 17, 0.09);
  --shadow-lg: 0 40px 90px rgba(17, 17, 17, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --header-height: 86px;
  --container: 1200px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(circle at top right, rgba(30, 94, 255, 0.08), transparent 26rem),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 44%, var(--bg-soft) 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
}

body::before {
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.028) 1px, transparent 1px);
  background-position: center top;
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--text);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  background: var(--text);
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  left: 1rem;
  padding: 0.85rem 1.1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
  z-index: 5000;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  margin-inline: auto;
  max-width: var(--container);
  width: min(calc(100% - 2rem), var(--container));
}

.site-header {
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid transparent;
  inset: 0 0 auto;
  position: fixed;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  z-index: 1000;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 246, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.05);
}

.nav {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: auto 1fr auto;
  min-height: var(--header-height);
}

.logo-link {
  align-items: center;
  display: inline-flex;
  width: fit-content;
}

.nav-logo {
  height: 30px;
  width: auto;
}

.footer-logo {
  height: 38px;
  width: auto;
}

.starto-logo {
  display: block;
  object-fit: contain;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  justify-self: center;
  list-style: none;
}

.nav-link {
  border-radius: 999px;
  color: var(--text-soft);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.72rem 0.95rem;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-self: end;
}

.nav-whatsapp {
  align-items: center;
  background: #fffdfa;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 54px;
  height: 54px;
  justify-content: center;
  position: relative;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  width: 54px;
}

.nav-whatsapp:hover {
  background: var(--bg-soft);
  border-color: rgba(21, 21, 21, 0.22);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

.nav-whatsapp svg {
  display: block;
  flex: 0 0 auto;
  height: 25px;
  max-width: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 180ms var(--ease);
  width: 25px;
}

.nav-whatsapp:hover svg {
  transform: scale(1.08);
}

.nav-whatsapp path {
  fill: currentColor;
}

.nav-cta {
  min-height: 54px;
  padding-inline: 1.45rem;
}

.mobile-nav-cta {
  display: none;
}

.menu-toggle {
  color: var(--text);
  display: none;
  height: 46px;
  position: relative;
  width: 46px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  width: 20px;
}

.menu-toggle::before {
  transform: translate(-50%, calc(-50% - 7px));
}

.menu-toggle::after {
  transform: translate(-50%, calc(-50% + 7px));
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
  white-space: nowrap;
}

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

.btn-primary {
  background: #0071e3;
  border: 1px solid #0071e3;
  box-shadow: none;
  color: var(--white);
}

.btn-primary:hover {
  background: #0077ed;
  border-color: #0077ed;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid #0071e3;
  color: #006edb;
}

.btn-secondary:hover {
  background: rgba(0, 113, 227, 0.08);
  border-color: #0077ed;
  box-shadow: none;
  color: #006edb;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header-split {
  display: grid;
  gap: 1.5rem;
}

.section-index,
.eyebrow {
  color: var(--text-faint);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 4.9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 14ch;
}

.section-copy {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  max-width: 580px;
}

.hero {
  padding: calc(var(--header-height) + clamp(3.25rem, 7vw, 6rem)) 0 0;
}

.hero-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8.1vw, 7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  max-width: 8ch;
  text-wrap: balance;
}

.hero-panel {
  align-self: stretch;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 246, 0.88));
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3.2vw, 2.35rem);
  position: relative;
}

.hero-panel::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 48px;
  left: 1.5rem;
  opacity: 0.08;
  position: absolute;
  top: 1.5rem;
  width: 48px;
}

.hero-panel p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin-bottom: 1.5rem;
  max-width: 34ch;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-trust {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.trust-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 112px;
  padding: 1rem 1rem 0.95rem;
}

.trust-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0.45rem;
}

.trust-card span:last-child {
  color: var(--text-soft);
  display: block;
  font-size: 0.9rem;
}

.hero-summary {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-summary-card {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.3rem;
}

.hero-summary-card span {
  color: var(--text-faint);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.hero-summary-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  max-width: 42ch;
}

.marquee {
  background: rgba(255, 255, 255, 0.48);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: 6rem;
  z-index: 1;
}

.marquee::before {
  background: linear-gradient(90deg, var(--bg) 0%, rgba(246, 241, 232, 0) 100%);
  left: 0;
}

.marquee::after {
  background: linear-gradient(270deg, var(--bg) 0%, rgba(246, 241, 232, 0) 100%);
  right: 0;
}

.marquee-track {
  animation: marquee 24s linear infinite;
  display: flex;
  gap: 2rem;
  min-width: max-content;
  width: max-content;
}

.marquee span {
  color: var(--text-faint);
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

.partners-strip {
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 20, 0.06);
  border-top: 1px solid rgba(17, 17, 20, 0.04);
  overflow: hidden;
  padding: clamp(2.2rem, 4vw, 3.6rem) 0 clamp(2.4rem, 4vw, 3.8rem);
  position: relative;
}

.partners-heading {
  display: block;
  margin-bottom: clamp(2rem, 3.2vw, 3.1rem);
  text-align: center;
}

.partners-title {
  color: #3f3f43;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  max-width: none;
}

.partners-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  overflow: hidden;
  padding: 0.5rem 0;
  position: relative;
}

.partners-track {
  align-items: center;
  animation: partnersScroll 34s linear infinite;
  display: flex;
  gap: clamp(2.4rem, 5vw, 5rem);
  min-width: max-content;
  width: max-content;
  will-change: transform;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-sequence {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: clamp(2.4rem, 5vw, 5rem);
  padding-right: clamp(2.4rem, 5vw, 5rem);
}

.partner-logo {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(17, 17, 20, 0.08);
  display: flex;
  flex: 0 0 auto;
  height: auto;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: clamp(104px, 11vw, 148px);
}

.partner-logo::after {
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: inherit;
  content: "";
  inset: 4px;
  pointer-events: none;
  position: absolute;
}

.partner-logo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@keyframes partnersScroll {
  to {
    transform: translateX(calc(-50% - clamp(1.2rem, 2.5vw, 2.5rem)));
  }
}

.work-section,
.pricing-section,
.testimonials {
  background: transparent;
}

.work-heading {
  display: block;
  margin-bottom: clamp(2rem, 3.2vw, 3.1rem);
  text-align: center;
}

.page-heading {
  display: block;
  margin-bottom: clamp(2rem, 3.2vw, 3.1rem);
  text-align: center;
}

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

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

.studio,
.faq-section,
.contact-section {
  background: rgba(255, 252, 246, 0.62);
}

.work-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.case-card,
.pricing-card,
.testimonial-card,
.contact-copy,
.form-shell,
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 252, 246, 0.76));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 1.6rem;
  position: relative;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.case-card::before {
  background:
    radial-gradient(circle at top right, rgba(30, 94, 255, 0.1), transparent 42%),
    linear-gradient(135deg, rgba(21, 21, 21, 0.03), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.case-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.case-card-featured {
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.96), rgba(255, 252, 246, 0.9));
}

.case-brand {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.case-mini-logo {
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(17, 17, 20, 0.08);
  display: block;
  flex: 0 0 auto;
  height: 40px;
  object-fit: cover;
  overflow: hidden;
  width: 40px;
}

.case-head,
.plan-label {
  align-items: center;
  color: var(--text-faint);
  display: flex;
  font-size: 0.8rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.09em;
  margin-bottom: 1.35rem;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.case-category {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.case-card h3,
.service-row h3,
.pricing-card h3,
.form-shell h3,
.faq-question,
.testimonial-card blockquote {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.case-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 0.96;
  margin-bottom: 0.95rem;
  max-width: 12ch;
  position: relative;
  z-index: 1;
}

.case-card p {
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  max-width: 34ch;
  position: relative;
  z-index: 1;
}

.case-list,
.plan-features {
  color: var(--text-soft);
  display: grid;
  gap: 0.72rem;
  list-style: none;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.case-list li,
.plan-features li {
  align-items: flex-start;
  display: flex;
  gap: 0.7rem;
}

.case-list li::before,
.plan-features li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 7px;
  margin-top: 0.48rem;
  width: 7px;
}

.text-link {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  gap: 0.45rem;
  margin-top: auto;
  position: relative;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
  width: fit-content;
  z-index: 1;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.studio-layout {
  display: block;
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.studio-copy p {
  color: var(--text-soft);
  margin-inline: auto;
  margin-top: 1rem;
  max-width: 60ch;
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.value-row span {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.7rem 0.95rem;
}

.services-list {
  border-top: 1px solid rgba(17, 17, 20, 0.1);
  column-gap: clamp(2.4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1040px;
}

.service-row {
  border-bottom: 1px solid rgba(17, 17, 20, 0.1);
  padding: 1.25rem 0;
}

.service-row h3 {
  font-size: clamp(1.1rem, 1.65vw, 1.36rem);
  line-height: 1.16;
  margin-bottom: 0.32rem;
  transition: color 220ms var(--ease);
}

.service-row p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.58;
  max-width: 38ch;
}

.service-row:hover h3 {
  color: var(--accent);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.6rem;
  position: relative;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.pricing-card.is-featured {
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.98), rgba(255, 252, 246, 0.92));
  border-color: rgba(30, 94, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.plan-badge {
  align-self: flex-start;
  background: var(--accent);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.45rem 0.72rem;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2rem);
  line-height: 0.98;
  margin-bottom: 0.7rem;
}

.plan-price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  gap: 0.45rem;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0.8rem;
}

.plan-price span {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

.plan-copy {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  color: var(--text-soft);
  margin-top: 1.5rem;
}

.pricing-note a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.testimonial-card {
  min-height: 100%;
  padding: 1.5rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.testimonial-card blockquote {
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.testimonial-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  align-items: center;
  display: flex;
  font-size: clamp(1.12rem, 1.8vw, 1.3rem);
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.2rem 1.3rem;
  text-align: left;
  width: 100%;
}

.faq-question svg {
  color: var(--text-soft);
  flex: 0 0 auto;
  height: 22px;
  transition: transform 180ms var(--ease);
  width: 22px;
}

.faq-question svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms var(--ease);
}

.faq-answer p {
  color: var(--text-soft);
  padding: 0 1.3rem 1.25rem;
}

.contact-shell {
  display: grid;
  gap: clamp(1rem, 4vw, 2rem);
}

.contact-copy,
.form-shell {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-copy {
  background:
    radial-gradient(circle at top right, rgba(30, 94, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 246, 0.88));
}

.contact-copy p,
.form-shell > p {
  color: var(--text-soft);
  margin-top: 0.95rem;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.contact-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  min-height: 58px;
  padding: 0.9rem 1rem;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.contact-links a:hover {
  background: var(--white);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.form-shell h3 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 0.98;
}

.contact-form {
  margin-top: 1.4rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 18px;
  color: var(--text);
  min-height: 54px;
  padding: 0.95rem 1rem;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
  width: 100%;
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: rgba(30, 94, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(30, 94, 255, 0.08);
  outline: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(220, 38, 38, 0.36);
}

.field.has-success input,
.field.has-success select,
.field.has-success textarea {
  border-color: rgba(5, 150, 105, 0.3);
}

.field-message {
  color: #b42318;
  font-size: 0.82rem;
  min-height: 1rem;
}

.required-marker {
  color: #b42318;
}

.honeypot {
  left: -9999px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.form-status {
  font-size: 0.94rem;
  font-weight: 600;
  min-height: 1.4rem;
  padding-bottom: 0.4rem;
}

.form-status.is-success {
  color: #0f766e;
}

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

.submit-btn {
  min-width: 210px;
}

.submit-btn.is-loading {
  opacity: 0.82;
  pointer-events: none;
}

.btn-spinner {
  animation: spin 0.9s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-left-color: var(--white);
  border-radius: 50%;
  display: none;
  height: 16px;
  width: 16px;
}

.submit-btn.is-loading .btn-spinner {
  display: inline-flex;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-brand p,
.footer-col a,
.footer-col span,
.footer-bottom p,
.footer-legal button {
  color: var(--text-soft);
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 36ch;
}

.footer-col {
  display: grid;
  gap: 0.6rem;
}

.footer-col h3 {
  color: var(--text-faint);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.footer-col a,
.footer-legal button {
  transition: color 180ms var(--ease);
}

.footer-col a:hover,
.footer-legal button:hover {
  color: var(--text);
}

.footer-bottom {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.25rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-top,
.whatsapp-float {
  align-items: center;
  border-radius: 999px;
  bottom: 1.4rem;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  position: fixed;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  width: 54px;
  z-index: 950;
}

body.has-cookie-banner .scroll-top {
  bottom: 6.8rem;
}

.scroll-top {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  right: 1.4rem;
  transform: translateY(0.5rem);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.whatsapp-float:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.scroll-top svg {
  height: 18px;
  width: 18px;
}

.scroll-top path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-float {
  background: var(--success);
  color: var(--white);
  left: 1.4rem;
}

.whatsapp-float svg {
  height: 30px;
  width: 30px;
}

.modal-overlay {
  align-items: center;
  background: rgba(15, 15, 15, 0.4);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms var(--ease);
  z-index: 1500;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  max-height: min(82vh, 720px);
  max-width: 620px;
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  width: min(100%, 620px);
}

.modal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.modal-card p {
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.modal-card .btn {
  margin-top: 0.9rem;
  width: 100%;
}

.cookie-banner {
  align-items: center;
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  bottom: 1.4rem;
  box-shadow: var(--shadow-md);
  color: var(--text);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  max-width: 420px;
  opacity: 0;
  padding: 0.95rem 1rem;
  pointer-events: none;
  position: fixed;
  right: 1.4rem;
  transform: translateY(110%);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  width: calc(100% - 6rem);
  z-index: 1200;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--text-soft);
  font-size: 0.92rem;
  max-width: 28ch;
}

.cookie-banner button {
  background: #0071e3;
  border: 1px solid #0071e3;
  border-radius: 999px;
  color: var(--white);
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 700;
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.pricing-redirect {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.pricing-redirect a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

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

@media (min-width: 760px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .hero-layout,
  .section-header-split,
  .contact-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .hero-layout {
    align-items: center;
  }

  .work-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  }
}

@media (max-width: 1080px) {
  .nav-link {
    font-size: 0.88rem;
    padding-inline: 0.85rem;
  }

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

}

@media (max-width: 899px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    align-items: stretch;
    background: rgba(255, 252, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    gap: 0.55rem;
    inset: calc(var(--header-height) - 4px) 1rem auto;
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    visibility: hidden;
    z-index: 1040;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 0.9rem 1rem;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .nav-whatsapp {
    flex-basis: 46px;
    height: 46px;
    width: 46px;
  }

  .nav-whatsapp svg {
    height: 22px;
    width: 22px;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 0.5rem;
  }

  .mobile-nav-cta .btn {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-summary,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2.4rem);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }

  .hero-panel,
  .case-card,
  .pricing-card,
  .testimonial-card,
  .contact-copy,
  .form-shell,
  .faq-item {
    border-radius: 24px;
  }

  .hero-actions,
  .contact-cta-row {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-cta-row .btn,
  .submit-btn {
    width: 100%;
  }

  .scroll-top {
    right: 1rem;
  }

  .whatsapp-float {
    left: 1rem;
  }

  .cookie-banner {
    padding: 0.85rem 0.9rem;
    bottom: 1rem;
    left: 1rem;
    max-width: none;
    right: 1rem;
    width: auto;
  }

  body.has-cookie-banner .scroll-top,
  body.has-cookie-banner .whatsapp-float {
    bottom: 7.2rem;
  }

  body.has-cookie-banner .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.5rem);
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.6rem);
  }

  .hero-trust {
    gap: 0.5rem;
  }

  .trust-card {
    min-height: 92px;
    padding: 0.8rem 0.7rem;
  }

  .trust-card strong {
    font-size: 1.25rem;
  }

  .trust-card span:last-child {
    font-size: 0.78rem;
  }

  .hero-summary-card strong,
  .contact-copy p,
  .case-card p,
  .service-row p,
  .plan-copy,
  .testimonial-card p {
    font-size: 0.96rem;
  }

  .scroll-top,
  .whatsapp-float {
    bottom: 1rem;
    height: 50px;
    width: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Apple-inspired premium refresh */
:root {
  --bg: #f5f5f7;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-strong: #e8edf5;
  --text: #111114;
  --text-soft: rgba(17, 17, 20, 0.68);
  --text-faint: rgba(17, 17, 20, 0.46);
  --line: rgba(17, 17, 20, 0.1);
  --line-strong: rgba(17, 17, 20, 0.18);
  --accent: #1473e6;
  --accent-soft: rgba(20, 115, 230, 0.1);
  --success: #30d158;
  --shadow-sm: 0 12px 32px rgba(17, 17, 20, 0.07);
  --shadow-md: 0 24px 70px rgba(17, 17, 20, 0.11);
  --shadow-lg: 0 44px 120px rgba(17, 17, 20, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --header-height: 74px;
  --container: 1180px;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Manrope", "Segoe UI", sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Space Grotesk", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background:
    linear-gradient(135deg, rgba(20, 115, 230, 0.08) 0%, rgba(48, 209, 88, 0.04) 24%, transparent 48%),
    linear-gradient(180deg, #fbfbfd 0%, #ffffff 42%, #f5f5f7 100%);
  color: var(--text);
}

body::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 20, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 20, 0.035) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 58%);
  opacity: 0.42;
}

body,
h1,
h2,
h3,
h4,
p,
a,
button,
span,
strong,
blockquote,
label,
input,
textarea,
select {
  letter-spacing: 0 !important;
}

.site-header {
  background: rgba(251, 251, 253, 0.72);
  border-bottom-color: rgba(17, 17, 20, 0.04);
}

.site-header.is-scrolled {
  background: rgba(251, 251, 253, 0.9);
  box-shadow: 0 10px 40px rgba(17, 17, 20, 0.06);
}

.nav {
  min-height: var(--header-height);
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.68rem 0.9rem;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(17, 17, 20, 0.06);
  box-shadow: none;
}

.nav-whatsapp,
.btn-secondary,
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
}

.btn {
  min-height: 44px;
  padding: 0.68rem 1.35rem;
  transition:
    transform 360ms var(--ease),
    box-shadow 360ms var(--ease),
    background 360ms var(--ease),
    border-color 360ms var(--ease),
    color 360ms var(--ease);
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
}

.btn-primary {
  background: #0071e3;
  border: 1px solid #0071e3;
  box-shadow: none;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0077ed;
  border-color: #0077ed;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #0071e3;
  color: #006edb;
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(0, 113, 227, 0.08);
  border-color: #0077ed;
  color: #006edb;
  box-shadow: none;
}

.section {
  padding: 7rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-index,
.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.05rem;
}

.section-title {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.02;
  max-width: 12ch;
}

.section-copy {
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero {
  background: linear-gradient(180deg, #f2fbff 0%, #ffffff 72%);
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) 0 0;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 70%);
  bottom: 0;
  content: "";
  height: 14rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: -1;
}

.hero-layout {
  align-items: center;
  align-content: center;
  flex: 1;
  gap: clamp(1.1rem, 3vw, 2.2rem);
  grid-template-columns: minmax(0, 1fr);
  perspective: 1600px;
  text-align: center;
}

.hero-copy {
  justify-self: center;
  max-width: min(100%, 1280px);
  width: 100%;
}

.hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.65rem);
  font-weight: 600;
  line-height: 0.98;
  margin-inline: auto;
  max-width: calc(100vw - 2rem);
  width: max-content;
}

.hero .hero-hook {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 0.22em;
  justify-content: center;
  letter-spacing: 0;
  max-width: none;
  white-space: nowrap;
  width: auto;
}

.hero .hero-hook span {
  display: block;
}

.hero-lede {
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.48;
  margin: 0.65rem auto 0;
  max-width: 680px;
  text-wrap: balance;
}

.hero-actions {
  justify-content: center;
  margin: 1.1rem 0 0;
}

.hero-panel {
  align-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(20, 115, 230, 0.12), rgba(48, 209, 88, 0.06));
  backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  padding: 1.55rem;
}

.hero-panel::before {
  display: none;
}

.hero-panel p {
  font-size: 1.04rem;
  line-height: 1.62;
  max-width: 36ch;
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  isolation: isolate;
  margin: 0 auto;
  max-width: 1180px;
  overflow: visible;
  position: relative;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease), box-shadow 700ms var(--ease);
  width: min(100%, 1180px);
}

.hero-visual::before {
  display: none;
}

body.is-ready .hero-visual::before {
  animation: stageSheen 4.8s 1.1s var(--ease) both;
}

.hero-visual img {
  aspect-ratio: auto;
  filter: drop-shadow(0 42px 64px rgba(17, 17, 20, 0.11));
  height: auto;
  max-height: clamp(300px, 42vh, 430px);
  max-width: 100%;
  object-fit: contain;
  transform: none;
  width: auto;
}

.hero-visual figcaption {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 22px;
  bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.9rem;
  left: 1.2rem;
  max-width: min(460px, calc(100% - 2.4rem));
  padding: 0.8rem 1rem;
  position: absolute;
  z-index: 3;
}

.hero-visual figcaption span {
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-summary {
  gap: 1rem;
  margin-top: 1.35rem;
  padding-bottom: 3.2rem;
}

.hero-summary-card,
.case-card,
.pricing-card,
.testimonial-card,
.contact-copy,
.form-shell,
.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(17, 17, 20, 0.07);
}

.trust-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 17, 20, 0.08);
  border-radius: 20px;
}

.trust-card strong {
  font-size: 1.85rem;
}

.marquee {
  background: rgba(245, 245, 247, 0.72);
}

.marquee::before {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee::after {
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee span {
  color: rgba(17, 17, 20, 0.42);
  font-size: 1.08rem;
}

.studio,
.faq-section,
.contact-section {
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.72), rgba(255, 255, 255, 0.74));
}

.contact-shell {
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}

.contact-copy {
  text-align: center;
}

.contact-copy p {
  margin-inline: auto;
  max-width: 58ch;
}

.case-card,
.pricing-card,
.testimonial-card,
.contact-links a,
.faq-item {
  transition:
    transform 520ms var(--ease),
    box-shadow 520ms var(--ease),
    border-color 520ms var(--ease),
    background 520ms var(--ease);
}

.case-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  border-color: rgba(20, 115, 230, 0.16);
  box-shadow: 0 34px 90px rgba(17, 17, 20, 0.13);
  transform: translateY(-8px) scale(1.01);
}

.case-card::before {
  background: linear-gradient(135deg, rgba(20, 115, 230, 0.08), transparent 48%);
}

.case-card h3 {
  font-size: 2.15rem;
  line-height: 1.04;
  max-width: 13ch;
}

.pricing-card::after {
  background: linear-gradient(90deg, var(--accent), rgba(48, 209, 88, 0.72));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 1.5rem;
  opacity: 0;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.pricing-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.pricing-card {
  padding: 1.8rem;
}

.pricing-card.is-featured {
  background:
    linear-gradient(180deg, rgba(24, 24, 27, 0.96), rgba(17, 17, 20, 0.98)),
    linear-gradient(135deg, rgba(20, 115, 230, 0.22), rgba(48, 209, 88, 0.08));
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.pricing-card.is-featured .plan-label,
.pricing-card.is-featured .plan-copy,
.pricing-card.is-featured .plan-price span,
.pricing-card.is-featured .plan-features {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.is-featured .case-list li::before,
.pricing-card.is-featured .plan-features li::before {
  background: var(--success);
}

.pricing-card.is-featured .btn-primary {
  background: var(--white);
  color: #111114;
}

.plan-price {
  font-size: 2.65rem;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 1.45rem;
  line-height: 1.24;
}

.contact-copy {
  background:
    linear-gradient(135deg, rgba(20, 115, 230, 0.12), rgba(48, 209, 88, 0.06)),
    rgba(255, 255, 255, 0.88);
}

.form-shell h3,
.modal-card h2 {
  font-size: 2.1rem;
  line-height: 1.08;
}

.field input,
.field select,
.field textarea {
  border-color: rgba(17, 17, 20, 0.1);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(20, 115, 230, 0.48);
  box-shadow: 0 0 0 5px rgba(20, 115, 230, 0.11);
}

.site-footer {
  background: #f5f5f7;
}

.scroll-top,
.whatsapp-float,
.cookie-banner,
.modal-card {
  backdrop-filter: blur(24px) saturate(160%);
}

.reveal {
  filter: blur(10px);
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  transition-delay: calc(var(--i, 0) * 74ms);
}

.reveal.visible,
.reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes stageSheen {
  from {
    transform: translateX(0) skewX(-16deg);
  }

  to {
    transform: translateX(470%) skewX(-16deg);
  }
}

@media (max-width: 1080px) {
  .section-title {
    font-size: 3.5rem;
  }

  .hero h1 {
    font-size: 4.65rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    width: min(100%, 620px);
  }

  .hero-visual {
    margin-top: 0.4rem;
  }
}

@media (max-width: 899px) {
  .nav-links {
    background: rgba(251, 251, 253, 0.96);
    backdrop-filter: blur(24px) saturate(160%);
  }

  .hero-layout {
    gap: 1.3rem;
  }

  .hero-visual {
    border-radius: 0;
  }

  .hero-visual figcaption {
    bottom: 0.8rem;
    left: 0.8rem;
    max-width: calc(100% - 1.6rem);
  }
}

@media (max-width: 719px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 4.8rem 0;
  }

  .section-title {
    font-size: 2.7rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2.6rem);
  }

  .hero h1 {
    font-size: clamp(1.28rem, 6.7vw, 3.35rem);
    line-height: 1;
    max-width: none;
  }

  .hero .hero-hook {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0 0.22em;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: row;
    gap: 0.7rem;
    justify-content: center;
  }

  .hero-actions .btn {
    min-width: 0;
    padding-inline: 1.18rem;
    width: auto;
  }

  .hero-panel {
    padding: 1.1rem;
  }

  .partners-strip {
    padding: 2.2rem 0 2.6rem;
  }

  .partners-heading {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .partners-title {
    font-size: 1rem;
    max-width: none;
  }

  .partner-logo {
    width: 88px;
  }

  .whatsapp-float {
    display: none;
  }

  .hero-visual img {
    aspect-ratio: auto;
    max-height: 240px;
  }

  .hero-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .case-card h3 {
    font-size: 1.82rem;
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: 2.25rem;
  }

  .hero h1 {
    font-size: clamp(1.18rem, 6.2vw, 2.75rem);
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-card {
    min-height: auto;
    padding: 0.78rem 0.68rem;
  }

  .trust-card strong {
    font-size: 1.18rem;
  }

  .trust-card span:last-child {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-visual {
    border-radius: 0;
  }

  .whatsapp-float {
    opacity: 0.94;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track,
  .hero-visual,
  .hero-visual::before,
  .case-card,
  .pricing-card,
  .testimonial-card,
  .reveal {
    animation: none !important;
    filter: none !important;
    transform: none !important;
  }

  .partners-marquee {
    overflow-x: auto;
  }
}

/* Minimal Apple-style surfaces */
.hero-summary-card,
.trust-card,
.case-card,
.pricing-card,
.testimonial-card,
.contact-copy,
.form-shell,
.faq-item,
.contact-links a,
.modal-card,
.cookie-banner {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: none;
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(17, 17, 20, 0.04);
}

.case-card,
.pricing-card,
.testimonial-card,
.contact-links a,
.faq-item {
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.case-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.contact-links a:hover,
.faq-item:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 17, 20, 0.16);
  box-shadow: 0 6px 18px rgba(17, 17, 20, 0.06);
  transform: translateY(-1px);
}

.case-card::before,
.pricing-card::after {
  display: none;
}

.work-grid,
.pricing-grid,
.testimonial-grid {
  gap: 1rem;
}

.case-card,
.pricing-card,
.testimonial-card {
  padding: 1.35rem;
}

.case-card-featured,
.pricing-card.is-featured,
.contact-copy {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 115, 230, 0.18);
  box-shadow: 0 1px 2px rgba(17, 17, 20, 0.04);
  color: var(--text);
}

.case-head,
.plan-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.case-category {
  background: transparent;
  border: 0;
  color: var(--text-soft);
  padding: 0;
}

.case-mini-logo {
  border-color: rgba(17, 17, 20, 0.1);
  box-shadow: none;
  height: 34px;
  width: 34px;
}

.case-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.62rem);
  line-height: 1.12;
  margin-bottom: 0.65rem;
  max-width: none;
}

.case-card p {
  font-size: 0.95rem;
  line-height: 1.58;
  margin-bottom: 1rem;
  max-width: none;
}

.case-list,
.plan-features {
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.case-list li,
.plan-features li {
  gap: 0.58rem;
}

.case-list li::before,
.plan-features li::before {
  height: 5px;
  margin-top: 0.56rem;
  width: 5px;
}

.text-link {
  font-size: 0.88rem;
}

.pricing-card {
  min-height: 100%;
}

.pricing-card.is-featured .plan-label,
.pricing-card.is-featured .plan-copy,
.pricing-card.is-featured .plan-price span,
.pricing-card.is-featured .plan-features {
  color: var(--text-soft);
}

.pricing-card.is-featured .plan-features li::before {
  background: var(--accent);
}

.pricing-card.is-featured .btn-primary {
  background: var(--accent);
  color: var(--white);
}

.plan-badge {
  background: rgba(20, 115, 230, 0.08);
  border: 1px solid rgba(20, 115, 230, 0.14);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.34rem 0.5rem;
}

.pricing-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.14;
  margin-bottom: 0.65rem;
}

.plan-price {
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.plan-copy {
  font-size: 0.94rem;
  line-height: 1.58;
}

.testimonial-card blockquote {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.32;
}

.faq-question {
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  padding: 1rem 1.05rem;
}

.faq-answer p {
  padding: 0 1.05rem 1rem;
}

.contact-links a {
  border-radius: 8px;
  min-height: 52px;
}

.partner-logo {
  box-shadow: 0 4px 16px rgba(17, 17, 20, 0.05);
}

.contact-section .contact-shell {
  grid-template-columns: minmax(0, 820px);
}

.contact-section .contact-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(17, 17, 20, 0.1);
  border-bottom: 1px solid rgba(17, 17, 20, 0.1);
  box-shadow: none;
  margin-inline: auto;
  padding-inline: 0;
}

.contact-section .contact-cta-row {
  align-items: center;
  justify-content: center;
  margin-top: 1.45rem;
}

.contact-section .contact-cta-row .btn {
  justify-content: center;
  min-width: 160px;
}

.contact-section .contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  grid-template-columns: none;
  justify-content: center;
  margin-inline: auto;
  margin-top: 1.35rem;
  max-width: 680px;
}

.contact-section .contact-links a {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--text-soft);
  min-height: auto;
  padding: 0;
}

.contact-section .contact-links a:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--text);
  transform: none;
}

@media (max-width: 719px) {
  .case-card,
  .pricing-card,
  .testimonial-card,
  .contact-copy,
  .form-shell,
  .faq-item {
    border-radius: 8px;
  }

  .case-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.15rem;
  }

  .contact-section .contact-copy {
    padding-inline: 0;
  }

  .contact-section .contact-cta-row {
    flex-direction: row;
  }

  .contact-section .contact-cta-row .btn {
    min-width: min(152px, 46vw);
    width: auto;
  }
}

.nav-whatsapp,
.whatsapp-float {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.nav-whatsapp img,
.whatsapp-float img {
  display: block;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms var(--ease);
  width: 100%;
}

.nav-whatsapp:hover,
.whatsapp-float:hover {
  background: transparent;
}

.nav-whatsapp:hover img,
.whatsapp-float:hover img {
  transform: scale(1.06);
}

/* Mobile proportional pass only */
@media (max-width: 719px) {
  html {
    scroll-behavior: auto;
  }

  body::before {
    background-size: 96px 96px;
    opacity: 0.22;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .reveal,
  .reveal.visible,
  .reveal.is-visible {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav {
    min-height: var(--header-height);
  }

  .nav-logo {
    height: auto;
    max-height: 31px;
    width: min(136px, 42vw);
  }

  .menu-toggle {
    height: 44px;
    width: 44px;
  }

  .nav-links {
    border-radius: 16px;
    inset: calc(var(--header-height) + 0.5rem) 0.75rem auto;
    padding: 0.75rem;
  }

  .nav-link {
    border-radius: 10px;
    min-height: 46px;
    padding: 0.72rem 0.85rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .page-heading,
  .work-heading,
  .partners-heading {
    margin-bottom: 1.7rem;
  }

  .partners-title,
  .page-title,
  .work-title {
    font-size: clamp(1.04rem, 4.4vw, 1.2rem);
    line-height: 1.28;
    margin-inline: auto;
    max-width: 28ch;
    text-align: center;
  }

  .hero {
    min-height: 84svh;
    padding-top: calc(var(--header-height) + 1rem);
  }

  .hero-layout {
    align-content: center;
    flex: 1;
    justify-content: center;
    padding-bottom: clamp(2.2rem, 8vh, 4.2rem);
    padding-top: clamp(1.5rem, 5.5vh, 3.5rem);
  }

  .hero-copy {
    max-width: 370px;
  }

  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.25vw, 1.95rem);
    line-height: 1.08;
  }

  .hero .hero-hook {
    gap: 0 0.16em;
  }

  .hero-lede {
    font-size: clamp(0.98rem, 4.1vw, 1.08rem);
    line-height: 1.48;
    margin-top: 0.72rem;
    max-width: 32ch;
  }

  .hero-actions {
    gap: 0.62rem;
    margin-top: 1rem;
  }

  .hero-actions .btn,
  .contact-section .contact-cta-row .btn {
    font-size: 0.93rem;
    min-height: 48px;
    padding: 0.76rem 1rem;
  }

  .marquee {
    min-height: 60px;
  }

  .marquee span {
    font-size: 0.92rem;
  }

  .partners-strip {
    padding: 2rem 0;
  }

  .partner-logo {
    width: 78px;
  }

  .work-grid,
  .pricing-grid,
  .testimonial-grid,
  .faq-list {
    gap: 0.8rem;
  }

  .case-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.05rem;
  }

  .case-head {
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .case-brand {
    gap: 0.48rem;
  }

  .case-mini-logo {
    height: 32px;
    width: 32px;
  }

  .case-category,
  .case-year,
  .plan-label {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .case-card h3 {
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .case-card p,
  .plan-copy,
  .testimonial-card p,
  .contact-copy p,
  .studio-copy p {
    font-size: 0.93rem;
    line-height: 1.56;
  }

  .case-list,
  .plan-features {
    font-size: 0.88rem;
    gap: 0.48rem;
  }

  .text-link {
    font-size: 0.86rem;
  }

  .studio-layout {
    max-width: 100%;
  }

  .value-row {
    gap: 0.5rem;
    justify-content: center;
  }

  .value-row span {
    font-size: 0.78rem;
    padding: 0.55rem 0.68rem;
  }

  .services-list {
    max-width: 100%;
  }

  .service-row {
    padding: 1rem 0;
  }

  .service-row h3 {
    font-size: 1.08rem;
    line-height: 1.18;
    margin-bottom: 0.28rem;
  }

  .service-row p {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .plan-badge {
    font-size: 0.66rem;
    padding: 0.3rem 0.46rem;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
    line-height: 1.16;
  }

  .plan-price {
    font-size: 2rem;
  }

  .pricing-card .btn {
    min-height: 48px;
  }

  .testimonial-card blockquote {
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .faq-question {
    font-size: 1rem;
    line-height: 1.3;
    padding: 0.95rem 1rem;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 0 1rem 1rem;
  }

  .contact-section .contact-copy {
    padding-block: 2rem;
  }

  .contact-section .contact-copy p {
    margin-inline: auto;
    max-width: 32ch;
  }

  .contact-section .contact-cta-row {
    gap: 0.65rem;
    justify-content: center;
    margin-top: 1.25rem;
  }

  .contact-section .contact-links {
    gap: 0.42rem 0.95rem;
    margin-top: 1.15rem;
  }

  .contact-section .contact-links a {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-logo {
    max-width: 140px;
  }

  .scroll-top {
    bottom: 0.85rem;
    height: 44px;
    right: 0.85rem;
    width: 44px;
  }

  body.has-cookie-banner .scroll-top {
    bottom: 5.75rem;
  }

  .cookie-banner {
    align-items: center;
    border-radius: 12px;
    bottom: 0.7rem;
    gap: 0.65rem;
    left: 0.7rem;
    padding: 0.72rem;
    right: 0.7rem;
  }

  .cookie-banner p {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: none;
  }

  .cookie-banner button {
    font-size: 0.82rem;
    min-height: 38px;
    padding: 0.58rem 0.82rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.34rem, 6vw, 1.6rem);
  }

  .hero-actions .btn,
  .contact-section .contact-cta-row .btn {
    font-size: 0.88rem;
    padding-inline: 0.82rem;
  }

  .contact-section .contact-cta-row .btn {
    min-width: 136px;
  }
}

/* Final mobile-only refinement */
@media (max-width: 719px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 3.15rem 0;
  }

  .page-heading,
  .work-heading,
  .partners-heading {
    margin-bottom: 1.45rem;
  }

  .partners-title,
  .page-title,
  .work-title {
    font-size: clamp(1rem, 4vw, 1.12rem);
    line-height: 1.25;
  }

  .hero {
    min-height: 70svh;
    padding-top: calc(var(--header-height) + 0.55rem);
  }

  .hero-layout {
    padding-bottom: clamp(1.8rem, 6vh, 3rem);
    padding-top: clamp(1.1rem, 4vh, 2.4rem);
  }

  .hero .eyebrow,
  .hero .marquee {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.32rem, 5.8vw, 1.78rem);
    line-height: 1.1;
  }

  .hero .hero-hook {
    gap: 0 0.12em;
  }

  .hero-lede {
    font-size: clamp(0.9rem, 3.75vw, 1rem);
    line-height: 1.48;
    max-width: 30ch;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .hero-actions .btn,
  .pricing-card .btn,
  .contact-section .contact-cta-row .btn {
    font-size: 0.88rem;
    min-height: 44px;
    padding: 0.68rem 0.9rem;
  }

  .partners-strip {
    padding: 1.7rem 0;
  }

  .work-grid,
  .pricing-grid,
  .testimonial-grid,
  .faq-list {
    gap: 0.72rem;
  }

  .case-card,
  .pricing-card,
  .testimonial-card,
  .faq-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(17, 17, 20, 0.075);
    border-radius: 10px;
    box-shadow: none;
  }

  .case-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .faq-item:hover {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(17, 17, 20, 0.1);
    box-shadow: none;
    transform: none;
  }

  .case-card,
  .pricing-card,
  .testimonial-card {
    padding: 0.95rem;
  }

  .case-card-featured,
  .pricing-card.is-featured {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(20, 115, 230, 0.14);
    box-shadow: none;
  }

  .case-head {
    gap: 0.6rem;
    margin-bottom: 0.72rem;
  }

  .case-mini-logo {
    height: 28px;
    width: 28px;
  }

  .case-category,
  .case-year,
  .plan-label {
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .case-card h3 {
    font-size: 1.22rem;
    line-height: 1.14;
    margin-bottom: 0.48rem;
  }

  .case-card p,
  .plan-copy,
  .testimonial-card p,
  .contact-copy p,
  .studio-copy p,
  .service-row p {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .case-list,
  .plan-features {
    font-size: 0.84rem;
    gap: 0.42rem;
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .case-list li::before,
  .plan-features li::before {
    height: 4px;
    margin-top: 0.55rem;
    width: 4px;
  }

  .text-link {
    font-size: 0.82rem;
  }

  .service-row {
    padding: 0.88rem 0;
  }

  .service-row h3 {
    font-size: 1rem;
  }

  .pricing-card h3 {
    display: none;
  }

  .pricing-card {
    gap: 0;
  }

  .plan-badge {
    border-radius: 7px;
    font-size: 0.62rem;
    margin-bottom: 0.78rem;
    padding: 0.28rem 0.42rem;
  }

  .plan-label {
    margin-bottom: 0.52rem;
  }

  .plan-price {
    font-size: clamp(1.72rem, 8.4vw, 1.95rem);
    margin-bottom: 0.62rem;
  }

  .plan-price span {
    font-size: 0.82rem;
  }

  .plan-copy {
    margin-bottom: 0.95rem;
  }

  .pricing-note {
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.22rem, 5.6vw, 1.48rem);
  }

  .case-card,
  .pricing-card,
  .testimonial-card {
    padding: 0.88rem;
  }
}

/* Extra compact mobile pass, excluding the hero */
@media (max-width: 719px) {
  .section:not(.hero) {
    padding: 2.55rem 0;
  }

  .partners-strip {
    padding: 1.35rem 0;
  }

  .page-heading,
  .work-heading,
  .partners-heading {
    margin-bottom: 1.05rem;
  }

  .partners-title,
  .page-title,
  .work-title {
    font-size: clamp(0.92rem, 3.65vw, 1.04rem);
    line-height: 1.24;
    max-width: 30ch;
  }

  .partner-logo {
    width: 68px;
  }

  .partners-track {
    gap: 2.15rem;
  }

  .work-grid,
  .pricing-grid,
  .testimonial-grid,
  .faq-list {
    gap: 0.56rem;
  }

  .case-card,
  .pricing-card,
  .testimonial-card,
  .faq-item {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(17, 17, 20, 0.055);
    border-radius: 8px;
    box-shadow: none;
  }

  .case-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover,
  .faq-item:hover {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(17, 17, 20, 0.075);
    box-shadow: none;
  }

  .case-card,
  .pricing-card,
  .testimonial-card {
    padding: 0.78rem;
  }

  .case-card-featured,
  .pricing-card.is-featured {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(20, 115, 230, 0.1);
    box-shadow: none;
  }

  .case-head {
    gap: 0.48rem;
    margin-bottom: 0.56rem;
  }

  .case-brand {
    gap: 0.4rem;
  }

  .case-mini-logo {
    height: 25px;
    width: 25px;
  }

  .case-category,
  .case-year,
  .plan-label {
    font-size: 0.58rem;
    line-height: 1.18;
  }

  .case-card h3 {
    font-size: 1.08rem;
    line-height: 1.12;
    margin-bottom: 0.38rem;
  }

  .case-card p,
  .plan-copy,
  .testimonial-card p,
  .testimonial-card blockquote,
  .contact-copy p,
  .studio-copy p,
  .service-row p,
  .faq-answer p,
  .pricing-note {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .case-list,
  .plan-features {
    font-size: 0.78rem;
    gap: 0.34rem;
    line-height: 1.4;
    margin-bottom: 0.78rem;
  }

  .case-list li,
  .plan-features li {
    gap: 0.46rem;
  }

  .case-list li::before,
  .plan-features li::before {
    height: 3.5px;
    margin-top: 0.5rem;
    width: 3.5px;
  }

  .text-link {
    font-size: 0.78rem;
  }

  .studio-layout,
  .services-list,
  .contact-section .contact-copy {
    max-width: 100%;
  }

  .value-row {
    gap: 0.42rem;
  }

  .value-row span {
    font-size: 0.7rem;
    padding: 0.46rem 0.56rem;
  }

  .service-row {
    padding: 0.68rem 0;
  }

  .service-row h3 {
    font-size: 0.92rem;
    line-height: 1.16;
    margin-bottom: 0.2rem;
  }

  .pricing-card h3 {
    display: none;
  }

  .plan-badge {
    border-radius: 6px;
    font-size: 0.56rem;
    margin-bottom: 0.58rem;
    padding: 0.22rem 0.36rem;
  }

  .plan-label {
    margin-bottom: 0.42rem;
  }

  .plan-price {
    font-size: clamp(1.48rem, 7.5vw, 1.72rem);
    margin-bottom: 0.46rem;
  }

  .plan-price span {
    font-size: 0.72rem;
  }

  .plan-copy {
    margin-bottom: 0.72rem;
  }

  .pricing-card .btn,
  .contact-section .contact-cta-row .btn {
    font-size: 0.8rem;
    min-height: 40px;
    padding: 0.58rem 0.78rem;
  }

  .faq-question {
    font-size: 0.88rem;
    line-height: 1.22;
    padding: 0.76rem 0.82rem;
  }

  .faq-answer p {
    padding: 0 0.82rem 0.82rem;
  }

  .contact-section .contact-copy {
    padding-block: 1.45rem;
  }

  .contact-section .contact-cta-row {
    margin-top: 0.92rem;
  }

  .contact-section .contact-links {
    gap: 0.32rem 0.75rem;
    margin-top: 0.85rem;
  }

  .contact-section .contact-links a,
  .footer-col a,
  .footer-col span,
  .footer-bottom p,
  .footer-bottom button {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .site-footer {
    padding-top: 2.35rem;
  }

  .footer-grid {
    gap: 1.1rem;
  }

  .footer-logo {
    max-width: 118px;
  }

  .footer-bottom {
    gap: 0.7rem;
    padding-top: 1.1rem;
  }
}

@media (max-width: 380px) {
  .section:not(.hero) {
    padding: 2.25rem 0;
  }

  .case-card,
  .pricing-card,
  .testimonial-card {
    padding: 0.72rem;
  }
}

/* Partner reviews and final proportional card sizing */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.82rem;
}

.testimonial-author {
  align-items: center;
  display: flex;
  gap: 0.72rem;
  min-width: 0;
}

.testimonial-logo {
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 20, 0.09);
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.testimonial-author h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0.14rem;
}

.testimonial-card .testimonial-author p {
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.testimonial-stars {
  color: #e9a400;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.testimonial-card blockquote {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.pricing-card .plan-badge {
  margin: 0;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.pricing-card.is-featured .plan-label {
  padding-right: 7rem;
}

@media (max-width: 719px) {
  .testimonial-card {
    gap: 0.58rem;
    padding: 0.82rem;
  }

  .testimonial-logo {
    height: 36px;
    width: 36px;
  }

  .testimonial-author {
    gap: 0.58rem;
  }

  .testimonial-author h3 {
    font-size: 0.88rem;
  }

  .testimonial-card .testimonial-author p {
    font-size: 0.65rem;
  }

  .testimonial-stars {
    font-size: 0.74rem;
  }

  .testimonial-card blockquote {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .pricing-card {
    padding: 0.86rem;
  }

  .pricing-card .plan-badge {
    right: 0.72rem;
    top: 0.72rem;
  }

  .pricing-card.is-featured .plan-label {
    padding-right: 5.8rem;
  }

  .plan-label {
    font-size: 0.62rem;
    margin-bottom: 0.42rem;
  }

  .plan-price {
    font-size: 1.62rem;
    margin-bottom: 0.42rem;
  }

  .plan-copy {
    font-size: 0.79rem;
    line-height: 1.45;
    margin-bottom: 0.68rem;
  }

  .plan-features {
    font-size: 0.76rem;
    gap: 0.3rem;
    line-height: 1.38;
    margin-bottom: 0.72rem;
  }

  .pricing-card .btn {
    font-size: 0.78rem;
    min-height: 40px;
    padding: 0.56rem 0.72rem;
  }
}

@media (max-width: 380px) {
  .testimonial-card,
  .pricing-card {
    padding: 0.76rem;
  }

  .testimonial-card blockquote,
  .plan-copy,
  .plan-features {
    font-size: 0.74rem;
  }
}
