:root {
  --base: #ffffff;
  --paper: #f3faff;
  --sky-soft: #e5f6ff;
  --ink: #12243a;
  --muted: #526b80;
  --line: #cee4f0;
  --navy: #123955;
  --blue: #159bd7;
  --green: #087fa8;
  --accent: #f4b650;
  --shadow: 0 18px 50px rgba(18, 85, 122, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
  background: var(--base);
}

body::selection {
  color: var(--ink);
  background: #bfeaff;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(21, 155, 215, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  font-weight: 800;
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.logo small {
  margin-top: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--blue);
}

.nav a:not(.nav-contact).is-current {
  color: var(--blue);
}

.nav-contact {
  min-width: 112px;
  padding: 9px 16px;
  color: #ffffff;
  text-align: center;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(21, 155, 215, 0.22);
}

.nav .nav-contact:hover {
  color: #ffffff;
  background: #087fa8;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: min(680px, calc(100vh - 118px));
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) 42px;
  background: #f3faff;
  isolation: isolate;
}

.hero-text {
  position: relative;
  z-index: 2;
  width: min(760px, 62%);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero h1 em {
  position: relative;
  isolation: isolate;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: -1;
  height: 9px;
  background: #ccefff;
  content: "";
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 800;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(8, 127, 168, 0.28);
}

.button.primary:hover {
  background: #087fa8;
}

.button.secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.button.line {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.56);
}

.button.line:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button.large {
  min-height: 56px;
  padding-inline: 30px;
}

.hero-flow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-flow canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-legend {
  position: absolute;
  right: clamp(28px, 6vw, 88px);
  bottom: 11%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(18, 57, 85, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-legend i {
  width: 22px;
  height: 1px;
  background: rgba(21, 155, 215, 0.5);
}

.flow-legend strong {
  color: var(--green);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 22px 18px;
  text-align: center;
  background: #ffffff;
}

.proof-item:nth-child(even) {
  background: #f8fcff;
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.3;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.decision-nav {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1.54fr);
  gap: 32px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.decision-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.4;
}

.decision-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.decision-links a {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 18px 42px 18px 18px;
  background: #f9fdff;
  transition: background 0.2s ease;
}

.decision-links a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--blue);
  font-size: 22px;
  content: "→";
  transform: translateY(-50%);
}

.decision-links a:hover {
  background: var(--sky-soft);
}

.decision-links span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.decision-links strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
}

.conversion {
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.conversion-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 48px;
  max-width: 1120px;
}

.conversion-heading .section-lead {
  margin: 0;
}

.conversion-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(90deg, #f7fcff, #eaf8ff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.conversion-flow::before {
  position: absolute;
  top: 47px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, #83d5f5, var(--blue));
  content: "";
}

.conversion-flow article {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 30px 24px 24px;
}

.conversion-flow article + article {
  border-left: 1px solid var(--line);
}

.conversion-flow article > span {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: #ffffff;
  border: 1px solid #b9e4f7;
  border-radius: 4px;
}

.conversion-flow strong {
  display: block;
  margin-top: 28px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
}

.conversion-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.conversion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 16px 18px;
  background: var(--navy);
  border-radius: var(--radius);
}

.conversion-summary p {
  margin: 0;
  color: #deeff8;
  font-size: 14px;
}

.conversion-summary p span {
  margin-right: 10px;
  color: #ffffff;
  font-weight: 900;
}

.conversion-summary a {
  flex: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.muted {
  background: var(--paper);
}

.section-heading {
  max-width: 960px;
  margin: 0 auto 34px;
}

.section-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.35;
  letter-spacing: 0;
}

.profile-grid,
.service-layout,
.pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.profile-grid {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.profile h3,
.process h3,
.insight-box h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.5;
}

.profile p,
.card p,
.work-item p,
.document-box p,
.price-card p,
.service-plan p,
.career-card p,
.insight-box p,
.contact p {
  color: var(--muted);
}

.profile-support {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.profile-stats div {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile-stats strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.profile-stats span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.consult-box {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
}

.consult-box h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
}

.consult-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.consult-box li {
  position: relative;
  padding-left: 24px;
}

.consult-box li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  content: "✓";
}

.pain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  color: var(--blue);
  font-weight: 800;
  content: "✓";
}

.insight-box {
  padding: 26px;
  background: var(--navy);
  border-radius: var(--radius);
}

.insight-box h3 {
  color: #ffffff;
}

.insight-box p {
  margin: 0;
  color: #dce8f5;
}

.profile-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.profile-list {
  margin: 0;
  padding: 24px;
}

.profile-list div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.profile-list dt {
  color: var(--navy);
  font-weight: 800;
}

.profile-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.card-grid,
.price-grid,
.reason-grid,
.service-plans,
.career-grid {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reason-grid,
.price-grid,
.service-plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-grid {
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1fr) minmax(280px, 1fr);
}

.card,
.price-card,
.reason-card,
.service-plan,
.career-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.work-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--paper);
  border-radius: 6px;
}

.work-facts div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-facts dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.work-facts dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 960px;
  margin: 20px auto 0;
  padding: 18px 20px;
  background: #f4fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-cta p {
  margin: 0;
  color: var(--muted);
}

.section-cta .button {
  flex: none;
}

.reasons {
  background: #ffffff;
}

.reason-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  background: #e9f5f1;
  border-radius: 999px;
}

.reason-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
}

.service-plan h3,
.career-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
}

.service-plan dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.service-plan dl div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.service-plan dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-plan dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.service-for {
  display: inline-flex;
  margin: 4px 0 2px !important;
  padding: 5px 8px;
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 900;
  background: #e8f7fb;
  border-radius: 4px;
}

.deliverables {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.deliverables li {
  position: relative;
  padding-left: 20px;
}

.deliverables li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
  content: "✓";
}

.service-flow {
  margin-top: 28px;
}

.career-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.career-card p {
  margin: 10px 0 0;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  background: #e9f5f1;
  border-radius: 999px;
}

.card h3,
.work-item h3,
.price-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
}

.works-list {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.work-item {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
}

.work-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  padding: 8px 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  background: #eef6ff;
  border: 1px solid #cfe3f8;
  border-radius: 8px;
}

.work-link:hover {
  color: var(--navy);
  background: #e4f0fc;
}

.work-label {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.document-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 960px;
  margin: 18px auto 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.document-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.document-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-links a:hover {
  color: var(--blue);
  border-color: #cfe3f8;
}

.document-box h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
}

.document-box p {
  margin: 0;
}

.note {
  max-width: 960px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 18px;
  height: 18px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
}

.process {
  padding: 26px;
  background: var(--navy);
  border-radius: var(--radius);
}

.process h3 {
  color: #ffffff;
}

.workflow {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.workflow div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.workflow span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.workflow p {
  margin: 5px 0 0;
  color: #dce8f5;
}

.testimonials {
  overflow: hidden;
  background: #ffffff;
}

.testimonial-marquee {
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  max-width: 1120px;
  margin: -18px auto 14px;
  padding: 0 clamp(20px, 5vw, 72px);
}

.testimonial-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-toggle {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px clamp(20px, 5vw, 72px) 18px;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 min(420px, 82vw);
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin: 0;
  padding: 4px 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  background: var(--accent);
  border-radius: 999px;
}

.price {
  margin: 10px 0;
  color: var(--navy) !important;
  font-size: 25px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  min-height: 58px;
  padding: 16px 20px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact {
  padding: clamp(68px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: linear-gradient(120deg, #123955 0%, #087fa8 58%, #159bd7 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact h2 {
  color: #ffffff;
}

.contact-copy > p:not(.eyebrow, .contact-offer, .small) {
  max-width: 620px;
}

.contact-offer {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 8px 14px;
  color: #ffffff !important;
  font-weight: 800;
  background: rgba(242, 184, 75, 0.24);
  border: 1px solid rgba(242, 184, 75, 0.5);
  border-radius: 999px;
}

.small {
  margin-top: 18px;
  font-size: 13px;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 25px;
}

.contact-points li::before {
  position: absolute;
  left: 0;
  color: #a9e7ff;
  font-weight: 900;
  content: "✓";
}

.contact-sub-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 26px;
}

.contact-sub-actions > a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.email-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.email-copy span {
  padding: 0 8px;
  font-size: 15px;
  font-weight: 800;
}

.email-copy button {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(6, 54, 79, 0.22);
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.form-heading h3 {
  margin: 4px 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.4;
}

.contact .form-heading p,
.contact .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form label small {
  margin-left: 4px;
  color: var(--muted);
  font-size: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  background: #fbfdff;
  border: 1px solid #b9d8e7;
  border-radius: 6px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(21, 155, 215, 0.2);
  border-color: var(--blue);
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
}

.email-copy button:hover {
  background: #eef6ff;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 800;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(23, 52, 93, 0.22);
}

.menu-open .floating-contact {
  opacity: 0 !important;
  pointer-events: none !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #70d2f5, var(--blue), #f4b650);
  transform-origin: left center;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready [data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

.motion-ready [data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.motion-ready [data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

.footer {
  padding: 24px 20px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .profile-grid,
  .service-layout,
  .pain-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-text {
    width: 82%;
  }

  .decision-nav,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .decision-nav {
    gap: 18px;
  }

  .contact-inner {
    gap: 36px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 52px;
  }

  .card-grid.four,
  .price-grid,
  .reason-grid,
  .service-plans,
  .career-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .conversion-flow::before {
    display: none;
  }

  .conversion-flow article:nth-child(3) {
    border-left: 0;
  }

  .conversion-flow article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .document-links {
    justify-content: flex-start;
  }
}

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

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 67px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 12px;
  }

  .nav-contact {
    margin-top: 6px;
    border-radius: 8px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 118px;
  }

  .hero-text {
    width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h1 em {
    white-space: normal;
  }

  .lead {
    font-size: 16px;
  }

  .decision-nav {
    padding-block: 26px;
  }

  .decision-links {
    grid-template-columns: 1fr;
  }

  .decision-links a {
    min-height: 92px;
  }

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

  .flow-legend {
    right: 18px;
    bottom: 46px;
    left: 18px;
    justify-content: center;
    gap: 6px;
    font-size: 8px;
  }

  .flow-legend i {
    width: 13px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: 30px;
  }

  .conversion-flow {
    grid-template-columns: 1fr;
  }

  .conversion-flow article {
    min-height: auto;
  }

  .conversion-flow article + article,
  .conversion-flow article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .conversion-flow strong {
    margin-top: 16px;
  }

  .conversion-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .email-copy {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .testimonial-controls {
    justify-content: space-between;
    margin-top: -12px;
  }

  .contact-form {
    padding: 20px;
  }

  .email-copy span,
  .email-copy button {
    width: 100%;
    text-align: center;
  }

  .card-grid.four,
  .price-grid,
  .reason-grid,
  .service-plans,
  .career-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .card,
  .reason-card,
  .service-plan,
  .career-card,
  .price-card,
  .profile-list,
  .work-item,
  .process,
  .document-box,
  .insight-box {
    padding: 20px;
  }

  .document-links,
  .document-links a {
    width: 100%;
  }

  .floating-contact {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-width: 112px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

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