:root {
  --brand: #ee5f8f;
  --brand-dark: #d94678;
  --brand-soft: #fff1f6;
  --brand-pale: #fff8fa;
  --ink: #222126;
  --muted: #6f6b75;
  --line: #eee8eb;
  --surface: #ffffff;
  --shadow: 0 22px 60px rgba(88, 41, 59, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid rgba(238, 232, 235, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(238, 95, 143, 0.28);
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #58545e;
  font-size: 14px;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 210, 226, 0.54), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(255, 230, 238, 0.74), transparent 31%),
    linear-gradient(180deg, #fff 0%, var(--brand-pale) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 290px;
  height: 290px;
  right: -140px;
  top: 140px;
  border: 70px solid rgba(238, 95, 143, 0.06);
}

.hero::after {
  width: 150px;
  height: 150px;
  left: 48%;
  bottom: -95px;
  background: rgba(238, 95, 143, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 68px;
  padding: 80px 0 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 13px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #f6d5e1;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(238, 95, 143, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 21px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--brand);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 680;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #f6749f 0%, var(--brand-dark) 100%);
  box-shadow: 0 12px 26px rgba(217, 70, 120, 0.22);
}

.button-secondary {
  color: #4e4851;
  background: #fff;
  border-color: var(--line);
}

.hero-note {
  margin: 20px 0 0;
  color: #8a838e;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: 255px;
  height: 505px;
  padding: 11px;
  background: #1f1d21;
  border: 3px solid #3d393f;
  border-radius: 42px;
  box-shadow: 0 32px 70px rgba(66, 28, 43, 0.23);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 50%;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  background: #1f1d21;
  border-radius: 0 0 14px 14px;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  background: #fff9fb;
  border-radius: 30px;
}

.ui-phone {
  width: 265px;
  height: auto;
  aspect-ratio: 750 / 1624;
  padding: 9px;
}

.ui-phone::before {
  display: none;
}

.phone-screen-real {
  background: #fff8fa;
  border-radius: 31px;
}

.phone-screen-real img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.phone-status {
  height: 39px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 5px;
  color: #4e4851;
  font-size: 9px;
  font-weight: 700;
}

.phone-head {
  padding: 12px 17px 17px;
  background: linear-gradient(150deg, #fff 0%, #ffe6ef 100%);
}

.phone-title {
  margin-bottom: 6px;
  color: #312d33;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.phone-desc {
  margin: 0;
  color: #827981;
  font-size: 10px;
}

.search-pill {
  height: 37px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 12px;
  color: #968d94;
  background: #fff;
  border: 1px solid #f5e1e8;
  border-radius: 11px;
  font-size: 10px;
  box-shadow: 0 6px 16px rgba(120, 73, 91, 0.06);
}

.phone-content {
  padding: 15px 14px;
}

.mini-label {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 760;
}

.ai-card {
  padding: 14px;
  color: #fff;
  background: linear-gradient(140deg, #f979a4 0%, #dc4e7d 100%);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(224, 75, 125, 0.2);
}

.ai-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.ai-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  line-height: 1.55;
}

.ai-tags {
  display: flex;
  gap: 5px;
}

.ai-tags span {
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  font-size: 8px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.product-mini {
  padding: 10px;
  background: #fff;
  border: 1px solid #f1e9ec;
  border-radius: 13px;
}

.product-image {
  height: 65px;
  margin-bottom: 8px;
  background: linear-gradient(145deg, #fff0f5, #f8dde7);
  border-radius: 9px;
  position: relative;
}

.product-image::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 46px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px 8px 12px 12px;
  box-shadow: 0 5px 12px rgba(99, 51, 68, 0.12);
}

.product-mini:nth-child(2) .product-image {
  background: linear-gradient(145deg, #f4efff, #e4d9fa);
}

.product-mini:nth-child(2) .product-image::before {
  width: 45px;
  height: 32px;
  transform: translate(-50%, -50%) rotate(-7deg);
  border-radius: 14px;
}

.product-line {
  height: 6px;
  margin-bottom: 6px;
  background: #eee8eb;
  border-radius: 999px;
}

.product-line.short {
  width: 60%;
  margin-bottom: 0;
  background: #f49ab8;
}

.float-card {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(238, 232, 235, 0.85);
  border-radius: 17px;
  box-shadow: 0 18px 40px rgba(78, 42, 56, 0.14);
}

.float-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.float-card span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
}

.float-card.one {
  left: 5px;
  top: 96px;
}

.float-card.two {
  right: 0;
  bottom: 80px;
}

.float-icon {
  width: 31px;
  height: 31px;
  float: left;
  display: grid;
  place-items: center;
  margin-right: 10px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 10px;
  font-weight: 800;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: #fcfafb;
}

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

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.section-heading p,
.about-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 245px;
  padding: 27px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #f5ccd9;
  box-shadow: 0 18px 42px rgba(95, 54, 70, 0.08);
}

.feature-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

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

.screen-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 17px 45px rgba(77, 41, 55, 0.07);
}

.screen-placeholder {
  aspect-ratio: 0.76;
  padding: 28px 25px;
  background: linear-gradient(155deg, #fff8fa 0%, #fbeaf0 100%);
}

.screen-card:nth-child(2) .screen-placeholder {
  background: linear-gradient(155deg, #fff 0%, #f9f4ff 100%);
}

.screen-card:nth-child(3) .screen-placeholder {
  background: linear-gradient(155deg, #fff 0%, #fff2f6 100%);
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.screen-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
}

.screen-pill {
  width: 75px;
  height: 10px;
  background: rgba(217, 70, 120, 0.13);
  border-radius: 999px;
}

.screen-title-line {
  width: 72%;
  height: 16px;
  margin-bottom: 10px;
  background: #3f3a42;
  border-radius: 999px;
}

.screen-text-line {
  width: 53%;
  height: 8px;
  margin-bottom: 25px;
  background: #cfc5ca;
  border-radius: 999px;
}

.screen-panel {
  min-height: 148px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(234, 221, 226, 0.86);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(89, 47, 63, 0.07);
}

.screen-panel.pink {
  background: linear-gradient(140deg, #f87aa5, #de4e7e);
  border: 0;
}

.screen-panel.pink .ui-line {
  background: rgba(255, 255, 255, 0.68);
}

.ui-line {
  width: 88%;
  height: 9px;
  margin-bottom: 11px;
  background: #dfd5da;
  border-radius: 999px;
}

.ui-line.small {
  width: 58%;
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.ui-grid span {
  height: 54px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(232, 215, 222, 0.8);
  border-radius: 13px;
}

.screen-caption {
  padding: 22px 24px 24px;
}

.screen-caption h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.screen-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.ui-shot-wrap {
  height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(155deg, #fff8fa 0%, #f8e9ef 100%);
  border-bottom: 1px solid var(--line);
}

.ui-screen-card:nth-child(2) .ui-shot-wrap {
  background: linear-gradient(155deg, #ffffff 0%, #f6f1ff 100%);
}

.ui-screen-card:nth-child(3) .ui-shot-wrap {
  background: linear-gradient(155deg, #ffffff 0%, #fff0f5 100%);
}

.ui-shot-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 16px 28px rgba(65, 35, 47, 0.12));
  transition: transform 0.25s ease;
}

.ui-shot-wrap:hover img {
  transform: translateY(-4px);
}

.shot-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.replace-tip {
  max-width: 740px;
  margin: 28px auto 0;
  padding: 13px 18px;
  color: #7b737b;
  background: #fff;
  border: 1px dashed #e9c7d2;
  border-radius: 13px;
  text-align: center;
  font-size: 13px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 75px;
}

.about-visual {
  position: relative;
  min-height: 410px;
  padding: 42px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff4f8 0%, #fbe1ea 100%);
  border-radius: var(--radius-lg);
}

.about-visual::after {
  content: "美";
  position: absolute;
  right: -20px;
  bottom: -75px;
  color: rgba(238, 95, 143, 0.1);
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
}

.about-statement {
  position: relative;
  z-index: 1;
  max-width: 285px;
  margin-top: 105px;
  font-size: 27px;
  font-weight: 760;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.about-statement span {
  color: var(--brand-dark);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.about-point {
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.about-point strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.about-point span {
  color: var(--muted);
  font-size: 13px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  padding: 58px 62px;
  background: #252227;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-copy > p {
  color: #bdb5bf;
}

.contact-list {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
}

.contact-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item dt {
  color: #aaa1ab;
}

.contact-item dd {
  margin: 0;
  color: #fff;
  overflow-wrap: anywhere;
}

.placeholder {
  color: #ffb7ce;
}

.site-footer {
  padding: 40px 0 28px;
  background: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #625c65;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--brand-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #948d96;
  font-size: 12px;
}

/* Policy pages */
.policy-hero {
  padding: 72px 0 62px;
  background: linear-gradient(180deg, #fff8fa 0%, #fff 100%);
  text-align: center;
}

.policy-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.policy-meta {
  color: var(--muted);
  font-size: 14px;
}

.policy-page {
  padding: 52px 0 96px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  justify-content: center;
  gap: 54px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 100px;
  padding: 18px;
  background: #fcfafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.policy-toc strong {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

.policy-toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 12px;
}

.policy-toc a:hover {
  color: var(--brand-dark);
}

.policy-content {
  color: #48434b;
  font-size: 15px;
  line-height: 1.95;
}

.policy-notice {
  margin-bottom: 34px;
  padding: 18px 20px;
  color: #705865;
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
}

.policy-content h2 {
  scroll-margin-top: 105px;
  margin: 44px 0 13px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.4;
}

.policy-content h3 {
  margin: 25px 0 9px;
  color: var(--ink);
  font-size: 17px;
}

.policy-content p {
  margin-bottom: 14px;
}

.policy-content ul,
.policy-content ol {
  padding-left: 23px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-table-wrap {
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.policy-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 13px;
}

.policy-table th,
.policy-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th:last-child,
.policy-table td:last-child {
  border-right: 0;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table th {
  color: #4c454d;
  background: #fcfafb;
  font-weight: 700;
}

.policy-back {
  display: inline-flex;
  margin-top: 38px;
  color: var(--brand-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
    gap: 25px;
  }

  .phone {
    transform: scale(0.88);
  }

  .float-card.one {
    left: -15px;
  }

  .float-card.two {
    right: -15px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-panel {
    gap: 42px;
  }

  .policy-layout {
    grid-template-columns: 180px minmax(0, 680px);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand-sub,
  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 68px 0 70px;
    text-align: center;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 16px;
  }

  .float-card.one {
    left: 0;
  }

  .float-card.two {
    right: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .showcase-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    max-width: 430px;
    margin: 0 auto;
  }

  .ui-shot-wrap {
    height: min(720px, 150vw);
  }

  .screen-placeholder {
    aspect-ratio: 0.95;
  }

  .about-grid {
    gap: 38px;
  }

  .about-visual {
    min-height: 330px;
  }

  .about-statement {
    margin-top: 60px;
  }

  .contact-panel {
    gap: 30px;
    padding: 38px 25px;
  }

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

  .policy-hero {
    padding: 54px 0 46px;
  }

  .policy-page {
    padding: 34px 0 72px;
  }

  .policy-layout {
    display: block;
  }

  .policy-toc {
    position: static;
    margin-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .phone {
    transform: scale(0.82);
  }

  .float-card {
    min-width: 133px;
    padding: 11px 12px;
  }

  .float-card.one {
    left: -8px;
    top: 75px;
  }

  .float-card.two {
    right: -8px;
    bottom: 65px;
  }

  .features,
  .about-points {
    grid-template-columns: 1fr;
  }

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

  .about-visual {
    padding: 28px;
  }

  .about-statement {
    font-size: 24px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-links {
    gap: 14px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* 2026 audit-ready enhancements */
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: #252227;
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(217, 70, 120, .28);
  outline-offset: 3px;
}

.nav-contact {
  padding: 8px 14px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 999px;
  font-weight: 700;
}

.hero-copy-wrap { max-width: 640px; }

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 22px;
  color: #7d7580;
  font-size: 12px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurance span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid #f1d5de;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

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

.service-card {
  position: relative;
  min-height: 245px;
  padding: 30px 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  right: -52px;
  bottom: -58px;
  background: var(--brand-soft);
  border-radius: 50%;
}

.service-index {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.policy-entry-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.policy-entry-row a {
  padding: 10px 16px;
  color: #564e57;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.contact-note {
  max-width: 470px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #9f969f !important;
  font-size: 12px !important;
  line-height: 1.8;
}

.footer-disclaimer {
  max-width: 840px;
  margin: 18px 0 0;
  color: #aaa2aa;
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-index { margin-bottom: 20px; }
}

@media (max-width: 760px) {
  .nav-contact { padding: 7px 12px; }
  .hero-assurance { justify-content: center; }
}

@media (max-width: 520px) {
  .hero-assurance {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }
  .hero-assurance span { justify-content: flex-start; }
  .service-card { padding: 25px 22px; }
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 10px;
}

.policy-summary > div {
  padding: 17px;
  background: #fcfafb;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.policy-summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.policy-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .policy-summary { grid-template-columns: 1fr; }
}


/* Legal document refinements */
.legal-notice p { margin-bottom: 10px; }
.legal-notice p:last-child { margin-bottom: 0; }
.legal-notice-title { color: var(--ink); font-weight: 800; }
.policy-guide-title { margin-top: 38px !important; }
.policy-inline-toc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 16px 0 32px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fcfafb; }
.policy-inline-toc a { color: #625c65; font-size: 14px; line-height: 1.55; }
.policy-inline-toc a:hover { color: var(--brand-dark); }
.policy-content h4 { margin: 20px 0 8px; color: var(--ink); font-size: 15px; line-height: 1.6; }
.legal-numbered-list, .legal-bullet-list { margin: 10px 0 18px; }
.legal-subitem { padding-left: 1.5em; }
.sdk-table { min-width: 940px; }
.sdk-table th, .sdk-table td { min-width: 110px; }
.sdk-table th:first-child, .sdk-table td:first-child { min-width: 48px; width: 48px; text-align: center; }
.contact-item a { color: inherit; text-decoration: none; }
.contact-item a:hover { color: var(--brand-dark); }
@media (max-width: 760px) { .policy-inline-toc { grid-template-columns: 1fr; } .policy-content { font-size: 14px; line-height: 1.85; } .policy-content h2 { font-size: 21px; } }
