:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --text: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.08);
  --brand: #ef443b;
  --brand-dark: #d93025;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner,
.hero-actions,
.nav,
.header-actions,
.trust-tags,
.cta-actions,
.switch-card-content {
  display: flex;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.header-inner,
.footer-inner {
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-inner {
  display: flex;
}

.footer-inner {
  display: flex;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}

.brand-text {
  display: inline-block;
  transform: translateY(1px);
}

.brand-mark {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--brand), #ff7b72);
  transform: rotate(45deg);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(239, 68, 59, 0.25);
}

.brand-mark-image {
  display: block;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  object-fit: contain;
  flex: 0 0 46px;
}

.nav {
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.nav a,
.header-link {
  color: #344054;
  font-size: 14px;
}

.nav a {
  transition: background 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  background: linear-gradient(135deg, #ef443b 0%, #ff8a3d 52%, #ffb36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 12px;
  flex: 0 0 250px;
  min-width: 250px;
}

.header-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #fff7f6 0%, #fff1ef 100%);
  color: #d93025;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  flex: 0 0 56px;
}

.lang-switch:hover {
  background: linear-gradient(135deg, #ef443b 0%, #ff8a3d 52%, #ffb36b 100%);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(239, 68, 59, 0.22);
}

.sales-hotline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  min-height: 26px;
}

.sales-hotline-icon-image {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.site-header .btn {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

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

.btn-primary {
  background: linear-gradient(180deg, #fff7f6 0%, #fff1ef 100%);
  color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef443b 0%, #ff8a3d 52%, #ffb36b 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 68, 59, 0.22);
}

.btn-primary-static,
.btn-primary-static:hover {
  background: linear-gradient(135deg, #ef443b 0%, #ff7a59 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 68, 59, 0.2);
}

.btn-secondary {
  border: 0;
  background: linear-gradient(180deg, #fff7f6 0%, #fff1ef 100%);
  color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ef443b 0%, #ff8a3d 52%, #ffb36b 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 68, 59, 0.22);
}

.hero {
  padding: 56px 0 34px;
  background:
    radial-gradient(circle at 16% 30%, rgba(239,68,59,0.16), transparent 18%),
    radial-gradient(circle at 62% 100%, rgba(239,68,59,0.1), transparent 16%),
    linear-gradient(180deg, #fff 0%, #fff8f7 100%);
}

.hero-inner,
.solutions-inner,
.security-inner {
  display: grid;
  gap: 34px;
}

.hero-inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-inner-visual-left {
  grid-template-columns: 0.76fr 1.24fr;
  gap: 196px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.cta h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(60px, 6.6vw, 96px);
  letter-spacing: -0.05em;
  max-width: 680px;
  font-weight: 400;
}

.hero-highlight {
  color: var(--brand);
  font-weight: 800;
}

.hero-text,
.section-head p,
.solution-item p,
.feature-card p,
.security-card p,
.step-card p,
.faq-item p,
.footer-desc,
.copyright {
  color: var(--muted);
}

.hero-text {
  margin: 28px 0 34px;
  font-size: 20px;
  line-height: 1.9;
  max-width: 620px;
  color: #111827;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -144px;
}

.hero-reference-image {
  display: block;
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
}

.hero-copy-right {
  padding-top: 8px;
  padding-left: 56px;
}

section { padding: 44px 0; }

.trust-strip {
  background: #fff;
  border-top: 1px solid rgba(17,24,39,0.04);
}

.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 82px;
}

.trust-strip p { margin: 0; font-weight: 600; }
.trust-tags { gap: 12px; flex-wrap: wrap; }
.trust-tags span,
.solution-index,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff5f4;
  color: var(--brand-dark);
  font-weight: 700;
}

.version-banner {
  padding: 30px 0 24px;
}

.version-banner-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  padding: 38px 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 50%, rgba(239, 68, 59, 0.12), transparent 24%),
    linear-gradient(135deg, #fff8f7 0%, #ffffff 62%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.version-mini {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 700;
}

.version-banner-copy h2 {
  margin: 0;
  font-size: clamp(52px, 5.6vw, 84px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.version-banner-copy h2 span {
  color: var(--brand);
  font-weight: 800;
}

.version-banner-copy p:last-of-type {
  margin: 22px 0 28px;
  max-width: 560px;
  color: #344054;
  line-height: 1.9;
  font-size: 18px;
}

.version-banner-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.left { margin-bottom: 24px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); }
.section-head p { margin: 14px 0 0; line-height: 1.85; }

.switch-module {
  padding: 28px 0 64px;
  background: #ffffff;
}

.switch-module .container {
  width: min(1240px, calc(100% - 40px));
}

.switch-module-head {
  margin-bottom: 36px;
}

.switch-module-head h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #1f2937;
}

.switch-module-head h2 span {
  color: #d08a5a;
}

.switch-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.switch-card {
  position: relative;
  aspect-ratio: 1 / 0.94;
  min-height: 0;
  overflow: hidden;
  background: #f3f0f5;
}

.switch-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.switch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 14, 35, 0.06) 0%, rgba(24, 14, 35, 0.18) 42%, rgba(24, 14, 35, 0.38) 100%);
  z-index: 1;
}

.switch-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.switch-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 28px 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: #ffffff;
  z-index: 2;
}

.switch-card-content h3,
.switch-card-content p {
  margin: 0;
}

.switch-card-content h3 {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.switch-card-content p {
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.12;
  font-weight: 300;
}

.switch-card-access .switch-card-overlay {
  background: linear-gradient(180deg, rgba(235, 105, 97, 0.16) 0%, rgba(200, 72, 70, 0.26) 100%);
}

.switch-card-software .switch-card-overlay {
  background: linear-gradient(180deg, rgba(94, 87, 155, 0.14) 0%, rgba(63, 52, 128, 0.30) 100%);
}

.switch-card-license .switch-card-overlay {
  background: linear-gradient(180deg, rgba(186, 91, 151, 0.16) 0%, rgba(148, 62, 130, 0.28) 100%);
}

.feature-grid,
.security-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.security-card,
.step-card,
.faq-item,
.solution-item,
.cta-inner {
  border: 1px solid var(--line);
  background: #fff;
}

.feature-card,
.security-card,
.step-card,
.solution-item {
  border-radius: 24px;
  padding: 26px;
}

.feature-card,
.step-card,
.solution-item,
.testimonial-card,
.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.solution-item:hover,
.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(239, 68, 59, 0.08);
  border-color: rgba(239, 68, 59, 0.16);
}

.feature-card h3,
.security-card h3,
.step-card h3,
.solution-item h3,
.faq-item summary {
  margin: 0;
  font-size: 22px;
}

.feature-card:hover h3,
.step-card:hover h3,
.solution-item:hover h3,
.testimonial-card:hover strong,
.faq-item:hover summary {
  background: linear-gradient(135deg, #ef443b 0%, #ff8a3d 52%, #ffb36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p,
.security-card p,
.step-card p,
.solution-item p,
.faq-item p { margin: 12px 0 0; line-height: 1.8; }

.customer-trust {
  padding: 18px 0 34px;
}

.customer-trust-inner {
  text-align: center;
}

.customer-trust h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #111827;
}

.customer-trust h2 span {
  color: var(--brand);
  font-weight: 800;
}

.customer-logo-strip-wrap {
  width: 100%;
  margin-top: 34px;
}

.customer-logo-marquee {
  overflow: hidden;
  width: 100%;
}

.customer-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: customer-marquee 28s linear infinite;
}

.customer-logo-strip {
  display: block;
  width: 1400px;
  min-width: 1400px;
  flex: 0 0 auto;
  height: auto;
  margin-right: 36px;
}

.download-customer-trust {
  width: 100vw;
  margin: 0 0 72px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.download-customer-trust .customer-trust-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

@keyframes customer-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1436px);
  }
}

.solutions-inner {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.solution-list {
  display: grid;
  gap: 16px;
}

.solution-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.security {
  padding: 28px 0 34px;
  background: #ffffff;
}

.security-banner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #f5443b 0%, #ff8a2d 100%);
}

.security-banner-full {
  width: 100%;
  max-width: 100%;
}

.security-banner-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding-left: 42px;
}

.security-banner-visual img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.security-banner-copy {
  padding: 34px 72px 34px 18px;
  color: #ffffff;
}

.security-eyebrow {
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}

.security-banner-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 640px;
}

.security-banner-text {
  margin: 16px 0 22px;
  max-width: 620px;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.8;
}

.security-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 0;
}

.security-option {
  text-align: center;
  color: #ffffff;
}

.security-option-icon-image {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
}

.security-option h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.security-cta {
  background: #ffffff;
  color: #f04438;
  box-shadow: none;
}

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

.step-card span {
  width: 44px;
  padding: 0;
  margin-bottom: 18px;
}

.needs-module {
  padding: 56px 0 28px;
  background: #fff;
}

.needs-module-inner {
  width: min(1180px, calc(100% - 40px));
}

.needs-module-head {
  max-width: 100%;
  margin-bottom: 54px;
}

.needs-module-head h2 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #111827;
}

.needs-module-head h2 strong {
  font-weight: 800;
}

.needs-module-head h2 span {
  color: #d49a78;
}

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

.needs-item {
  text-align: center;
  padding: 0 12px;
}

.needs-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d98f72;
  font-size: 42px;
  font-weight: 300;
}

.needs-item h3 {
  margin: 0;
  color: #d98f72;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.35;
  font-weight: 400;
}

.needs-item p {
  margin: 18px auto 0;
  max-width: 340px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.recommendation-module {
  padding: 52px 0 32px;
  background: #fff;
}

.recommendation-module-inner {
  width: min(1240px, calc(100% - 40px));
}

.recommendation-module-head {
  max-width: 100%;
  margin-bottom: 28px;
}

.recommendation-module-head h2 {
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #111827;
}

.recommendation-strip-wrap {
  display: flex;
  justify-content: center;
}

.recommendation-strip-image {
  display: block;
  width: min(100%, 1180px);
  height: auto;
}

.testimonials-module {
  padding: 56px 0 34px;
  background: #ffffff;
}

.testimonials-module-inner {
  width: min(1240px, calc(100% - 40px));
}

.testimonials-module-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.testimonials-module-head h2 span {
  color: var(--brand-dark);
}

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

.testimonial-card {
  padding: 30px 28px;
  border-radius: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.testimonial-quote {
  margin: 18px 0 24px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.95;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 17px;
  color: #111827;
  transition: background 0.25s ease, color 0.25s ease;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 15px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 20px;
  padding: 20px 22px;
}
.faq-item summary { cursor: pointer; list-style: none; transition: background 0.25s ease, color 0.25s ease; }
.faq-item summary::-webkit-details-marker { display: none; }

.cta-inner {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #fff2f1 0%, #ffffff 100%);
}

.site-footer {
  margin-top: 24px;
  background: #111827;
  color: rgba(255, 255, 255, 0.88);
}

.footer-top,
.footer-bottom,
.footer-contact-list,
.footer-meta-links {
  display: flex;
}

.footer-top {
  padding: 56px 0 34px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand-block {
  max-width: 360px;
}

.site-footer .brand,
.site-footer .brand-text,
.footer-column h3,
.footer-column a,
.footer-contact-list a,
.footer-meta-links a,
.copyright {
  color: #ffffff;
}

.site-footer .brand-mark {
  box-shadow: 0 10px 24px rgba(239, 68, 59, 0.18);
}

.footer-desc {
  max-width: 360px;
  margin: 18px 0 0;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list {
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials .social-instagram {
  color: #e1306c;
}

.footer-socials .social-facebook {
  color: #1877f2;
}

.footer-socials .social-linkedin {
  color: #0a66c2;
}

.footer-socials .social-youtube {
  color: #ff0000;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-contact-list a,
.footer-column a,
.footer-meta-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-contact-list a:hover,
.footer-column a:hover,
.footer-meta-links a:hover {
  background: linear-gradient(135deg, #ef443b 0%, #ff8a3d 52%, #ffb36b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  flex: 1;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  padding: 20px 0 28px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta-links {
  gap: 18px;
  flex-wrap: wrap;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 980px) {
  .hero-inner,
  .solutions-inner,
  .feature-grid,
  .step-grid,
  .version-banner-card,
  .security-banner,
  .faq-inner,
  .security-options,
  .needs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .security-banner-copy {
    padding: 30px 22px;
  }

  .security-banner-visual {
    padding-left: 0;
  }

  .trust-strip-inner,
  .cta-inner,
  .footer-top,
  .footer-bottom,
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    display: flex;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
  }

  .header-cta-row {
    flex-wrap: wrap;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
  }

  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .hero h1 { font-size: 42px; }
  .container { width: min(1180px, calc(100% - 28px)); }
  .hero-inner-visual-left { gap: 28px; }
  .hero-visual-image { margin-left: 0; }
  .hero-reference-image { width: 100%; }
  .version-banner-card { padding: 22px 18px; }
  .version-banner-copy h2 { font-size: 40px; }
  .customer-trust h2 { font-size: 34px; }
  .customer-logo-strip { width: 980px; min-width: 980px; margin-right: 24px; }
  .switch-module .container { width: min(1240px, calc(100% - 28px)); }
  .footer-top {
    padding: 38px 0 24px;
    gap: 28px;
  }
  .footer-socials {
    gap: 10px;
  }
  .footer-bottom {
    padding: 18px 0 24px;
  }
  .switch-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .switch-card {
    aspect-ratio: 1 / 1.02;
    min-height: 0;
  }
  .switch-card-content {
    padding: 0 14px 14px;
  }
  .switch-card-content h3 {
    font-size: 20px;
  }
  .switch-card-content p {
    font-size: 20px;
  }
  .needs-module {
    padding: 42px 0 18px;
  }
  .needs-module-head {
    margin-bottom: 34px;
  }
  .needs-module-head h2 {
    font-size: 32px;
  }
  .needs-grid {
    gap: 28px;
  }
  .needs-item p {
    font-size: 16px;
    line-height: 1.8;
  }
  .recommendation-module {
    padding: 42px 0 20px;
  }
  .recommendation-module-head h2 {
    font-size: 34px;
  }
  .testimonials-module {
    padding: 42px 0 22px;
  }
  .testimonials-module-head {
    margin-bottom: 26px;
  }
  .testimonial-card {
    padding: 24px 20px;
  }
  .testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
  }
  .download-detail-hero {
    padding: 48px 0 28px;
  }
  .download-options-grid,
  .download-info-grid,
  .download-feature-module,
  .download-highlights-grid,
  .download-more-info-grid,
  .download-tutorial-module {
    grid-template-columns: 1fr;
  }
  .download-hero-compact h1 {
    font-size: 42px;
  }
  .download-feature-visual {
    justify-content: center;
  }
  .download-os-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .feature-card,
  .security-card,
  .step-card,
  .solution-item,
  .cta-inner,
  .faq-item { padding: 22px 18px; }
}

.download-detail-hero {
  padding: 72px 0 36px;
  background: #ffffff;
  overflow: hidden;
}

.download-hero-compact {
  text-align: center;
  max-width: 1180px;
}

.download-hero-kicker {
  margin: 0 0 20px;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 700;
}

.download-hero-compact h1 {
  margin: 0;
  font-size: clamp(68px, 7vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 300;
}

.download-hero-compact h1 span,
.platform-head h2 span {
  color: #111827;
  font-weight: 300;
}


.download-breadcrumbs a,
.download-text-link {
  color: var(--brand-dark);
}

.download-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: #667085;
  font-size: 14px;
}

.download-breadcrumbs a:hover,
.download-text-link:hover,
.download-hero-disclaimer a:hover {
  color: var(--brand);
}

.download-os-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  justify-items: center;
}

.download-os-item {
  width: 100%;
  min-height: 156px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 20px 14px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
}

.download-os-item.active {
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.download-os-item:hover {
  border-color: rgba(239,68,59,0.45);
  box-shadow: inset 0 0 0 1px rgba(239,68,59,0.12), 0 14px 30px rgba(239,68,59,0.08);
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.download-os-icon-image {
  display: block;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  flex: 0 0 58px;
  transition: none;
}

.download-os-item:hover .download-os-icon-image {
  transform: none;
  opacity: 1;
  filter: none;
}

.download-os-windows:hover .download-os-icon-image { content: url('../assets/download-icons/windows-hover.png'); }
.download-os-macos:hover .download-os-icon-image { content: url('../assets/download-icons/macos-hover.png'); }
.download-os-android:hover .download-os-icon-image { content: url('../assets/download-icons/android-hover.png'); }
.download-os-ios:hover .download-os-icon-image { content: url('../assets/download-icons/ios-hover.png'); }
.download-os-appletv:hover .download-os-icon-image { content: url('../assets/download-icons/appletv-hover.png'); }
.download-os-linux:hover .download-os-icon-image { content: url('../assets/download-icons/linux-hover.png'); }
.download-os-freebsd:hover .download-os-icon-image { content: url('../assets/download-icons/freebsd-hover.png'); }
.download-os-raspberrypi:hover .download-os-icon-image { content: url('../assets/download-icons/raspberrypi-hover.png'); }
.download-os-chromeos:hover .download-os-icon-image { content: url('../assets/download-icons/chromeos-hover.png'); }

.download-os-item:hover span {
  color: var(--brand-dark);
}

.download-os-item span {
  color: #444444;
  font-size: 18px;
  font-weight: 600;
}

.download-feature-module {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 72px;
}

.download-feature-copy {
  max-width: 520px;
}

.download-feature-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.14;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.download-feature-desc {
  margin: 0 0 18px;
  color: #475467;
  line-height: 1.85;
}

.download-feature-visual {
  display: flex;
  justify-content: flex-end;
}

.download-feature-image {
  display: block;
  width: min(100%, 760px);
  height: auto;
}

.download-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.download-info-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  padding: 32px;
}

.download-package-card,
.download-option-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.download-summary-label,
.download-text-link {
  color: var(--brand-dark);
}

.download-summary-label {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.download-options-section,
.download-info-section,
.download-highlights-section,
.download-more-info-section,
.download-faq-section {
  padding: 48px 0;
}

.download-options-section {
  padding-top: 230px;
}

.compact-head {
  max-width: 100%;
}

.platform-head {
  margin-bottom: 34px;
}

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

.download-option-card {
  padding: 28px;
}

.download-option-card.active {
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.platform-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff5f4;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 800;
}

.download-option-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.download-option-card p,
.download-info-card li span {
  color: #475467;
  line-height: 1.85;
}

.download-text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
}

button.download-text-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.detail-info-grid {
  align-items: stretch;
}

.download-steps-list,
.download-check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.download-steps-list li,
.download-check-list li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff8f7;
  border: 1px solid rgba(239,68,59,0.08);
}

.download-steps-list strong,
.download-check-list li {
  color: #111827;
}

.download-highlights-section-inline {
  margin-top: 64px;
  margin-bottom: 72px;
}

.download-tutorial-module {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 72px;
}

.download-tutorial-media {
  position: relative;
}

.download-tutorial-video {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  background: #000;
}

.download-tutorial-copy {
  max-width: 520px;
}

.download-tutorial-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.16;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.download-highlights-head {
  margin-bottom: 36px;
}

.download-highlights-head h2 {
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 300;
}

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

.download-highlight-item {
  text-align: center;
  padding: 10px 18px;
}

.download-highlight-symbol {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 34px;
  line-height: 1;
}

.download-highlight-item h3 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 500;
}

.download-highlight-item p {
  margin: 0 auto;
  max-width: 340px;
  color: #475467;
  line-height: 1.9;
}

.download-more-info-head {
  margin-bottom: 42px;
}

.download-more-info-head h2 {
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 300;
}

.download-more-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.download-more-info-item {
  text-align: center;
}

.download-more-info-item h3 {
  margin: 0 0 24px;
  color: #d9776a;
  font-size: 30px;
  font-weight: 300;
}

.download-more-info-item p {
  margin: 0 auto;
  max-width: 340px;
  color: #344054;
  line-height: 2;
}

.download-more-info-item a {
  color: #d9776a;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.modal-open {
  overflow: hidden;
}

.platform-modal[hidden] {
  display: none;
}

.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.platform-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  backdrop-filter: blur(4px);
}

.platform-modal-dialog {
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  padding: 26px;
}

.platform-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.platform-modal-header h2 {
  margin: 0;
  font-size: 28px;
}

.platform-modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #fff5f4;
  color: var(--brand-dark);
  font-size: 24px;
  cursor: pointer;
}

.platform-modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 68vh;
  overflow: auto;
  padding-right: 8px;
}

.platform-modal-changelog .platform-modal-log-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17,24,39,0.08);
}

.platform-modal-changelog .platform-modal-log-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  color: #111827;
}

.platform-modal-changelog .platform-modal-log-item span {
  color: #667085;
}

.remote-detail-hero {
  padding: 52px 0 40px;
}

.remote-detail-hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.remote-detail-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 300;
}

.remote-detail-text {
  margin: 0 0 28px;
  max-width: 620px;
  color: #475467;
  font-size: 18px;
  line-height: 1.9;
}

.remote-detail-actions {
  margin-bottom: 18px;
}

.remote-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.remote-detail-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff8f7;
  color: var(--brand-dark);
  font-weight: 600;
}

.remote-detail-visual img {
  display: block;
  width: 100%;
  border-radius: 24px;
}

.remote-customer-trust {
  padding-top: 8px;
  padding-bottom: 64px;
}

.remote-benefits-section,
.remote-scenarios-section,
.remote-steps-section,
.remote-faq-section {
  padding: 56px 0;
}

.remote-section-head {
  margin-bottom: 36px;
}

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

.remote-benefit-card,
.remote-scenario-card {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.remote-benefit-card h3,
.remote-scenario-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #111827;
}

.remote-benefit-card p,
.remote-scenario-card p,
.remote-scenarios-copy p {
  margin: 0;
  color: #475467;
  line-height: 1.9;
}

.remote-scenarios-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.remote-scenarios-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.remote-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.remote-scenario-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 800;
}

.remote-feature-band {
  padding: 20px 0 56px;
}

.remote-feature-band-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 0;
  background: #fff7f5;
}

.remote-feature-band-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remote-feature-band-copy {
  padding: clamp(32px, 5vw, 64px);
}

.remote-feature-band-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.remote-feature-band-copy > p:last-of-type {
  margin: 0 0 28px;
  color: #475467;
  line-height: 1.9;
}

@media (max-width: 980px) {
  .remote-detail-hero-inner,
  .remote-scenarios-inner,
  .remote-feature-band-inner,
  .remote-benefits-grid,
  .remote-scenarios-grid {
    grid-template-columns: 1fr;
  }

  .remote-detail-copy h1 {
    font-size: 44px;
  }
}

.about-hero {
  padding: 56px 0 40px;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: start;
}

.about-hero-copy h1,
.about-intro-band h2,
.about-global-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.about-hero-copy p:last-child,
.about-intro-band-inner > p,
.about-global-copy p,
.about-leader-card p,
.about-value-card p,
.about-global-points p {
  margin: 0;
  color: #475467;
  line-height: 1.9;
}

.about-hero-side {
  display: grid;
  gap: 16px;
}

.about-stat-card {
  padding: 24px 26px;
  border-radius: 24px;
  background: #fff8f7;
  border: 1px solid rgba(239, 68, 59, 0.1);
}

.about-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  color: var(--brand-dark);
}

.about-stat-card span {
  color: #344054;
  line-height: 1.7;
}

.about-intro-band,
.about-leadership-section,
.about-values-section,
.about-global-section,
.about-faq-section,
.about-cta-section {
  padding: 56px 0;
}

.about-intro-band-inner,
.about-global-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.about-section-head {
  margin-bottom: 38px;
}

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

.about-leader-card,
.about-value-card,
.about-global-points article {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.about-leader-avatar {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff1ee;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-leader-avatar-image {
  display: block;
  width: 120px;
  height: 120px;
  margin-bottom: 22px;
  border-radius: 28px;
}

.about-leader-card h3,
.about-value-card h3,
.about-global-points h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #111827;
}

.about-customer-trust {
  padding-top: 10px;
  padding-bottom: 64px;
}

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

.about-global-points {
  display: grid;
  gap: 22px;
}

.about-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff7f5 0%, #fff1ee 100%);
  border: 1px solid rgba(239, 68, 59, 0.1);
}

.about-cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.about-cta-card p:last-child {
  margin: 0;
  max-width: 620px;
  color: #475467;
  line-height: 1.9;
}

.about-cta-actions {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .about-hero-inner,
  .about-intro-band-inner,
  .about-global-inner,
  .about-leadership-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero-copy h1,
  .about-intro-band h2,
  .about-global-copy h2 {
    font-size: 42px;
  }
}

.services-hero,
.services-grid-section,
.services-process-section,
.services-value-band,
.services-faq-section,
.services-cta-section {
  padding: 56px 0;
}

.services-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: start;
}

.services-hero-copy h1,
.services-process-copy h2,
.services-value-main h2 {
  margin: 0 0 18px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.services-hero-copy p:last-of-type,
.services-process-copy p,
.services-value-main p,
.service-card p,
.services-process-item p,
.services-value-side p {
  margin: 0;
  color: #475467;
  line-height: 1.9;
}

.services-hero-actions {
  margin-top: 28px;
}

.services-hero-points {
  display: grid;
  gap: 16px;
}

.services-hero-point {
  padding: 24px 26px;
  border-radius: 24px;
  background: #fff8f7;
  border: 1px solid rgba(239, 68, 59, 0.1);
}

.services-hero-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
  color: var(--brand-dark);
}

.services-hero-point span {
  color: #344054;
  line-height: 1.7;
}

.services-section-head {
  margin-bottom: 38px;
}

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

.service-card,
.services-value-side article {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.service-card h3,
.services-process-item h3,
.services-value-side h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #111827;
}

.services-process-inner,
.services-value-band-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.services-process-list,
.services-value-side {
  display: grid;
  gap: 22px;
}

.services-process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.services-process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff1ee;
  color: var(--brand-dark);
  font-weight: 800;
}

.services-value-band-inner {
  padding: 0;
}

.services-customer-trust {
  padding-top: 8px;
  padding-bottom: 64px;
}

@media (max-width: 980px) {
  .services-hero-inner,
  .services-grid,
  .services-process-inner,
  .services-value-band-inner {
    grid-template-columns: 1fr;
  }

  .services-hero-copy h1,
  .services-process-copy h2,
  .services-value-main h2 {
    font-size: 42px;
  }
}

.nav a[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 700;
}

.help-hero {
  padding-bottom: 56px;
}

.help-hero-inner,
.help-guidance-grid,
.help-topic-grid {
  display: grid;
  gap: 24px;
}

.help-hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.help-breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.help-breadcrumb span {
  margin: 0 8px;
}

.help-search-panel,
.help-overview-card,
.help-topic-card,
.help-guidance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.help-search-panel {
  margin-top: 26px;
  padding: 22px 24px;
}

.help-search-label,
.overview-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.help-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.help-search-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff4f2;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.help-overview-card {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fff6f4 100%);
}

.help-overview-card h2,
.help-guidance-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.2;
}

.help-overview-list,
.help-check-list,
.help-topic-card ul {
  margin: 0;
  padding-left: 20px;
  color: #475467;
  line-height: 1.75;
}

.help-trust-strip {
  border-top: 1px solid var(--line);
}

.help-topic-section,
.help-guidance-section {
  padding: 84px 0;
}

.help-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.help-topic-card {
  padding: 28px;
}

.help-topic-card.accent {
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.help-topic-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #fff0ed;
  color: var(--brand-dark);
  font-weight: 800;
}

.help-topic-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.help-topic-card p,
.help-guidance-card p,
.help-overview-card p,
.help-hero-copy .hero-text {
  color: #475467;
}

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

.help-guidance-card {
  padding: 34px;
}

.help-guidance-card.soft {
  background: #f9fafb;
}

.help-cta .cta-inner {
  align-items: center;
}

@media (max-width: 1080px) {
  .help-hero-inner,
  .help-guidance-grid,
  .help-topic-grid {
    grid-template-columns: 1fr;
  }

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

  .header-actions {
    flex: 0 0 auto;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .help-topic-grid {
    grid-template-columns: 1fr;
  }

  .help-overview-card,
  .help-topic-card,
  .help-guidance-card,
  .help-search-panel {
    border-radius: 22px;
    padding: 22px;
  }

  .help-overview-card h2,
  .help-guidance-card h2 {
    font-size: 24px;
  }
}

.policy-page {
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 18%, #ffffff 100%);
}

.policy-hero {
  padding-bottom: 48px;
}

.policy-hero-layout,
.policy-summary-grid {
  display: grid;
  gap: 24px;
}

.policy-hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.policy-hero-layout-single {
  grid-template-columns: 1fr;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.policy-meta span,
.policy-toc a,
.policy-contact-card a {
  color: #475467;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff4f2;
  font-size: 14px;
}

.policy-toc,
.policy-summary-card,
.policy-doc,
.policy-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.policy-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
}

.policy-toc strong {
  font-size: 18px;
}

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

.policy-summary-band {
  padding: 0 0 28px;
}

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

.policy-summary-card {
  padding: 30px;
  border-radius: 28px;
}

.policy-summary-card.soft {
  background: #fff8f7;
}

.policy-summary-card h2,
.policy-block h2 {
  margin: 0 0 14px;
}

.policy-summary-card p,
.policy-block p,
.policy-block li {
  color: #475467;
  line-height: 1.85;
}

.policy-doc-section {
  padding: 24px 0 92px;
}

.policy-doc-wrap {
  max-width: 980px;
}

.policy-doc {
  border-radius: 32px;
  padding: 42px;
}

.policy-doc-plain p {
  margin: 0;
  color: #475467;
  line-height: 1.9;
}

.policy-doc-plain p + p {
  margin-top: 22px;
}

.policy-block + .policy-block {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.policy-block ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.policy-contact-card {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 22px;
  background: #fff7f5;
}

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

  .policy-toc {
    position: static;
  }
}

@media (max-width: 720px) {
  .policy-doc {
    padding: 24px;
    border-radius: 24px;
  }

  .policy-toc,
  .policy-summary-card {
    padding: 22px;
    border-radius: 22px;
  }

  .policy-meta {
    gap: 10px;
  }
}
