:root {
  --bg: #f6f8fc;
  --bg-soft: #edf2fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #0f1f3a;
  --muted: #54657f;
  --line: rgba(103, 134, 184, 0.26);
  --brand: #0aa57d;
  --brand-2: #2f6fff;
  --gold: #f0b35d;
  --danger-soft: rgba(240, 179, 93, 0.16);
  --radius: 18px;
  --shadow: 0 16px 34px rgba(25, 52, 96, 0.12);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(840px 460px at 0% 0%, rgba(47, 111, 255, 0.15), transparent 65%),
    radial-gradient(760px 420px at 100% 10%, rgba(10, 165, 125, 0.14), transparent 66%),
    linear-gradient(165deg, #fbfdff 0%, #f2f7ff 52%, #f8fbff 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
.brand {
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  margin: 0 0 0.66rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

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

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}

.bg-glow-1 {
  background: rgba(92, 142, 255, 0.38);
  top: -190px;
  right: -120px;
}

.bg-glow-2 {
  background: rgba(65, 205, 167, 0.34);
  bottom: -220px;
  left: -180px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 251, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(98, 127, 172, 0.16);
  z-index: 40;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  font-size: 1.06rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.nav-cta {
  color: #ffffff !important;
  background: linear-gradient(120deg, var(--brand-2), #1d5fff);
  padding: 0.62rem 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(33, 99, 255, 0.25);
}

.section {
  padding: 5.2rem 0;
  position: relative;
}

.section-accent {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 255, 0.74)),
    radial-gradient(440px 240px at 0% 0%, rgba(57, 123, 255, 0.12), transparent 65%);
  border-top: 1px solid rgba(122, 153, 201, 0.16);
  border-bottom: 1px solid rgba(122, 153, 201, 0.16);
}

.hero {
  padding-top: 5.9rem;
  padding-bottom: 4.4rem;
}

.hero .container {
  width: min(100% - 2.5rem, 1380px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 300px at 68% 30%, rgba(28, 112, 255, 0.15), transparent 70%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.38), rgba(242, 247, 255, 0.18));
  border-bottom: 1px solid rgba(104, 138, 194, 0.15);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 0.8rem 0;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  max-width: 9.2ch;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #0f2242;
  margin-bottom: 1rem;
}

.hero-title-emphasis {
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(110deg, #245fff, #1189ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(240, 179, 93, 0.48);
  background: linear-gradient(120deg, rgba(255, 247, 232, 0.94), rgba(255, 236, 206, 0.82));
  color: #8d5a1b;
  border-radius: 999px;
  padding: 0.46rem 0.86rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f6fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  color: #334f76;
  font-size: 1.09rem;
  max-width: 48ch;
  margin-bottom: 0.9rem;
}

.support-line {
  color: #203960;
  font-weight: 600;
  font-size: 1.03rem;
  max-width: 46ch;
}

.hero-social-proof {
  margin-top: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.82rem;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  margin-right: -0.5rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(25, 58, 106, 0.14);
}

.proof-avatars span:nth-child(1) {
  background: linear-gradient(130deg, #2f6fff, #4f86ff);
}

.proof-avatars span:nth-child(2) {
  background: linear-gradient(130deg, #0aa57d, #1bc99a);
}

.proof-avatars span:nth-child(3) {
  background: linear-gradient(130deg, #efab52, #f7c77b);
}

.proof-meta p {
  margin: 0;
  font-weight: 700;
  color: #1f3a60;
}

.proof-meta small {
  display: block;
  margin-top: 0.08rem;
  color: #5f7699;
  font-size: 0.82rem;
}

.hero-proof,
.panel,
.service-card,
.case-card,
.process-item,
.testimonial,
.why-list,
.insights-box,
.final-cta,
.result-card,
.contact-info,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  display: grid;
  gap: 1rem;
}

.portrait-frame {
  position: relative;
  min-height: 640px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(99, 132, 185, 0.4);
  box-shadow: 0 30px 46px rgba(22, 49, 95, 0.23);
  background:
    radial-gradient(440px 240px at 75% 16%, rgba(47, 111, 255, 0.34), transparent 68%),
    radial-gradient(420px 260px at 0% 90%, rgba(10, 165, 125, 0.28), transparent 70%),
    linear-gradient(160deg, #dbe9ff, #e8f2ff 54%, #d9ecff);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 38, 77, 0.02), rgba(14, 38, 77, 0.22));
  pointer-events: none;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.hero-proof-card {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  max-width: 320px;
  background: linear-gradient(145deg, rgba(12, 35, 70, 0.9), rgba(24, 64, 110, 0.86));
  border: 1px solid rgba(142, 181, 247, 0.36);
  border-radius: 24px;
  padding: 1.05rem;
  box-shadow: 0 16px 34px rgba(15, 34, 68, 0.35);
  backdrop-filter: blur(6px);
}

.hero-proof-card h2 {
  font-size: 1.23rem;
  color: #f2f8ff;
}

.hero-proof-card p {
  color: #d8e7ff;
  margin-bottom: 0.9rem;
}

.hero-proof-card .btn-primary {
  background: linear-gradient(120deg, #11c899, #0eb487);
  box-shadow: 0 10px 24px rgba(8, 157, 120, 0.28);
}

.hero-proof {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.hero-proof::before {
  content: "";
  position: absolute;
  inset: auto -24% -52% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 255, 0.18), transparent 66%);
}

.hero-proof h2 {
  font-size: 1.08rem;
  margin-bottom: 1rem;
}

.hero-metrics {
  display: grid;
  gap: 0.8rem;
}

.metric-card {
  border: 1px solid rgba(108, 145, 206, 0.3);
  border-radius: 12px;
  padding: 0.8rem;
  background: linear-gradient(180deg, rgba(250, 253, 255, 0.95), rgba(242, 249, 255, 0.9));
}

.metric-value {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: #1a3f73;
}

.metric-label {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 0.3rem;
}

.platform-strip span {
  border: 1px solid rgba(98, 134, 189, 0.32);
  background: rgba(255, 255, 255, 0.95);
  color: #214778;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

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

.hero-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  border: 1px solid rgba(106, 141, 196, 0.36);
  color: #295189;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.77rem;
  background: linear-gradient(130deg, #ffffff, #f4f9ff);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.82rem 1.2rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, #0bb086, #08c99a);
  box-shadow: 0 12px 28px rgba(6, 162, 123, 0.24);
}

.btn-secondary {
  color: #214171;
  border: 1px solid rgba(97, 132, 188, 0.34);
  background: #ffffff;
}

.section-head {
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  max-width: 24ch;
}

.panel {
  padding: 1.5rem;
}

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

.grid-list p {
  margin: 0;
  padding: 0.88rem;
  background: #f6faff;
  border-radius: 12px;
  border: 1px solid rgba(109, 145, 206, 0.22);
  color: #335378;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.46rem;
  position: relative;
  color: #314f74;
}

.check-list li::before {
  content: "";
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), #5d95ff);
  position: absolute;
  top: 0.48rem;
  left: 0.32rem;
}

.result-card {
  padding: 1.25rem;
  max-width: 270px;
}

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

.service-card,
.case-card,
.process-item {
  padding: 1.15rem;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover,
.case-card:hover,
.process-item:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 123, 203, 0.56);
  box-shadow: 0 20px 34px rgba(28, 58, 106, 0.18);
}

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

.case-card ul {
  display: grid;
  gap: 0.58rem;
  color: var(--muted);
}

.tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #2f6fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text-link {
  margin-top: 0.9rem;
  display: inline-flex;
  color: #0a9f7a;
  font-weight: 700;
}

.text-link:hover {
  color: #048c6a;
}

/* Process Interactive Flow */
#process {
  background:
    radial-gradient(620px 320px at 10% 8%, rgba(75, 118, 214, 0.15), transparent 72%),
    radial-gradient(560px 320px at 90% 84%, rgba(255, 90, 139, 0.08), transparent 78%),
    linear-gradient(165deg, #121a28 0%, #101823 62%, #0f1621 100%);
  border-top: 1px solid rgba(174, 195, 232, 0.1);
  border-bottom: 1px solid rgba(174, 195, 232, 0.1);
}

#process .eyebrow {
  color: #96a7c5;
}

#process .section-head h2 {
  color: #f2f7ff;
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 1rem;
  align-items: start;
}

.process-steps-wrap {
  border: 1px solid rgba(183, 201, 236, 0.18);
  border-radius: 18px;
  background: linear-gradient(154deg, rgba(23, 33, 50, 0.92), rgba(15, 24, 39, 0.88));
  box-shadow: 0 18px 30px rgba(5, 10, 20, 0.28);
  padding: 0.96rem;
  position: relative;
}

.process-rail {
  position: absolute;
  left: 1.45rem;
  top: 1.48rem;
  bottom: 1.5rem;
  width: 2px;
  border-radius: 999px;
  background: rgba(152, 173, 212, 0.28);
  overflow: hidden;
}

.process-rail-fill {
  display: block;
  width: 100%;
  height: 34%;
  background: linear-gradient(180deg, #ff6a96, #7ea5ff);
  transition: height 420ms ease;
}

.process-steps {
  display: grid;
  gap: 0.68rem;
}

.process-step-card {
  width: 100%;
  text-align: left;
  padding: 0.72rem 0.76rem 0.72rem 2.06rem;
  border: 1px solid rgba(181, 200, 235, 0.16);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(22, 31, 49, 0.86), rgba(14, 23, 37, 0.8));
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  position: relative;
}

.process-step-card:hover,
.process-step-card:focus-visible {
  border-color: rgba(255, 130, 171, 0.35);
  transform: translateY(-1px);
}

.process-step-card:focus-visible {
  outline: 2px solid rgba(255, 123, 164, 0.58);
  outline-offset: 2px;
}

.process-step-card.active {
  border-color: rgba(255, 127, 169, 0.46);
  box-shadow: 0 14px 24px rgba(8, 12, 22, 0.28);
}

.process-step-card::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(168, 186, 220, 0.4);
}

.process-step-card.active::before {
  background: linear-gradient(130deg, #ff6290, #ff8cb1);
  box-shadow: 0 0 0 5px rgba(255, 98, 144, 0.15);
}

.process-step-number {
  display: block;
  margin-bottom: 0.2rem;
  color: #8fa4c8;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-step-title {
  display: block;
  color: #edf4ff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.process-step-summary {
  display: block;
  margin-top: 0.18rem;
  color: #a7b7d2;
  font-size: 0.82rem;
  line-height: 1.4;
}

.process-detail {
  border: 1px solid rgba(255, 124, 167, 0.28);
  border-radius: 18px;
  background: linear-gradient(152deg, rgba(29, 40, 61, 0.95), rgba(19, 29, 45, 0.92));
  box-shadow: 0 22px 34px rgba(5, 10, 20, 0.34);
  padding: 1.06rem;
}

.process-detail-kicker {
  margin: 0;
  color: #9eb3d6;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-detail h3 {
  margin: 0.44rem 0 0.42rem;
  color: #f4f9ff;
  font-size: 1.32rem;
}

.process-detail p {
  margin: 0;
  color: #b5c4dd;
  line-height: 1.6;
}

.process-detail-list {
  margin: 0.86rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.process-detail-list li {
  margin: 0;
  color: #dbe6fa;
  padding: 0.54rem 0.62rem 0.54rem 1.58rem;
  border: 1px solid rgba(181, 200, 235, 0.16);
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(22, 32, 49, 0.86), rgba(14, 23, 37, 0.8));
  position: relative;
}

.process-detail-list li::before {
  content: "";
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff5f8b, #ff8db0);
  left: 0.64rem;
  top: 0.88rem;
}

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

.step {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(10, 165, 125, 0.15), rgba(47, 111, 255, 0.2));
  border: 1px solid rgba(79, 126, 207, 0.36);
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.testimonial {
  padding: 1.6rem;
  margin: 0 0 1rem;
  font-size: 1.12rem;
  color: #23456f;
}

.why-list {
  padding: 1.4rem;
}

.insights-box {
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.final-cta {
  padding: 2rem;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  margin-inline: auto;
  max-width: 20ch;
}

.final-cta p {
  max-width: 58ch;
  margin: 0 auto 1.3rem;
  color: var(--muted);
}

.contact-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-info,
.contact-form {
  padding: 1.35rem;
}

.contact-info p {
  color: #34547a;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.92rem;
  color: #274d84;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(101, 135, 189, 0.36);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #f8fbff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2f6fff;
  box-shadow: 0 0 0 3px rgba(47, 111, 255, 0.18);
}

.contact-form button {
  width: fit-content;
  border: none;
  margin-top: 0.4rem;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: #0a9f7a;
  font-weight: 500;
  min-height: 1.4rem;
}

.site-footer {
  border-top: 1px solid rgba(122, 153, 201, 0.2);
  padding: 1.2rem 0;
  text-align: center;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(99, 134, 191, 0.3);
  border-radius: 10px;
  background: rgba(248, 251, 255, 0.9);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #254676;
  margin: 4px auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.tilt {
  transform-style: preserve-3d;
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .case-grid,
  .process-grid,
  .grid-list,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col .result-card {
    max-width: none;
  }

  .insights-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .portrait-frame {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(107, 141, 196, 0.34);
    border-radius: 14px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .card-grid,
  .case-grid,
  .process-grid,
  .grid-list,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-social-proof {
    align-items: flex-start;
  }

  .proof-meta small {
    line-height: 1.4;
  }

  .portrait-frame {
    min-height: 470px;
  }

  .hero-proof-card {
    position: static;
    margin: 0.9rem;
    max-width: none;
  }

  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 4.7rem;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
body {
  font-family: "Poppins", sans-serif;
}

.site-header {
  background: rgba(20, 24, 34, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 0;
  padding-block: 14px;
  width: min(100% - 2.4rem, 1360px);
  margin-inline: auto;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.74rem;
  color: #d8deeb;
  font-weight: 700;
}

.brand-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(8, 12, 18, 0.32);
}

.brand-name {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.site-nav {
  gap: 1.35rem;
  align-items: center;
}

.site-nav a {
  color: #d8deeb;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
}

.nav-cta {
  background: linear-gradient(120deg, #fd355f, #ff4d7e);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(253, 53, 95, 0.3);
  border-radius: 14px;
  padding: 0.82rem 1.2rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.96rem !important;
  font-weight: 700 !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.hero {
  padding-top: 6.4rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(680px 420px at 82% 30%, rgba(255, 70, 120, 0.16), transparent 70%),
    radial-gradient(560px 340px at 10% 0%, rgba(93, 123, 255, 0.12), transparent 75%),
    linear-gradient(130deg, #171b25 0%, #1d2331 55%, #1b212f 100%);
}

.hero::before {
  background: none;
  border: 0;
}

.hero .container {
  width: min(100% - 2.5rem, 1360px);
}

.hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.6rem;
  align-items: start;
}

.hero-copy {
  padding: 0.15rem 0 0;
}

.hero-kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #9ba7be;
  margin: 0 0 1.2rem;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2.15rem, 4.2vw, 4.3rem);
  max-width: 100%;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 0.72rem;
}

.hero-title-emphasis {
  display: block;
  white-space: nowrap;
  background: linear-gradient(120deg, #ff3965, #ff5f86);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.status-pill,
.hero-social-proof,
.hero-badges,
.hero-proof,
.platform-strip {
  display: none !important;
}

.lead {
  color: #adb7ca;
  max-width: 49ch;
  font-size: 1.03rem;
  margin-bottom: 0.62rem;
}

.support-line {
  color: #d8e0f0;
  max-width: 45ch;
  font-size: 1.02rem;
  margin-bottom: 0.88rem;
}

.hero-cta {
  margin-top: 1rem;
  gap: 0.8rem;
}

.btn {
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(120deg, #ff3a65, #ff5f85);
  box-shadow: 0 14px 30px rgba(255, 66, 111, 0.3);
}

.btn-secondary {
  border-color: rgba(195, 207, 233, 0.26);
  color: #eef3ff;
  background: rgba(32, 40, 58, 0.8);
}

.hero-toolbox {
  margin-top: 1.1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 760px;
}

.tool-group p {
  margin: 0 0 0.68rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #98a4ba;
}

.tool-icons {
  display: flex;
  gap: 0.56rem;
  flex-wrap: wrap;
}

.tool-icons span {
  min-width: 4rem;
  height: 2.55rem;
  padding: 0 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(201, 213, 238, 0.2);
  background: linear-gradient(145deg, #212839, #1a202d);
  color: #eef3ff;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(7, 10, 16, 0.3);
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-icons span:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 241, 255, 0.36);
  box-shadow: 0 14px 24px rgba(8, 12, 20, 0.36);
}

.mini-trust {
  margin-top: 0.72rem;
  display: flex;
  gap: 0.54rem;
  flex-wrap: wrap;
}

.mini-trust span {
  min-height: 2.2rem;
  padding: 0.46rem 0.72rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(208, 220, 245, 0.2);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(31, 38, 54, 0.94), rgba(25, 32, 46, 0.9));
  color: #dbe4f5;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
}

.mini-trust b {
  color: #ffffff;
}

.chip-icon {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.42rem;
  transform: translateY(-1px);
  background: #ff6990;
  box-shadow: 0 0 0 3px rgba(255, 105, 144, 0.18);
}

.chip-icon-2 { border-radius: 2px; }
.chip-icon-3 { transform: translateY(-1px) rotate(45deg); border-radius: 2px; }
.chip-icon-4 { width: 0.54rem; height: 0.28rem; border-radius: 999px; }
.chip-icon-5 { width: 0.58rem; height: 0.58rem; border-radius: 50%; background: radial-gradient(circle, #ff6990 40%, #ff87a5 100%); }

/* About / Problem Section Premium Pass */
#about {
  background:
    radial-gradient(540px 300px at 14% 18%, rgba(53, 89, 182, 0.2), transparent 72%),
    radial-gradient(500px 280px at 84% 85%, rgba(255, 88, 138, 0.1), transparent 74%),
    linear-gradient(160deg, #171d2a 0%, #121826 55%, #101723 100%);
  border-top: 1px solid rgba(173, 194, 230, 0.12);
  border-bottom: 1px solid rgba(173, 194, 230, 0.12);
}

#about .section-head {
  margin-bottom: 1rem;
}

#about .section-head h2 {
  color: #f4f8ff;
}

#about .eyebrow {
  display: inline-flex !important;
  color: #9eabc4;
}

.about-problem {
  border: 1px solid rgba(194, 210, 241, 0.2);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(22, 31, 49, 0.92), rgba(15, 23, 37, 0.9));
  box-shadow: 0 20px 36px rgba(6, 10, 18, 0.32);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.about-intro {
  border: 1px solid rgba(189, 206, 240, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(29, 38, 57, 0.9), rgba(20, 30, 46, 0.86));
  padding: 0.92rem;
}

.about-lead {
  margin: 0 0 0.34rem;
  color: #e9f1ff;
  font-size: 1.04rem;
  line-height: 1.46;
}

.about-lead strong {
  color: #ff6990;
}

.about-copy {
  margin: 0;
  color: #9eabc2;
  line-height: 1.58;
}

.about-points {
  gap: 0.68rem;
}

.problem-point {
  margin: 0;
  padding: 0.76rem 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(183, 201, 235, 0.16);
  background: linear-gradient(145deg, rgba(25, 34, 52, 0.9), rgba(17, 27, 42, 0.88));
  display: flex;
  align-items: flex-start;
  gap: 0.66rem;
}

.problem-point span {
  min-width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 108, 151, 0.34);
  background: rgba(255, 108, 151, 0.08);
  color: #ff6c97;
  font-size: 0.72rem;
  font-weight: 700;
}

.problem-point p {
  margin: 0.14rem 0 0;
  color: #dce7fb;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.about-callout {
  border: 1px solid rgba(255, 108, 151, 0.26);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 82, 132, 0.1), rgba(23, 32, 48, 0.9));
  padding: 0.88rem;
}

.about-callout h3 {
  margin: 0 0 0.18rem;
  color: #ffe8f0;
  font-size: 0.98rem;
}

.about-callout p {
  margin: 0;
  color: #ffd6e4;
}

/* Solution Section Premium Pass */
#solution {
  background:
    radial-gradient(560px 280px at 10% 10%, rgba(62, 102, 191, 0.2), transparent 72%),
    radial-gradient(540px 320px at 90% 78%, rgba(255, 90, 137, 0.08), transparent 76%),
    linear-gradient(160deg, #121925 0%, #0f1622 58%, #0d1420 100%);
  border-top: 1px solid rgba(171, 191, 227, 0.11);
  border-bottom: 1px solid rgba(171, 191, 227, 0.11);
}

#solution .eyebrow {
  display: inline-flex !important;
  color: #9eabc5;
}

#solution .section-head h2 {
  color: #f4f8ff;
}

.solution-wrap {
  border: 1px solid rgba(190, 207, 236, 0.18);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(22, 31, 49, 0.92), rgba(15, 24, 39, 0.9));
  box-shadow: 0 20px 34px rgba(5, 9, 18, 0.32);
  padding: 1rem;
}

.solution-copy p {
  color: #a5b4cc;
}

.solution-copy {
  max-width: 620px;
  display: grid;
  gap: 1rem;
}

.solution-intro {
  margin: 0;
  color: #c4d2e9 !important;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.62;
  max-width: 52ch;
  padding: 0.1rem 0 0.05rem 1rem;
  border-left: 2px solid rgba(255, 118, 160, 0.45);
}

#solution .check-list {
  gap: 0.78rem;
  margin: 0.2rem 0 0;
  max-width: 54ch;
}

#solution .check-list li {
  color: #e3ecfb;
  line-height: 1.45;
  padding: 0.7rem 0.9rem 0.7rem 2.45rem;
  border: 1px solid rgba(181, 200, 235, 0.17);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(23, 33, 51, 0.88), rgba(15, 24, 39, 0.8));
}

#solution .check-list li::before {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #ff5f8b, #ff8cb1);
  box-shadow: 0 0 0 4px rgba(255, 96, 141, 0.16);
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
}

#solution .check-list li::after {
  content: "";
  position: absolute;
  width: 0.34rem;
  height: 0.22rem;
  border-left: 2px solid #081424;
  border-bottom: 2px solid #081424;
  left: 1.22rem;
  top: 50%;
  transform: translateY(-58%) rotate(-45deg);
}

.solution-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.12rem;
}

.solution-pillars span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(191, 209, 239, 0.22);
  background: linear-gradient(135deg, rgba(34, 45, 65, 0.9), rgba(22, 31, 48, 0.84));
  color: #d7e3fa;
  padding: 0.4rem 0.74rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.solution-result {
  max-width: 350px;
  border: 1px solid rgba(255, 110, 149, 0.2);
  background: linear-gradient(150deg, rgba(28, 38, 58, 0.92), rgba(20, 28, 44, 0.9));
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.solution-result::after {
  content: "";
  position: absolute;
  inset: auto -32% -42% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 93, 141, 0.22), rgba(255, 93, 141, 0));
  pointer-events: none;
}

.solution-result:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 130, 167, 0.38);
  box-shadow: 0 22px 34px rgba(7, 12, 24, 0.36);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 109, 149, 0.28);
  background: rgba(255, 109, 149, 0.08);
  color: #ff88ad;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.78rem;
}

.badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ff6d95;
  box-shadow: 0 0 0 4px rgba(255, 109, 149, 0.16);
  animation: badgePulse 1.8s ease-in-out infinite;
}

.solution-result h3 {
  color: #f4f9ff;
  margin-bottom: 0.35rem;
}

.solution-result p {
  color: #b1c1db;
  margin-bottom: 0.8rem;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.result-metrics article {
  border: 1px solid rgba(185, 204, 236, 0.16);
  border-radius: 12px;
  padding: 0.52rem 0.58rem;
  background: rgba(19, 28, 43, 0.7);
}

.result-metrics strong {
  display: block;
  color: #ff8ab0;
  font-size: 1.05rem;
}

.result-metrics span {
  color: #cfdcf4;
  font-size: 0.76rem;
}

.result-progress {
  display: grid;
  gap: 0.42rem;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  color: #cfdcf2;
  font-size: 0.76rem;
}

.progress-track {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(146, 169, 213, 0.2);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, #ff5f89, #ff8db0);
  transition: width 850ms ease;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 149, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 109, 149, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge-dot {
    animation: none;
  }

  .solution-result {
    transition: none;
  }

  .progress-fill {
    transition: none;
  }
}

.portrait-frame {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  aspect-ratio: 0.88;
  min-height: 0;
  max-height: 720px;
  border-radius: 18px;
  border: 1px solid rgba(178, 194, 227, 0.18);
  box-shadow: 0 30px 50px rgba(8, 12, 20, 0.45);
  background: linear-gradient(150deg, #1f2635, #1b212f);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-frame::before {
  inset: 22px 22px 0 22px;
  border-radius: 14px;
  box-shadow: none;
  background: linear-gradient(160deg, rgba(24, 30, 43, 0.92), rgba(16, 21, 31, 0.86));
}

.portrait-frame::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transform: none;
  position: relative;
  z-index: 1;
}

/* Services Premium Interactive */
#services {
  background:
    radial-gradient(620px 320px at 14% 10%, rgba(83, 118, 212, 0.15), transparent 74%),
    radial-gradient(520px 320px at 84% 82%, rgba(255, 93, 141, 0.08), transparent 78%),
    linear-gradient(165deg, #121927 0%, #111825 62%, #101722 100%);
  border-top: 1px solid rgba(174, 195, 232, 0.1);
  border-bottom: 1px solid rgba(174, 195, 232, 0.1);
}

#services .eyebrow {
  color: #95a5c4;
}

#services .section-head h2 {
  color: #f2f7ff;
}

.services-hint {
  margin: 0.55rem 0 0;
  color: #a3b2cd;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.services-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.88fr);
  gap: 1rem;
  align-items: start;
}

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

.service-option {
  background: linear-gradient(150deg, rgba(24, 34, 53, 0.92), rgba(16, 25, 39, 0.9));
  border: 1px solid rgba(183, 201, 236, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(5, 9, 18, 0.24);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-option::before {
  content: "Click to preview";
  position: absolute;
  top: 0.66rem;
  right: 0.66rem;
  padding: 0.22rem 0.48rem 0.22rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(190, 208, 239, 0.24);
  background: rgba(19, 28, 44, 0.76);
  color: #9fb0cc;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.82;
}

.service-option::after {
  content: "";
  position: absolute;
  inset: auto -30% -56% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 139, 0.18), rgba(255, 95, 139, 0));
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-option:hover,
.service-option:focus-visible,
.service-option.active {
  border-color: rgba(255, 128, 170, 0.42);
  box-shadow: 0 20px 32px rgba(7, 12, 24, 0.32);
}

.service-option:hover::before,
.service-option:focus-visible::before,
.service-option.active::before {
  color: #ffd6e4;
  border-color: rgba(255, 132, 171, 0.44);
}

.service-option:hover::after,
.service-option:focus-visible::after,
.service-option.active::after {
  opacity: 1;
}

.service-option:focus-visible {
  outline: 2px solid rgba(255, 123, 164, 0.64);
  outline-offset: 2px;
}

.service-option h3 {
  color: #eef4ff;
  margin: 0.58rem 0 0.4rem;
  font-size: 1.04rem;
}

.service-option p {
  margin: 0;
  color: #aebdd8;
  line-height: 1.58;
  font-size: 0.92rem;
}

.service-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 120, 164, 0.32);
  background: linear-gradient(145deg, rgba(255, 98, 145, 0.18), rgba(39, 51, 78, 0.92));
  color: #ff8db1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-option-wide {
  grid-column: 1 / -1;
}

.service-spotlight {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 121, 164, 0.28);
  background: linear-gradient(152deg, rgba(28, 39, 60, 0.95), rgba(19, 29, 46, 0.92));
  box-shadow: 0 22px 34px rgba(5, 10, 20, 0.34);
  position: sticky;
  top: 96px;
}

.service-spotlight.spotlight-live {
  animation: spotlightPulse 360ms ease;
}

.spotlight-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 128, 170, 0.36);
  background: rgba(255, 117, 161, 0.1);
  color: #ff89ae;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.62rem;
}

.service-spotlight h3 {
  margin: 0.82rem 0 0.4rem;
  color: #f4f9ff;
  font-size: 1.45rem;
}

.service-spotlight p {
  margin: 0;
  color: #b6c4dd;
  line-height: 1.62;
}

.spotlight-kpi {
  margin-top: 0.86rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  border: 1px solid rgba(183, 201, 236, 0.16);
  border-radius: 12px;
  background: rgba(19, 28, 44, 0.72);
  padding: 0.56rem 0.66rem;
}

.spotlight-kpi span {
  color: #9fb0cf;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spotlight-kpi strong {
  color: #ff8eb2;
  font-size: 0.95rem;
}

.spotlight-list {
  margin: 0.92rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.spotlight-list li {
  margin: 0;
  color: #dbe7fb;
  line-height: 1.46;
  padding: 0.58rem 0.72rem 0.58rem 1.85rem;
  border: 1px solid rgba(181, 200, 235, 0.14);
  border-radius: 11px;
  background: linear-gradient(150deg, rgba(22, 32, 49, 0.86), rgba(14, 23, 37, 0.78));
  position: relative;
}

.spotlight-list li::before {
  content: "";
  position: absolute;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff6390, #ff8eb3);
  box-shadow: 0 0 0 4px rgba(255, 102, 146, 0.15);
  top: 0.98rem;
  left: 0.74rem;
}

.spotlight-meters {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.42rem;
}

.spotlight-row {
  display: flex;
  justify-content: space-between;
  color: #cfddf3;
  font-size: 0.79rem;
}

.spotlight-track {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(140, 163, 208, 0.24);
  overflow: hidden;
}

.spotlight-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, #ff5f89, #ff8db0);
  transition: width 780ms ease;
}

/* Case Studies Premium Interactive */
#case-studies {
  background:
    radial-gradient(620px 360px at 8% 18%, rgba(76, 117, 214, 0.14), transparent 74%),
    radial-gradient(560px 320px at 92% 86%, rgba(255, 96, 143, 0.07), transparent 80%),
    linear-gradient(165deg, #121a28 0%, #111824 62%, #101622 100%);
  border-top: 1px solid rgba(175, 195, 231, 0.1);
  border-bottom: 1px solid rgba(175, 195, 231, 0.1);
}

#case-studies .eyebrow {
  color: #96a7c5;
}

#case-studies .section-head h2 {
  color: #f2f7ff;
}

.case-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 1rem;
  align-items: start;
}

.case-library {
  border: 1px solid rgba(183, 202, 236, 0.18);
  border-radius: 18px;
  background: linear-gradient(152deg, rgba(23, 33, 51, 0.9), rgba(15, 24, 39, 0.86));
  padding: 0.92rem;
}

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

.case-option {
  padding: 0.95rem;
  border-radius: 15px;
  border: 1px solid rgba(182, 201, 236, 0.18);
  background: linear-gradient(150deg, rgba(23, 33, 51, 0.92), rgba(15, 24, 39, 0.9));
  box-shadow: 0 14px 24px rgba(5, 10, 19, 0.24);
  position: relative;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-option::before {
  content: "Click to preview";
  position: absolute;
  top: 0.58rem;
  right: 0.58rem;
  padding: 0.22rem 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 208, 239, 0.24);
  background: rgba(18, 28, 45, 0.76);
  color: #9eb1cf;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.case-badge {
  position: absolute;
  right: 0.62rem;
  top: 2.02rem;
  margin: 0;
  color: #ffd6e4;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.case-option:hover,
.case-option:focus-visible,
.case-option.active {
  transform: translateY(-2px);
  border-color: rgba(255, 128, 170, 0.45);
  box-shadow: 0 18px 30px rgba(7, 12, 24, 0.32);
}

.case-option:focus-visible {
  outline: 2px solid rgba(255, 122, 164, 0.62);
  outline-offset: 2px;
}

.case-option .tag {
  color: #ff8db2;
  margin-bottom: 0.5rem;
}

.case-option h3 {
  color: #eef5ff;
  font-size: 1.02rem;
  margin: 0 0 0.38rem;
}

.case-option p {
  margin: 0;
  color: #aebdda;
  font-size: 0.9rem;
  line-height: 1.56;
}

.case-option.extra-case {
  display: none;
}

.case-option.extra-case.show {
  display: block;
}

.case-spotlight {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 121, 164, 0.28);
  background: linear-gradient(152deg, rgba(29, 40, 61, 0.95), rgba(19, 29, 45, 0.92));
  box-shadow: 0 22px 34px rgba(5, 10, 20, 0.34);
  position: sticky;
  top: 96px;
}

.case-spotlight h3 {
  margin: 0.82rem 0 0.4rem;
  color: #f4f9ff;
  font-size: 1.4rem;
}

.case-spotlight p {
  margin: 0;
  color: #b6c4dd;
  line-height: 1.62;
}

.case-spotlight-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.case-spotlight-meta span,
.case-spotlight-meta strong {
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.case-spotlight-meta span {
  border: 1px solid rgba(183, 202, 236, 0.2);
  color: #d0ddf4;
  background: rgba(18, 27, 42, 0.76);
  font-weight: 600;
  text-transform: uppercase;
}

.case-spotlight-meta strong {
  border: 1px solid rgba(255, 128, 171, 0.35);
  color: #ff98bb;
  background: rgba(255, 110, 154, 0.12);
}

.case-chip-group {
  margin-top: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.case-chip-group span {
  border-radius: 999px;
  border: 1px solid rgba(188, 206, 238, 0.22);
  background: linear-gradient(135deg, rgba(34, 45, 65, 0.9), rgba(22, 31, 48, 0.84));
  color: #d9e4fa;
  padding: 0.34rem 0.62rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.case-cta {
  margin-top: 0.95rem;
  width: 100%;
}

.case-load-more {
  margin-top: 0.78rem;
  width: 100%;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #d5e2fb;
  border-color: rgba(178, 198, 233, 0.24);
  background: linear-gradient(140deg, rgba(30, 40, 59, 0.92), rgba(22, 32, 47, 0.88));
}

.case-load-more:hover {
  border-color: rgba(255, 133, 174, 0.34);
}

.case-spotlight.spotlight-live {
  animation: spotlightPulse 360ms ease;
}

/* Case Studies Editorial Pattern Override */
#case-studies .case-note {
  margin: 0.55rem 0 0;
  color: #9fb0cc;
  font-size: 0.9rem;
}

.case-stack {
  display: grid;
  gap: 1rem;
}

.case-feature {
  border: 1px solid rgba(176, 196, 232, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(520px 240px at 92% 6%, rgba(90, 124, 216, 0.17), transparent 70%),
    linear-gradient(155deg, rgba(26, 37, 57, 0.95), rgba(18, 28, 43, 0.92));
  box-shadow: 0 24px 36px rgba(5, 10, 20, 0.34);
  padding: 1.2rem;
}

.case-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.case-feature h3 {
  margin: 0.85rem 0 0.45rem;
  color: #f4f8ff;
  font-size: clamp(1.28rem, 2.1vw, 2rem);
}

.case-feature > p {
  margin: 0;
  color: #b8c6de;
  max-width: 72ch;
}

.case-reel-wrap {
  border: 1px solid rgba(176, 196, 232, 0.18);
  border-radius: 18px;
  background: linear-gradient(156deg, rgba(21, 31, 49, 0.9), rgba(14, 23, 37, 0.88));
  box-shadow: 0 16px 28px rgba(5, 10, 20, 0.28);
  padding: 0.9rem;
}

.case-reel {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 0.74rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scroll-snap-type: x proximity;
}

.case-reel-item {
  min-height: 170px;
  border: 1px solid rgba(171, 192, 229, 0.18);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(24, 34, 53, 0.92), rgba(16, 25, 39, 0.9));
  padding: 0.78rem;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.case-reel-item:hover,
.case-reel-item:focus-visible,
.case-reel-item.active {
  transform: translateY(-2px);
  border-color: rgba(255, 134, 174, 0.34);
  box-shadow: 0 14px 24px rgba(6, 11, 21, 0.35);
}

.case-reel-item:focus-visible {
  outline: 2px solid rgba(255, 123, 164, 0.52);
  outline-offset: 2px;
}

.case-reel-item .tag {
  color: #ff94b8;
  margin-bottom: 0.34rem;
}

.case-reel-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #ecf3ff;
}

.case-reel-item p {
  margin: 0;
  color: #aebdd8;
  font-size: 0.88rem;
  line-height: 1.48;
  max-width: 96%;
}

.reel-impact {
  position: absolute;
  right: 0.68rem;
  bottom: 0.62rem;
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  border: 1px solid rgba(255, 130, 170, 0.35);
  background: rgba(255, 111, 156, 0.11);
  color: #ff9abc;
  font-size: 0.66rem;
  font-weight: 700;
}

.case-reel-item.extra-case {
  display: none;
}

.case-reel-item.extra-case.show {
  display: block;
}

.case-load-more {
  margin-top: 0.82rem;
  width: 100%;
}

.case-feature.spotlight-live {
  animation: spotlightPulse 360ms ease;
}

/* Portfolio Slider Case Studies */
#case-studies {
  background:
    radial-gradient(720px 360px at 12% 8%, rgba(77, 120, 214, 0.16), transparent 72%),
    radial-gradient(660px 340px at 92% 88%, rgba(255, 92, 141, 0.08), transparent 76%),
    linear-gradient(165deg, #111826 0%, #0f1622 64%, #0e1520 100%);
}

#case-studies .section-head h2 {
  max-width: 18ch;
}

.case-note {
  margin: 0.6rem 0 0;
  color: #9fb0cd;
}

.portfolio-carousel {
  position: relative;
  display: block;
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(187, 204, 236, 0.24);
  background: linear-gradient(145deg, rgba(28, 38, 56, 0.95), rgba(16, 24, 38, 0.92));
  color: #e7f0ff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.portfolio-arrow:hover:not(:disabled) {
  transform: translateY(calc(-50% - 2px));
  border-color: rgba(255, 129, 169, 0.45);
  box-shadow: 0 12px 24px rgba(8, 14, 26, 0.38), 0 0 0 6px rgba(255, 106, 150, 0.1);
}

.portfolio-arrow:disabled {
  opacity: 0.35;
  border-color: rgba(160, 178, 213, 0.18);
  cursor: not-allowed;
}

.portfolio-arrow.prev {
  left: -26px;
}

.portfolio-arrow.next {
  right: -26px;
}

.portfolio-viewport {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(182, 202, 237, 0.2);
  border-radius: 20px;
  background: linear-gradient(156deg, rgba(23, 33, 51, 0.92), rgba(15, 24, 39, 0.9));
  box-shadow: 0 24px 36px rgba(5, 10, 20, 0.34);
}

.portfolio-track {
  position: relative;
}

.portfolio-slide {
  width: 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 1rem;
  padding: 1.2rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 220ms ease;
}

.portfolio-slide > .portfolio-copy,
.portfolio-slide > .portfolio-media {
  transform: none;
  opacity: 0.92;
  transition: opacity 300ms ease;
}

.portfolio-slide.active {
  display: grid;
  opacity: 1;
  animation: slideFadeIn 280ms ease;
}

.portfolio-slide.active > .portfolio-copy,
.portfolio-slide.active > .portfolio-media {
  transform: none;
  opacity: 1;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.portfolio-copy h3 {
  margin: 0.2rem 0 0.46rem;
  color: #eef4ff;
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
}

.portfolio-copy p {
  margin: 0;
  color: #aebed8;
  line-height: 1.62;
}


.portfolio-copy ul {
  margin: 0.86rem 0 0.96rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.portfolio-copy li {
  padding-left: 1.3rem;
  color: #d7e2f8;
  position: relative;
}

.portfolio-copy li::before {
  content: "";
  position: absolute;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff5f8b, #ff8cb1);
  left: 0.18rem;
  top: 0.55rem;
}

.portfolio-thumb-link {
  display: block;
  align-self: start;
  justify-self: stretch;
  aspect-ratio: auto;
  min-height: 0;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(180, 200, 236, 0.22);
  box-shadow: 0 16px 28px rgba(7, 12, 22, 0.32);
}

.portfolio-thumb-link img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  transform: none;
  transition: none;
}

.portfolio-thumb-link:hover img {
  transform: none;
}

.portfolio-info-strip {
  margin-top: 0.64rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.portfolio-info-strip span {
  border-radius: 999px;
  border: 1px solid rgba(181, 200, 236, 0.22);
  background: linear-gradient(140deg, rgba(27, 38, 58, 0.9), rgba(18, 28, 44, 0.86));
  color: #d8e4fb;
  padding: 0.26rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.portfolio-media {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(174, 195, 232, 0.18);
  border-radius: 12px;
  padding: 0.7rem;
  background: linear-gradient(150deg, rgba(17, 26, 41, 0.85), rgba(12, 20, 33, 0.78));
}

.portfolio-media-head {
  margin-bottom: 0.52rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.48rem;
}

.portfolio-snapshot {
  color: #9fb3d4;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.portfolio-score {
  border-radius: 999px;
  border: 1px solid rgba(255, 128, 169, 0.35);
  background: rgba(255, 109, 155, 0.11);
  color: #ff9abe;
  padding: 0.18rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-meta-nav {
  margin-top: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.64rem;
}

.portfolio-dots {
  display: flex;
  gap: 0.42rem;
}

.portfolio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(184, 202, 237, 0.35);
  background: rgba(184, 202, 237, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.portfolio-dot.active {
  transform: scale(1.16);
  background: #ff6a96;
  border-color: #ff6a96;
  box-shadow: 0 0 0 6px rgba(255, 106, 150, 0.12);
}

.portfolio-count {
  margin: 0;
  color: #9eb0cf;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

#portfolioMoreToggle {
  margin-top: 0.9rem;
}

.portfolio-more-grid {
  margin-top: 0.84rem;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.portfolio-more-grid.open {
  display: grid;
}

.portfolio-mini-card {
  display: grid;
  gap: 0.42rem;
  border: 1px solid rgba(182, 201, 236, 0.18);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(23, 33, 51, 0.9), rgba(15, 24, 39, 0.86));
  padding: 0.58rem;
  color: #dce8fb;
  text-decoration: none;
}

.portfolio-mini-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(182, 201, 236, 0.2);
}

.portfolio-mini-card span {
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .portfolio-arrow.prev {
    left: -16px;
  }

  .portfolio-arrow.next {
    right: -16px;
  }

  .portfolio-slide {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 1rem;
  }

  .portfolio-thumb-link {
    min-height: 0;
    aspect-ratio: auto;
  }

  .portfolio-thumb-link img {
    height: auto;
    object-fit: contain;
  }

  .portfolio-copy .btn {
    width: auto;
  }

  .portfolio-media {
    min-height: 0;
    padding: 0.52rem;
  }

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

  .portfolio-info-strip {
    margin-top: 0.46rem;
  }
}

@media (max-width: 760px) {
  .portfolio-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.56rem;
  }

  .portfolio-viewport {
    grid-column: 1 / -1;
    order: 1;
    border-radius: 14px;
  }

  .portfolio-arrow {
    position: static;
    width: 42px;
    height: 42px;
    transform: none;
    margin-top: 0.48rem;
    background: linear-gradient(145deg, rgba(24, 33, 50, 0.96), rgba(14, 22, 35, 0.94));
    box-shadow: 0 10px 20px rgba(6, 11, 20, 0.36);
    order: 2;
    justify-self: center;
  }

  .portfolio-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
  }

  .portfolio-arrow.prev {
    left: auto;
  }

  .portfolio-arrow.next {
    right: auto;
  }

  .portfolio-slide {
    padding: 0.76rem;
    gap: 0.62rem;
  }

  .portfolio-copy h3 {
    font-size: 1.04rem;
    margin-bottom: 0.34rem;
  }

  .portfolio-copy p,
  .portfolio-copy li {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .portfolio-copy ul {
    margin: 0.62rem 0 0.74rem;
    gap: 0.36rem;
  }

  .portfolio-media {
    margin-top: 0.18rem;
    padding: 0.46rem;
    border-radius: 10px;
  }

  .portfolio-media-head {
    margin-bottom: 0.42rem;
  }

  .portfolio-snapshot {
    font-size: 0.66rem;
  }

  .portfolio-score {
    font-size: 0.62rem;
    padding: 0.16rem 0.42rem;
  }

  .portfolio-info-strip {
    margin-top: 0.42rem;
    gap: 0.34rem;
  }

  .portfolio-info-strip span {
    font-size: 0.64rem;
    padding: 0.22rem 0.48rem;
  }

  .portfolio-meta-nav {
    margin-top: 0.56rem;
    gap: 0.5rem;
  }

  .portfolio-count {
    font-size: 0.72rem;
  }

  #portfolioMoreToggle {
    margin-top: 0.62rem;
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }

  .portfolio-more-grid {
    grid-template-columns: 1fr;
  }

  #portfolioMoreToggle {
    width: 100%;
  }
}

@keyframes spotlightPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 22px 34px rgba(5, 10, 20, 0.34);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 26px 38px rgba(5, 10, 20, 0.4);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 22px 34px rgba(5, 10, 20, 0.34);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .portrait-frame {
    max-width: none;
    aspect-ratio: 0.94;
    min-height: 0;
  }

  .mini-trust span {
    font-size: 0.76rem;
  }

  .about-problem {
    padding: 0.86rem;
  }

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

  .service-spotlight {
    position: static;
  }

  .case-stack {
    gap: 0.88rem;
  }

  .case-feature {
    padding: 1rem;
  }

  .case-reel {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav {
    background: rgba(24, 29, 40, 0.98);
    border: 1px solid rgba(191, 205, 237, 0.22);
  }

  .nav-wrap {
    min-height: 0;
    padding-block: 10px;
    width: min(100% - 2rem, 1360px);
  }

  .brand-avatar {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .hero {
    padding-top: 5.3rem;
  }

  .portrait-frame {
    width: min(82vw, 360px);
    margin-inline: auto;
    aspect-ratio: 1;
    min-height: 0;
    border-radius: 50%;
    border: 1px solid rgba(200, 214, 241, 0.26);
    box-shadow: 0 20px 36px rgba(7, 11, 20, 0.42), 0 0 0 10px rgba(255, 255, 255, 0.03);
  }

  .portrait-frame::before {
    inset: 16px;
    border-radius: 50%;
  }

  .portrait-frame::after {
    border-radius: 50%;
  }

  .portrait-image {
    object-position: center 14%;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    max-width: 100%;
  }

  .solution-wrap {
    padding: 0.82rem;
    border-radius: 16px;
  }

  .solution-copy {
    max-width: 100%;
    gap: 0.66rem;
  }

  .solution-intro {
    font-size: 0.98rem;
    line-height: 1.56;
    padding-left: 0.8rem;
  }

  #solution .check-list {
    gap: 0.56rem;
    margin-top: 0.06rem;
  }

  #solution .check-list li {
    padding: 0.58rem 0.72rem 0.58rem 2.1rem;
    border-radius: 11px;
    line-height: 1.4;
    min-height: 54px;
  }

  #solution .check-list li::before {
    width: 0.94rem;
    height: 0.94rem;
    left: 0.72rem;
    top: 1rem;
    transform: none;
    box-shadow: 0 0 0 3px rgba(255, 96, 141, 0.16);
  }

  #solution .check-list li::after {
    width: 0.3rem;
    height: 0.2rem;
    left: 1.01rem;
    top: 1.31rem;
    transform: rotate(-45deg);
  }

  .solution-pillars {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.44rem;
    margin-top: 0.08rem;
  }

  .solution-pillars span {
    width: auto;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0.74rem;
    border-radius: 12px;
    letter-spacing: 0.035em;
    font-size: 0.78rem;
    flex: 0 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .service-option,
  .service-option-wide {
    grid-column: auto;
  }

  .service-option {
    padding: 0.92rem;
    border-radius: 14px;
  }

  .service-option::before {
    content: "Tap";
    top: 0.54rem;
    right: 0.54rem;
    font-size: 0.6rem;
    padding: 0.2rem 0.42rem;
  }

  .service-icon {
    width: 1.78rem;
    height: 1.78rem;
    font-size: 0.7rem;
  }

  .service-option h3 {
    font-size: 0.98rem;
    margin: 0.5rem 0 0.34rem;
  }

  .service-option p {
    font-size: 0.88rem;
  }

  .service-spotlight {
    padding: 0.9rem;
    border-radius: 15px;
  }

  .service-spotlight h3 {
    font-size: 1.24rem;
  }

  .spotlight-list li {
    padding: 0.52rem 0.62rem 0.52rem 1.68rem;
    font-size: 0.92rem;
  }

  .spotlight-list li::before {
    width: 0.5rem;
    height: 0.5rem;
    left: 0.64rem;
    top: 0.9rem;
  }

  .case-feature {
    padding: 0.88rem;
    border-radius: 15px;
  }

  .case-feature-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .case-feature h3 {
    font-size: 1.2rem;
  }

  .case-chip-group span {
    font-size: 0.68rem;
    padding: 0.3rem 0.56rem;
  }

  .case-reel-wrap {
    padding: 0.76rem;
    border-radius: 14px;
  }

  .case-reel {
    grid-template-columns: 1fr;
    gap: 0.64rem;
  }

  .case-reel-item {
    min-height: 160px;
    padding: 0.74rem;
  }

  .case-reel-item h3 {
    font-size: 0.96rem;
  }

  .case-reel-item p {
    font-size: 0.86rem;
  }

  .reel-impact {
    font-size: 0.62rem;
    right: 0.58rem;
    bottom: 0.54rem;
  }
}

@media (max-width: 980px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-steps-wrap {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .process-rail {
    left: 1.22rem;
    top: 1.24rem;
    bottom: 1.3rem;
  }

  .process-step-card {
    padding: 0.62rem 0.64rem 0.62rem 1.82rem;
  }

  .process-step-title {
    font-size: 0.94rem;
  }

  .process-step-summary {
    font-size: 0.78rem;
  }

  .process-detail {
    padding: 0.86rem;
    border-radius: 14px;
  }

  .process-detail h3 {
    font-size: 1.14rem;
  }

  .process-detail p,
  .process-detail-list li {
    font-size: 0.9rem;
  }
}

/* Reviews/Testimonial Carousel */
#reviews {
  background:
    radial-gradient(700px 360px at 10% 8%, rgba(76, 119, 214, 0.16), transparent 72%),
    radial-gradient(640px 340px at 90% 86%, rgba(255, 97, 144, 0.08), transparent 76%),
    linear-gradient(165deg, #121925 0%, #101723 62%, #0f1520 100%);
  border-top: 1px solid rgba(175, 195, 231, 0.1);
  border-bottom: 1px solid rgba(175, 195, 231, 0.1);
}

#reviews .section-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

#reviews .eyebrow {
  color: #ff5f8b;
  width: 100%;
  justify-content: center;
  margin-inline: auto;
}

#reviews .section-head h2 {
  color: #e9f1ff;
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.025em;
  margin-inline: auto;
  text-align: center;
}

.client-carousel {
  position: relative;
  overflow: visible;
}

.client-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(183, 201, 235, 0.22);
  background: linear-gradient(145deg, rgba(28, 38, 56, 0.95), rgba(16, 24, 38, 0.92));
  color: #e7f0ff;
  font-size: 1.26rem;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.client-arrow.prev {
  left: -28px;
}

.client-arrow.next {
  right: -28px;
}

.client-arrow:hover:not(:disabled) {
  transform: translateY(calc(-50% - 2px));
  border-color: rgba(255, 129, 169, 0.44);
  box-shadow: 0 12px 24px rgba(8, 14, 26, 0.38), 0 0 0 6px rgba(255, 106, 150, 0.1);
}

.client-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.client-viewport {
  border: 1px solid rgba(181, 200, 236, 0.2);
  border-radius: 20px;
  background: linear-gradient(156deg, rgba(23, 33, 51, 0.9), rgba(15, 24, 39, 0.86));
  box-shadow: 0 24px 36px rgba(5, 10, 20, 0.34);
  padding: 1rem;
  overflow: hidden;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.client-card {
  border: 1px solid rgba(180, 199, 234, 0.16);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(24, 34, 53, 0.9), rgba(16, 25, 39, 0.86));
  box-shadow: 0 16px 28px rgba(6, 11, 21, 0.3);
  padding: 1.1rem;
  min-height: 292px;
  display: grid;
  align-content: start;
  gap: 0.94rem;
}

.client-head {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 213, 238, 0.34);
  background: linear-gradient(130deg, #ff4f7f, #6c8eff);
  color: #f4f9ff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.client-name {
  margin: 0;
  color: #ff5f8b;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

.client-name span {
  color: #bcc9df;
  font-weight: 500;
}

.client-copy {
  margin: 0;
  color: #c6d4ea;
  font-size: 1.02rem;
  line-height: 1.72;
}

.client-meta-nav {
  margin-top: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.66rem;
}

.client-dots {
  display: flex;
  gap: 0.45rem;
}

.client-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(184, 202, 237, 0.34);
  background: rgba(184, 202, 237, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.client-dot.active {
  transform: scale(1.16);
  background: #ff5f8b;
  border-color: #ff5f8b;
  box-shadow: 0 0 0 6px rgba(255, 95, 139, 0.12);
}

.client-count {
  margin: 0;
  color: #9eb0cf;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .client-arrow.prev {
    left: -16px;
  }

  .client-arrow.next {
    right: -16px;
  }
}

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

  .client-card {
    min-height: 270px;
  }
}

@media (max-width: 760px) {
  .client-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.56rem;
  }

  .client-viewport {
    grid-column: 1 / -1;
    order: 1;
    border-radius: 14px;
    padding: 0.78rem;
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .client-card {
    min-height: 0;
    border-radius: 13px;
    padding: 0.88rem;
    gap: 0.72rem;
  }

  .client-avatar {
    width: 46px;
    height: 46px;
    font-size: 0.8rem;
  }

  .client-name {
    font-size: 0.96rem;
  }

  .client-copy {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .client-arrow {
    position: static;
    width: 44px;
    height: 44px;
    transform: none;
    margin-top: 0.42rem;
    order: 2;
    justify-self: center;
  }

  .client-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
  }

  .client-arrow.prev,
  .client-arrow.next {
    left: auto;
    right: auto;
  }

  .client-meta-nav {
    margin-top: 0.58rem;
  }
}

/* Final CTA / Contact Premium */
#contact {
  background:
    radial-gradient(700px 360px at 12% 8%, rgba(77, 119, 214, 0.16), transparent 72%),
    radial-gradient(620px 320px at 88% 86%, rgba(255, 96, 143, 0.09), transparent 76%),
    linear-gradient(165deg, #111826 0%, #101723 62%, #0f1520 100%);
  border-top: 1px solid rgba(175, 195, 231, 0.1);
}

#contact .final-cta {
  border: 1px solid rgba(183, 201, 236, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(520px 240px at 82% 18%, rgba(90, 126, 218, 0.2), transparent 72%),
    linear-gradient(152deg, rgba(28, 39, 60, 0.95), rgba(19, 29, 46, 0.92));
  box-shadow: 0 22px 34px rgba(5, 10, 20, 0.34);
  padding: 1.15rem;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

#contact .final-cta h2 {
  color: #f2f7ff;
  margin: 0.22rem 0 0.45rem;
  max-width: 16ch;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

#contact .final-cta p {
  color: #aebed8;
  max-width: 46ch;
  margin: 0;
}

#contact .final-cta-main {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

#contact .final-cta-main .eyebrow {
  color: #ff83ac;
  margin: 0;
}

#contact .final-cta-actions {
  margin-top: 0.56rem;
}

#contact .final-cta-actions .btn {
  width: auto;
}

#contact .contact-form-wrap {
  border: 1px solid rgba(181, 200, 236, 0.18);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(22, 32, 49, 0.9), rgba(14, 23, 37, 0.84));
  box-shadow: 0 14px 26px rgba(6, 11, 20, 0.28);
  padding: 0.92rem;
}

#contact .contact-form-premium {
  display: grid;
  gap: 0.66rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

#contact .contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

#contact .contact-form-premium label {
  color: #a8bad8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
}

#contact .contact-form-premium input,
#contact .contact-form-premium textarea {
  border: 1px solid rgba(181, 200, 235, 0.24);
  background: linear-gradient(145deg, rgba(25, 35, 53, 0.9), rgba(17, 26, 41, 0.86));
  color: #eef4ff;
  border-radius: 10px;
  min-height: 52px;
}

#contact .contact-form-premium textarea {
  min-height: 210px;
  resize: vertical;
}

#contact .contact-form-premium input::placeholder,
#contact .contact-form-premium textarea::placeholder {
  color: #8ea2c4;
}

#contact .contact-form-premium input:focus,
#contact .contact-form-premium textarea:focus {
  border-color: rgba(255, 128, 170, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 105, 150, 0.16);
}

#contact .contact-submit {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(36, 49, 72, 0.96), rgba(22, 33, 50, 0.94));
  border-color: rgba(181, 200, 235, 0.28);
  color: #dfe9ff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#contact .contact-submit:hover {
  border-color: rgba(255, 130, 171, 0.4);
  color: #ffffff;
}

#contact .form-note {
  color: #ff9abc;
  text-align: center;
}

@media (max-width: 980px) {
  #contact .final-cta {
    grid-template-columns: 1fr;
  }

  #contact .final-cta h2 {
    max-width: none;
  }

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

@media (max-width: 760px) {
  #contact .final-cta {
    border-radius: 14px;
    padding: 0.9rem 0.82rem;
    gap: 0.72rem;
  }

  #contact .final-cta h2 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  #contact .final-cta-actions {
    margin-top: 0.44rem;
  }

  #contact .final-cta-actions .btn {
    width: 100%;
  }

  #contact .contact-form-wrap {
    border-radius: 13px;
    padding: 0.82rem;
  }

  #contact .contact-form-premium {
    gap: 0.58rem;
  }

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

  #contact .contact-submit {
    font-size: 0.86rem;
  }
}

/* Premium Mobile Nav */
.nav-scrim {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.mobile-nav-top,
.mobile-nav-copy,
.mobile-nav-divider,
.mobile-nav-footer {
  display: none;
}

@media (max-width: 760px) {
  #about .container {
    width: min(100% - 2.5rem, 1360px);
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 73, 124, 0.18), rgba(10, 15, 27, 0.9));
    border: 1px solid rgba(221, 234, 255, 0.2);
    box-shadow: 0 16px 24px rgba(5, 8, 15, 0.42);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-toggle span {
    width: 18px;
    background: #ff4e7d;
  }

  body.nav-open .menu-toggle {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: min(88vw, 380px);
    height: 100dvh;
    background: linear-gradient(165deg, #141925 0%, #111724 100%);
    border: 1px solid rgba(192, 206, 236, 0.18);
    border-left: none;
    border-radius: 0 22px 22px 0;
    padding: 1.25rem 1.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 26px 50px rgba(3, 7, 16, 0.62);
    transform: translateX(-102%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 220ms ease;
    z-index: 2000;
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav.open > a {
    display: block !important;
  }

  .site-nav.open .mobile-nav-top,
  .site-nav.open .mobile-nav-copy,
  .site-nav.open .mobile-nav-divider,
  .site-nav.open .mobile-nav-footer {
    display: block !important;
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(6, 10, 18, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 1900;
  }

  .nav-scrim.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-top,
  .mobile-nav-copy,
  .mobile-nav-divider,
  .mobile-nav-footer {
    display: block;
  }

  .mobile-nav-top {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    margin-bottom: 0.85rem;
  }

  .mobile-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    max-width: calc(100% - 60px);
    color: #dbe5fb;
    font-weight: 600;
    font-size: 1.35rem;
  }

  .mobile-nav-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 18%;
    border: 2px solid rgba(204, 219, 245, 0.2);
    box-shadow: 0 10px 22px rgba(8, 12, 22, 0.44);
  }

  .mobile-nav-close {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    border-radius: 999px;
    border: 1px solid rgba(220, 233, 255, 0.18);
    background: radial-gradient(circle at 35% 35%, rgba(255, 78, 125, 0.2), rgba(15, 20, 31, 0.94));
    color: transparent;
    font-size: 0;
    cursor: pointer;
  }

  .mobile-nav-close::before,
  .mobile-nav-close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #ff4e7d;
    top: 50%;
    left: 50%;
    transform-origin: center;
  }

  .mobile-nav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-nav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav-copy {
    margin: 0;
    color: #8f9ab1;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .mobile-nav-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(190, 206, 236, 0.2), rgba(190, 206, 236, 0.06));
    margin: 1rem 0 0.8rem;
  }

  .site-nav > a {
    width: 100%;
    color: #d8e2f6;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(176, 196, 232, 0.08);
  }

  .site-nav > a.nav-cta {
    margin-top: 0.75rem;
    border-bottom: 0;
    width: auto;
    padding: 0.78rem 1.05rem;
    border-radius: 12px;
  }

  .mobile-nav-footer p {
    margin: 0;
    color: #a8b6d0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .mobile-nav-icons {
    display: flex;
    gap: 0.58rem;
    margin-top: 0.7rem;
  }

  .mobile-nav-icons span {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d8e3fb;
    border: 1px solid rgba(183, 201, 234, 0.16);
    background: linear-gradient(145deg, #1d2433, #171d2a);
    text-transform: uppercase;
    font-weight: 600;
  }
}

/* Premium Footer */
.site-footer {
  background:
    radial-gradient(740px 320px at 12% 10%, rgba(77, 119, 214, 0.14), transparent 72%),
    radial-gradient(680px 300px at 92% 88%, rgba(255, 96, 143, 0.08), transparent 76%),
    linear-gradient(165deg, #0f1621 0%, #0d1420 62%, #0b121c 100%);
  border-top: 1px solid rgba(178, 198, 233, 0.16);
  padding: 1.2rem 2.4rem 0.9rem;
  color: #b0c0db;
}

.footer-shell {
  width: 100%;
  max-width: 100%;
}

.footer-top {
  border: 1px solid rgba(181, 200, 236, 0.16);
  border-left: 0;
  border-right: 0;
  background: linear-gradient(150deg, rgba(22, 32, 49, 0.66), rgba(14, 23, 37, 0.62));
  padding: 0.95rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.footer-brand-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
  color: #eef5ff;
  font-weight: 700;
  font-size: 1.9rem;
}

.footer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(205, 219, 244, 0.22);
}

.footer-inline-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.15rem;
  justify-self: center;
  flex-wrap: wrap;
}

.footer-inline-links a {
  color: #cddbf2;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.footer-inline-links a:hover {
  color: #ffffff;
}

.footer-inline-cta {
  white-space: nowrap;
  justify-self: end;
  margin: 0;
}

.footer-bottom {
  margin-top: 0.55rem;
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: #93a8cb;
  font-size: 0.82rem;
}

.footer-top-btn {
  width: 42px;
  height: 42px;
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1200;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(181, 200, 236, 0.28);
  background: linear-gradient(145deg, rgba(28, 38, 56, 0.92), rgba(16, 24, 38, 0.9));
  color: #e9f1ff;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(6, 10, 18, 0.3);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.footer-top-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 131, 173, 0.52);
  box-shadow: 0 14px 24px rgba(6, 10, 18, 0.36), 0 0 0 6px rgba(255, 105, 150, 0.1);
}

@media (max-width: 980px) {
  .site-footer {
    padding-inline: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.72rem;
  }

  .footer-inline-links {
    justify-content: flex-start;
    justify-self: start;
    gap: 0.72rem;
  }

  .footer-inline-cta {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 1rem 1rem 0.86rem;
  }

  .footer-top {
    padding: 0.72rem 0;
    gap: 0.62rem;
  }

  .footer-brand-inline {
    font-size: 1.58rem;
  }

  .footer-inline-links {
    gap: 0.55rem 0.72rem;
  }

  .footer-inline-links a {
    font-size: 0.8rem;
  }

  .footer-inline-cta {
    width: 100%;
  }

  .footer-inline-cta.btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.38rem;
  }

  .footer-top-btn {
    width: 40px;
    height: 40px;
    right: 0.86rem;
    bottom: 0.86rem;
  }
}
