:root {
  --ink: #111322;
  --muted: #697082;
  --paper: #fff6fb;
  --white: #ffffff;
  --line: rgba(16, 21, 34, 0.12);
  --teal: #00a99d;
  --teal-dark: #05635f;
  --coral: #ff5a8a;
  --gold: #f4b95f;
  --blue: #3457ff;
  --rose: #ff8ab3;
  --lilac: #c9a5ff;
  --mint: #9df2df;
  --shadow: 0 24px 70px rgba(17, 19, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff6fb 0%, #f7fbff 36%, #fff2f8 100%);
}

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

button,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(17, 19, 34, 0.58);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 12px 30px rgba(16, 21, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  font-size: 0.73rem;
  color: currentColor;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 80svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 440px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 112px clamp(18px, 6vw, 80px) 44px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 90, 138, 0.34) 0%, transparent 34%),
    linear-gradient(245deg, rgba(0, 169, 157, 0.28) 0%, transparent 34%),
    linear-gradient(90deg, rgba(17, 19, 34, 0.99) 0%, rgba(17, 19, 34, 0.93) 58%, rgba(255, 246, 251, 0.98) 58%, rgba(255, 246, 251, 0.98) 100%),
    linear-gradient(135deg, rgba(52, 87, 255, 0.18), rgba(255, 90, 138, 0.14) 44%, rgba(244, 185, 95, 0.16)),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 92px clamp(18px, 6vw, 80px) 36px auto;
  width: min(38vw, 520px);
  pointer-events: none;
  border: 1px solid rgba(17, 19, 34, 0.10);
  background:
    linear-gradient(135deg, rgba(255, 90, 138, 0.18), rgba(0, 169, 157, 0.14)),
    repeating-linear-gradient(90deg, rgba(17, 19, 34, 0.08) 0 1px, transparent 1px 22px);
  opacity: 0.38;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--teal));
  box-shadow: 0 16px 34px rgba(255, 90, 138, 0.24), 0 10px 28px rgba(0, 169, 157, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff3f7b, var(--teal-dark));
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats span {
  min-width: 150px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.3;
}

.hero-stats strong {
  display: block;
  color: var(--white);
}

.identity-panel {
  position: relative;
  z-index: 1;
  align-self: end;
}

.hero-service-panel {
  align-self: center;
  display: grid;
  gap: 14px;
  color: var(--ink);
}

.hero-panel-header {
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: 8px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 138, 0.26), transparent 42%),
    linear-gradient(245deg, rgba(157, 242, 223, 0.16), transparent 36%),
    linear-gradient(145deg, var(--ink), #261936 48%, #0e4d55 100%);
  box-shadow: var(--shadow);
}

.hero-panel-header span {
  display: block;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel-header strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.hero-panel-header p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-panel-grid span {
  min-height: 86px;
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 251, 0.88));
  box-shadow: 0 12px 30px rgba(16, 21, 34, 0.08);
  font-weight: 800;
}

.hero-panel-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 1.08rem;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 28%;
}

.identity-copy {
  width: calc(100% - 34px);
  margin: -54px auto 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(16, 21, 34, 0.12);
}

.identity-copy span,
.identity-copy strong {
  display: block;
}

.identity-copy span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-copy strong {
  margin-top: 6px;
  font-size: 1.18rem;
}

.identity-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.identity-tags span {
  border: 1px solid rgba(0, 127, 115, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-preview {
  margin-top: 18px;
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 251, 0.88));
  box-shadow: 0 18px 44px rgba(16, 21, 34, 0.13);
}

.service-preview span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-preview strong {
  display: block;
  margin-top: 6px;
  font-size: 1.12rem;
}

.service-preview p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.preview-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.preview-buttons button {
  min-height: 38px;
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.80);
  cursor: pointer;
  font-weight: 800;
}

.preview-buttons button.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--coral), var(--teal));
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 90, 138, 0.24), rgba(0, 169, 157, 0.18), rgba(52, 87, 255, 0.18)),
    var(--ink);
  color: var(--white);
}

.intro-strip p {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  line-height: 1.5;
}

.intro-strip a {
  flex: 0 0 auto;
  color: var(--mint);
  font-weight: 800;
}

.section {
  padding: 74px clamp(18px, 6vw, 80px);
}

.motion-strip {
  overflow: hidden;
  padding: 12px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--coral), var(--teal), var(--blue), var(--rose), var(--gold));
}

.motion-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: scrollServices 24s linear infinite;
}

.motion-track span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(16, 21, 34, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes scrollServices {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

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

.section-heading p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(255, 90, 138, 0.28), transparent 38%),
    linear-gradient(250deg, rgba(0, 169, 157, 0.24), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, #111322, #271936 46%, #0e4d55);
}

.profile-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 34px 90px rgba(255, 90, 138, 0.14), var(--shadow);
}

.profile-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 52% 24%;
  filter: saturate(1.02) contrast(1.02);
}

.profile-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(16, 21, 34, 0.76));
}

.profile-badge {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 90, 138, 0.18), rgba(0, 169, 157, 0.13)),
    rgba(17, 19, 34, 0.74);
  backdrop-filter: blur(14px);
}

.profile-badge span,
.profile-badge strong {
  display: block;
}

.profile-badge span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-badge strong {
  margin-top: 6px;
  font-size: 1.35rem;
}

.profile-content h2 {
  max-width: 920px;
}

.profile-content p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.profile-section .eyebrow {
  color: var(--mint);
}

.profile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 14px;
}

.profile-tabs button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.profile-tabs button.is-active {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--rose), var(--mint));
}

.profile-panel {
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 90, 138, 0.08)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.profile-panel strong {
  display: block;
  font-size: 1.3rem;
}

.profile-panel p {
  margin: 10px 0 0;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.profile-metrics span {
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(157, 242, 223, 0.07));
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.35;
}

.profile-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 1.35rem;
}

.mockup-section {
  padding-top: 44px;
  padding-bottom: 44px;
  background:
    linear-gradient(120deg, rgba(255, 90, 138, 0.18), transparent 36%),
    linear-gradient(245deg, rgba(0, 169, 157, 0.18), transparent 38%),
    linear-gradient(135deg, #fff6fb, #effaf8 58%, #fff0f7);
}

#servicos {
  background:
    linear-gradient(135deg, rgba(0, 169, 157, 0.12), rgba(52, 87, 255, 0.08), rgba(255, 90, 138, 0.14)),
    #fff6fb;
}

.showcase-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 21, 34, 0.10);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(255, 90, 138, 0.30), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(150deg, var(--ink), #261936 54%, var(--teal-dark));
  box-shadow: var(--shadow);
}

.showcase-copy .eyebrow {
  color: var(--mint);
}

.showcase-copy h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
}

.showcase-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.showcase-chips span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 14px;
}

.mockup-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(16, 21, 34, 0.13);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mockup-card:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.mockup-card:nth-child(2) {
  grid-column: span 3;
  grid-row: span 1;
}

.mockup-card:nth-child(3),
.mockup-card:nth-child(4) {
  grid-column: span 3;
}

.mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.mockup-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f3eee7;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.mockup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 21, 34, 0.04), rgba(16, 21, 34, 0.78));
}

.mockup-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.16) contrast(1.08);
}

.mockup-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
}

.mockup-card span {
  display: inline-flex;
  margin-bottom: 9px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), #fff0f7);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mockup-card strong {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.08;
}

.mockup-card p {
  max-width: 360px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.tab.is-active {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 245px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 21, 34, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--teal), var(--blue));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 127, 115, 0.36);
  box-shadow: var(--shadow);
}

.service-card.is-active {
  border-color: rgba(255, 90, 138, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 90, 138, 0.12), rgba(0, 169, 157, 0.10)),
    var(--white);
}

.service-card.is-active::before,
.service-card:hover::before {
  opacity: 1;
}

.service-card:focus-visible {
  outline: 3px solid rgba(0, 127, 115, 0.34);
  outline-offset: 3px;
}

.service-card.is-hidden {
  display: none;
}

.service-number {
  color: var(--gold);
  font-weight: 800;
}

.service-card p,
.result-grid p,
.timeline-item p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.54fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(0, 127, 115, 0.22);
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(255, 90, 138, 0.30), transparent 40%),
    linear-gradient(245deg, rgba(0, 169, 157, 0.22), transparent 38%),
    linear-gradient(135deg, var(--ink), #281936 58%, var(--teal-dark));
  box-shadow: var(--shadow);
}

.service-detail-panel .eyebrow {
  color: var(--mint);
}

.service-detail-panel h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.service-detail-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.service-detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-panel li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 90, 138, 0.11), rgba(255, 255, 255, 0.96) 42%, rgba(0, 169, 157, 0.10)),
    var(--white);
}

.timeline {
  border-left: 2px solid rgba(0, 127, 115, 0.18);
}

.timeline-item {
  position: relative;
  padding: 0 0 34px 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(0, 127, 115, 0.12);
}

.timeline-item span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.packages-section {
  background:
    linear-gradient(120deg, rgba(255, 90, 138, 0.22), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, rgba(17, 19, 34, 0.97), rgba(40, 25, 54, 0.96) 48%, rgba(5, 99, 95, 0.96)),
    var(--ink);
  color: var(--white);
}

.packages-section .eyebrow {
  color: var(--mint);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background 0.22s ease;
}

.package-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.74;
}

.package-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.package-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 800;
}

.package-card h3 {
  margin-top: 36px;
  font-size: 1.45rem;
}

.package-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.accent-coral::after {
  background: var(--coral);
}

.accent-teal::after {
  background: var(--teal);
}

.accent-blue::after {
  background: var(--blue);
}

.results-section {
  background:
    linear-gradient(135deg, rgba(52, 87, 255, 0.12), rgba(255, 90, 138, 0.16), rgba(0, 169, 157, 0.12)),
    var(--paper);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.result-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(16, 21, 34, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.result-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.result-grid strong {
  display: block;
  font-size: 1.08rem;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(255, 90, 138, 0.24), transparent 36%),
    linear-gradient(245deg, rgba(0, 169, 157, 0.24), transparent 38%),
    var(--ink);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  color: var(--white);
}

.contact-panel h2 {
  max-width: 740px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.contact-builder {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-builder label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-builder select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 18px 34px rgba(0, 127, 115, 0.34);
  font-weight: 800;
}

@media (max-width: 980px) {
  .services-grid,
  .result-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
    background:
      linear-gradient(180deg, rgba(16, 21, 34, 0.98), rgba(16, 21, 34, 0.92) 58%, rgba(255, 250, 244, 0.98) 58%),
      var(--paper);
  }

  .identity-panel {
    max-width: 440px;
  }

  .showcase-shell {
    grid-template-columns: 1fr;
  }

  .profile-section {
    grid-template-columns: 1fr;
  }

  .profile-photo-card {
    min-height: 480px;
    max-width: 520px;
  }

  .profile-photo-card img {
    min-height: 480px;
  }

  .mockup-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .mockup-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mockup-card:nth-child(2),
  .mockup-card:nth-child(3),
  .mockup-card:nth-child(4) {
    grid-column: span 2;
  }

  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-detail-panel {
    grid-template-columns: 1fr;
  }

  .service-detail-panel .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 44px;
  }

  .hero-actions,
  .intro-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats span {
    min-width: calc(50% - 8px);
  }

  .section {
    padding: 64px 18px;
  }

  .profile-photo-card,
  .profile-photo-card img {
    min-height: 420px;
  }

  .profile-metrics {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .result-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .mockup-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mockup-card:nth-child(1),
  .mockup-card:nth-child(2),
  .mockup-card:nth-child(3),
  .mockup-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 255px;
  }

  .service-card,
  .result-grid article,
  .package-card {
    min-height: 0;
  }

  .motion-track {
    animation-duration: 18s;
  }

  .portrait-frame {
    border-width: 7px;
    border-radius: 22px;
  }

  .identity-copy {
    width: calc(100% - 20px);
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    display: none;
  }

  .brand small {
    display: none;
  }
}
