:root {
  --blue-950: #073554;
  --blue-900: #06456d;
  --blue-700: #057fbd;
  --blue-600: #0094d8;
  --cyan-500: #0ab4c4;
  --cyan-100: #e8f9fb;
  --sky-50: #f4fafc;
  --ink: #172b36;
  --muted: #61727c;
  --line: #dbe8ed;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 53, 84, 0.12);
  --radius: 28px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 232, 237, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 48px;
  border-radius: 13px;
  background: var(--white);
}

.brand-mark img {
  width: 94px;
  max-width: none;
  transform: translate(-23px, -18px);
}

.brand-copy {
  display: grid;
  line-height: 1.35;
}

.brand-copy strong {
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #40545f;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

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

.main-nav .nav-call {
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 148, 216, 0.2);
}

.main-nav .nav-call:hover {
  color: var(--white);
  background: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    linear-gradient(112deg, #ffffff 0%, #ffffff 51%, rgba(230, 247, 251, 0.78) 51.1%, #f4fcfd 100%);
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(0, 148, 216, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 148, 216, 0.13) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  right: -140px;
  bottom: -220px;
  width: 580px;
  height: 580px;
  border: 120px solid rgba(10, 180, 196, 0.08);
}

.hero-orb-two {
  top: 120px;
  left: 53%;
  width: 170px;
  height: 170px;
  background: rgba(0, 148, 216, 0.08);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.hero-copy {
  padding: 72px 0 100px;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
}

.hero h1 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan-500), var(--blue-600));
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #4f626c;
  font-size: 18px;
  line-height: 1.95;
}

.hero-lead strong {
  color: var(--blue-700);
  font-weight: 800;
}

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

.button {
  min-height: 56px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(100deg, var(--cyan-500), var(--blue-600));
  box-shadow: 0 14px 30px rgba(0, 148, 216, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(0, 148, 216, 0.32);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--blue-600);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  color: #667984;
  font-size: 12px;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row b {
  color: var(--blue-600);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.portrait-stage {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.portrait-ring {
  position: absolute;
  z-index: 0;
  right: 2%;
  bottom: 76px;
  width: min(38vw, 470px);
  height: min(38vw, 470px);
  border: 54px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.agent-portrait {
  position: absolute;
  z-index: 1;
  right: 9%;
  bottom: 0;
  width: min(31vw, 390px);
  max-height: 650px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 22px rgba(6, 69, 109, 0.14));
}

.hero-badge {
  position: absolute;
  z-index: 3;
  top: 108px;
  right: 0;
  padding: 13px 19px;
  display: grid;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(7, 53, 84, 0.1);
  font-size: 12px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  color: var(--blue-600);
  font-size: 16px;
}

.name-card {
  position: absolute;
  z-index: 4;
  right: 12%;
  bottom: 55px;
  min-width: 220px;
  padding: 16px 21px;
  display: grid;
  color: var(--white);
  background: rgba(6, 69, 109, 0.93);
  border-left: 5px solid var(--cyan-500);
  box-shadow: 0 18px 38px rgba(7, 53, 84, 0.2);
  backdrop-filter: blur(10px);
}

.name-card span {
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.name-card strong {
  margin-top: 2px;
  font-size: 25px;
  letter-spacing: 0.15em;
}

.name-card small {
  font-size: 11px;
  opacity: 0.75;
}

.quick-contact {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--blue-950);
}

.quick-contact-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quick-contact-inner > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.quick-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.quick-contact p strong {
  margin-right: 8px;
  color: var(--white);
}

.quick-contact a {
  flex: 0 0 auto;
  color: #a7f4f2;
  font-size: 14px;
  font-weight: 800;
}

.quick-contact a span {
  margin-left: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #52e1c3;
  box-shadow: 0 0 0 6px rgba(82, 225, 195, 0.12);
}

.section {
  padding: 112px 0;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.kicker {
  margin-bottom: 14px;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-copy {
  padding-top: 33px;
  border-top: 1px solid var(--line);
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
}

.about-copy .about-lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.7;
}

.signature {
  margin-top: 35px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.signature span {
  color: var(--muted);
  font-size: 12px;
}

.signature strong {
  color: var(--blue-700);
  font-size: 22px;
  letter-spacing: 0.16em;
}

.services {
  background: var(--sky-50);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 445px;
  padding: 36px 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 15px 45px rgba(7, 53, 84, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.service-card.featured {
  color: var(--white);
  background: linear-gradient(155deg, var(--blue-900), var(--blue-600));
}

.service-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(0, 148, 216, 0.18);
  font-size: 51px;
  font-weight: 900;
  line-height: 1;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.15);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--cyan-100);
  border-radius: 18px;
  font-size: 30px;
  font-weight: 500;
}

.featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.service-card h3 {
  margin: 26px 0 12px;
  color: var(--blue-950);
  font-size: 24px;
}

.featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card ul {
  padding: 20px 0 0;
  margin: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.featured ul {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card li {
  position: relative;
  padding: 5px 0 5px 22px;
  color: #50636d;
  font-size: 13px;
  font-weight: 600;
}

.featured li {
  color: rgba(255, 255, 255, 0.86);
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-500);
  font-weight: 900;
}

.featured li::before {
  color: #9df0eb;
}

.promise {
  background: var(--white);
}

.promise-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.promise-card {
  position: relative;
  overflow: hidden;
  padding: 55px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0%, rgba(10, 180, 196, 0.5), transparent 36%),
    var(--blue-950);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.promise-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 40px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.promise-card .kicker {
  color: #8ce8e5;
}

.promise-card h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.45;
}

.promise-card > p:not(.kicker) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  color: #9df0eb;
  font-weight: 800;
}

.promise-list > div {
  display: grid;
  padding: 29px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--line);
}

.promise-list > div:first-child {
  border-top: 1px solid var(--line);
}

.promise-list > div > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.promise-list section h3 {
  margin: 0 0 5px;
  color: var(--blue-950);
  font-size: 21px;
}

.promise-list section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  background: var(--sky-50);
}

.process-list {
  position: relative;
  display: grid;
  padding: 0;
  margin: 65px 0 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 29px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--line);
}

.process-list li {
  position: relative;
  padding: 0 22px;
  text-align: center;
}

.process-list span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin: 0 auto 21px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(7, 53, 84, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 19px;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  color: var(--blue-950);
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--cyan-100);
  border-radius: 50%;
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 50px 24px 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(100deg, var(--blue-900), var(--blue-600));
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(30deg, white 12%, transparent 12.5%, transparent 87%, white 87.5%, white),
    linear-gradient(150deg, white 12%, transparent 12.5%, transparent 87%, white 87.5%, white);
  background-size: 100px 175px;
}

.contact-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.kicker.light {
  color: #a4f0ed;
}

.contact-inner h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.35;
}

.contact-inner > div:first-child > p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.contact-phone {
  padding: 15px 24px;
  display: grid;
  color: var(--blue-950);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(7, 53, 84, 0.18);
}

.contact-phone small {
  font-size: 11px;
  font-weight: 700;
}

.contact-phone strong {
  font-size: 26px;
  letter-spacing: 0.04em;
}

.copy-button {
  padding: 12px 18px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 65px 0 25px;
  color: rgba(255, 255, 255, 0.7);
  background: #062d47;
}

.footer-main {
  display: grid;
  padding-bottom: 45px;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: 70px;
}

.footer-logo {
  width: 210px;
  height: 66px;
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
}

.footer-logo img {
  width: 270px;
  max-width: none;
  transform: translate(-30px, -90px);
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 13px;
}

.footer-contact {
  display: grid;
  align-content: start;
}

.footer-contact span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-contact a {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.footer-contact p {
  margin: 0;
  color: var(--white);
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav a {
  font-size: 13px;
}

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

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.mobile-call {
  display: none;
}

.line-float {
  position: fixed;
  z-index: 210;
  right: 26px;
  bottom: 26px;
  width: 64px;
  height: 64px;
  display: block;
}

.line-float img {
  width: 64px;
  height: 64px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 106px;
  bottom: 24px;
  padding: 12px 18px;
  color: var(--white);
  pointer-events: none;
  background: var(--blue-950);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(10, 180, 196, 0.75);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 79px;
    right: 0;
    left: 0;
    height: calc(100dvh - 79px);
    padding: 32px 28px;
    display: grid;
    align-content: start;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .main-nav a {
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav .nav-call {
    margin-top: 20px;
    padding: 15px 20px;
    text-align: center;
    border: 0;
    border-radius: 999px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 72px 0 28px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .portrait-ring {
    right: 10%;
    width: 440px;
    height: 440px;
  }

  .agent-portrait {
    right: 19%;
    width: 350px;
  }

  .hero-badge {
    right: 11%;
  }

  .name-card {
    right: 19%;
  }

  .about-layout,
  .promise-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-copy {
    padding-top: 28px;
  }

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

  .service-card {
    min-height: auto;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0;
  }

  .process-list::before {
    display: none;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 0.7fr;
    gap: 35px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 30px, 1160px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 68px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark img {
    width: 83px;
    transform: translate(-20px, -16px);
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .main-nav {
    top: 71px;
    height: calc(100dvh - 71px);
  }

  .hero {
    background: linear-gradient(160deg, #ffffff 0%, #ffffff 53%, #effbfd 53.1%, #f6fcfd 100%);
  }

  .hero-layout {
    width: 100%;
  }

  .hero-copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 50px 0 20px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(37px, 11.5vw, 51px);
    line-height: 1.3;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 26px;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 12px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .portrait-ring {
    right: 50%;
    bottom: 35px;
    width: 350px;
    height: 350px;
    border-width: 40px;
    transform: translateX(50%);
  }

  .agent-portrait {
    right: 50%;
    width: 290px;
    max-height: 430px;
    transform: translateX(50%);
  }

  .hero-badge {
    top: 70px;
    right: 16px;
  }

  .name-card {
    right: 20px;
    bottom: 25px;
    min-width: 190px;
    padding: 13px 16px;
  }

  .name-card strong {
    font-size: 21px;
  }

  .quick-contact {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .about-copy .about-lead {
    font-size: 19px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    padding: 30px 25px;
    border-radius: 22px;
  }

  .promise-card {
    padding: 38px 27px;
    border-radius: 25px;
  }

  .promise-list > div {
    grid-template-columns: 51px 1fr;
  }

  .process-list {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-list li {
    padding: 19px 0;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 17px;
    text-align: left;
  }

  .process-list span {
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-list p {
    margin-top: 4px;
  }

  .faq-list summary {
    padding-right: 46px;
    font-size: 15px;
  }

  .contact-cta {
    padding: 65px 0;
  }

  .contact-actions {
    width: 100%;
    display: grid;
  }

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

  .copy-button {
    min-height: 49px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .mobile-call {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(100deg, var(--cyan-500), var(--blue-600));
    box-shadow: 0 -8px 25px rgba(7, 53, 84, 0.15);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .toast {
    right: 15px;
    bottom: 158px;
    left: 15px;
    text-align: center;
  }

  .line-float {
    right: 18px;
    bottom: 82px;
    width: 58px;
    height: 58px;
  }

  .line-float img {
    width: 58px;
    height: 58px;
  }
}

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