:root {
  --primary: #155eef;
  --primary-dark: #0d45bb;
  --primary-soft: #eaf1ff;
  --navy: #10233f;
  --text: #31425c;
  --muted: #66758d;
  --line: #dfe7f3;
  --surface: #ffffff;
  --surface-alt: #f6f8fc;
  --success: #16a34a;
  --warning: #b45309;
  --shadow: 0 20px 60px rgba(20, 50, 100, 0.12);
  --shadow-soft: 0 10px 30px rgba(20, 50, 100, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 122, 255, .35), transparent 35%),
    linear-gradient(135deg, #0b1830, #102a52);
}
.section-header { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-header.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid #cfdcff;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #f5f8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #d7e5ff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--success); }
h1, h2, h3, h4 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  line-height: 1.14;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.55rem, 5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.15rem); }
h3 { font-size: 1.28rem; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.06rem, 1.8vw, 1.25rem); color: var(--muted); }
.section-dark .lead { color: #cbd7ea; }
.text-link { color: var(--primary); font-weight: 700; }
.text-link:hover { text-decoration: underline; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--primary);
  border-radius: 13px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(21, 94, 239, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--primary-dark); box-shadow: 0 14px 28px rgba(21, 94, 239, .25); }
.button-outline { color: var(--primary); background: #fff; box-shadow: none; }
.button-outline:hover { color: #fff; }
.button-light { color: var(--navy); background: #fff; border-color: #fff; box-shadow: none; }
.button-light:hover { color: var(--navy); background: #eaf1ff; }
.button-sm { min-height: 44px; padding: 10px 16px; font-size: .92rem; }
.button-block { width: 100%; }
.button-icon { font-size: 1rem; }

.topbar { color: #dce7f8; background: #0a1930; font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar a { color: #fff; font-weight: 700; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, .14); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(223,231,243,.9); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(16,35,63,.08); }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; }
.brand span { display: flex; flex-direction: column; line-height: 1.02; }
.brand strong { font-family: "Manrope", sans-serif; font-size: 1.02rem; letter-spacing: -.03em; }
.brand small { color: var(--primary); font-size: .86rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.primary-nav a { padding: 10px 13px; border-radius: 10px; color: #45556f; font-size: .94rem; font-weight: 700; }
.primary-nav a:hover, .primary-nav a.active { color: var(--primary); background: var(--primary-soft); }
.header-call { margin-left: 4px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 74px;
  background:
    radial-gradient(circle at 5% 0%, rgba(21,94,239,.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}
.hero::after { content: ""; position: absolute; right: -160px; bottom: -220px; width: 560px; height: 560px; border: 1px solid #dfe8fb; border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
.hero-copy h1 span { color: var(--primary); }
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.hero-note { display: flex; align-items: flex-start; gap: 10px; color: #5f6f86; font-size: .9rem; }
.hero-note svg { flex: 0 0 auto; margin-top: 3px; }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; }
.floating-badge {
  position: absolute;
  right: -8px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid #dbe5f5;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}
.floating-badge .icon-circle { flex: 0 0 auto; }
.floating-badge strong { display: block; color: var(--navy); font-size: .94rem; }
.floating-badge span { display: block; color: var(--muted); font-size: .79rem; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 96px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item strong { display: block; color: var(--navy); font-size: .95rem; }
.trust-item span { display: block; color: var(--muted); font-size: .82rem; }
.icon-circle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 1.15rem;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20,50,100,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); border-color: #c6d6fb; box-shadow: var(--shadow-soft); }
.card .icon-circle { margin-bottom: 20px; }
.card p { color: var(--muted); }
.card .text-link { display: inline-flex; align-items: center; gap: 7px; }
.service-list { margin: 0; padding: 0; list-style: none; }
.service-list li { position: relative; padding: 7px 0 7px 26px; color: #52627a; }
.service-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 17px; height: 17px; background: var(--success); -webkit-mask: url("/assets/icons/check.svg") center / contain no-repeat; mask: url("/assets/icons/check.svg") center / contain no-repeat; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.info-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.step-list { display: grid; gap: 20px; margin-top: 26px; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; }
.step-number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--primary); font-family: "Manrope", sans-serif; font-weight: 800; }
.step h3 { margin-bottom: 5px; font-size: 1.04rem; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0; }
.check-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.check-item span:first-child { color: var(--success); font-weight: 900; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #155eef, #0a3ca8);
  box-shadow: 0 24px 60px rgba(21,94,239,.28);
}
.cta-panel::after { content: ""; position: absolute; right: -60px; top: -110px; width: 260px; height: 260px; border-radius: 50%; border: 45px solid rgba(255,255,255,.09); }
.cta-panel h2 { color: #fff; margin-bottom: 8px; }
.cta-panel p { color: #dbe8ff; margin: 0; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; }

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 13px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; border: 0; color: var(--navy); background: #fff; text-align: left; font-weight: 800; }
.faq-question span:last-child { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: var(--primary-soft); transition: transform .2s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.open .faq-answer { display: block; }

.page-hero { padding: 70px 0; background: linear-gradient(180deg, #f6f9ff, #fff); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 50px; }
.page-hero h1 { font-size: clamp(2.35rem, 4.5vw, 4rem); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: .9rem; }
.breadcrumb a { color: var(--primary); font-weight: 700; }
.mini-panel { padding: 26px; border: 1px solid #dce6f8; border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.media-panel {
  overflow: hidden;
  border: 1px solid #dce6f8;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.media-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-side-stack {
  display: grid;
  gap: 18px;
  align-items: start;
}
.support-showcase-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.support-showcase .media-panel {
  max-width: 620px;
}
.contact-photo {
  margin-bottom: 2px;
}
.landing-agent {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #d8e3f5;
  border-radius: 16px;
  background: #f7faff;
}
.landing-agent img {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  object-fit: cover;
}
.landing-agent strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}
.landing-agent span {
  color: var(--muted);
  font-size: .9rem;
}

.mini-panel h3 { font-size: 1.1rem; }
.mini-panel p { color: var(--muted); }

.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy); font-weight: 700; font-size: .9rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid #cfd9e8;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21,94,239,.12); }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .84rem; }
.checkbox-field input { margin-top: 4px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 12px; font-weight: 600; }
.alert-error { color: #991b1b; background: #fef2f2; border: 1px solid #fecaca; }
.alert-success { color: #166534; background: #f0fdf4; border: 1px solid #bbf7d0; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--muted); margin-bottom: 8px; }
.contact-card a { color: var(--primary); font-size: 1.16rem; font-weight: 800; }
.notice { padding: 18px; border-left: 4px solid var(--warning); border-radius: 0 14px 14px 0; color: #744210; background: #fff8eb; }
.notice p { margin: 0; }

.support-layout { display: grid; grid-template-columns: 260px 1fr; gap: 42px; align-items: start; }
.support-nav { position: sticky; top: 110px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.support-nav strong { display: block; margin-bottom: 10px; color: var(--navy); }
.support-nav a { display: block; padding: 9px 10px; border-radius: 9px; color: #52627a; font-size: .92rem; font-weight: 600; }
.support-nav a:hover { color: var(--primary); background: var(--primary-soft); }
.support-content { display: grid; gap: 26px; }
.guide-card { scroll-margin-top: 110px; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.guide-card h2 { font-size: 1.75rem; }
.guide-card ol, .guide-card ul { margin: 14px 0 18px; padding-left: 22px; }
.guide-card li { margin: 9px 0; }
.guide-card .callout { padding: 15px 17px; border-radius: 13px; background: var(--primary-soft); color: #24497f; }

.landing-hero { padding: 58px 0 66px; background: linear-gradient(135deg, #f2f6ff 0%, #fff 58%, #eef4ff 100%); }
.landing-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 42px; align-items: center; }
.landing-copy h1 { font-size: clamp(2.4rem, 4.7vw, 4.3rem); }
.landing-copy h1 span { color: var(--primary); }
.issue-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.issue-pills span { padding: 8px 11px; border: 1px solid #ccd9f5; border-radius: 999px; color: #38547d; background: rgba(255,255,255,.85); font-size: .83rem; font-weight: 700; }
.landing-form { padding: 26px; border: 1px solid #d9e4f7; border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.landing-form h2 { font-size: 1.55rem; }
.landing-form .form-grid { grid-template-columns: 1fr; gap: 13px; }
.landing-form .form-field.full { grid-column: auto; }
.call-card { margin-top: 14px; padding: 16px; border-radius: 14px; text-align: center; color: #fff; background: var(--navy); }
.call-card small { display: block; color: #bcd0ec; }
.call-card a { display: block; margin-top: 3px; font-size: 1.28rem; font-weight: 800; }

.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { margin-top: 34px; font-size: 1.6rem; }
.legal-content h3 { margin-top: 24px; font-size: 1.15rem; }
.legal-content p, .legal-content li { color: #52627a; }
.legal-content a { color: var(--primary); text-decoration: underline; }

.site-footer { padding: 62px 0 96px; color: #b9c8dd; background: #0a1930; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 38px; }
.brand-footer { margin-bottom: 18px; color: #fff; }
.brand-footer small { color: #79a3ff; }
.footer-about { max-width: 310px; color: #aebed4; }
.footer-phone { color: #fff; font-family: "Manrope", sans-serif; font-size: 1.17rem; font-weight: 800; }
.site-footer h2 { margin-bottom: 15px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.site-footer .footer-grid > div > a:not(.brand):not(.footer-phone) { display: block; margin: 9px 0; color: #b9c8dd; font-size: .91rem; }
.site-footer .footer-grid > div > a:hover { color: #fff; }
.footer-trust p { font-size: .88rem; color: #aebed4; }
.footer-disclaimer { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); }
.footer-disclaimer p { margin: 0; color: #95a8c4; font-size: .79rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; color: #8296b3; font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #bcd0ec; }
.mobile-call-bar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .header-call { display: none; }
  .hero-grid, .landing-grid { gap: 28px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 115px 18px auto;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: grid; }
  .primary-nav a { padding: 13px; }
  .hero-grid, .landing-grid, .split-grid, .page-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .page-hero-grid { gap: 28px; }
  .support-layout { grid-template-columns: 1fr; }
  .support-nav { position: static; display: flex; gap: 6px; overflow-x: auto; white-space: nowrap; }
  .support-nav strong { display: none; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .landing-agent { grid-template-columns: 1fr; text-align: center; }
  .landing-agent img { width: 100%; height: auto; max-width: 180px; margin: 0 auto; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 48px 0; }
  .header-inner { min-height: 68px; }
  .brand img { width: 42px; height: 42px; }
  .primary-nav { top: 106px; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .floating-badge { position: static; margin: -12px auto 0; }
  .trust-grid, .card-grid, .check-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 4px 0; }
  .card, .info-panel, .form-card, .guide-card { padding: 22px; }
  .cta-panel { padding: 30px 24px; }
  .cta-actions { display: grid; }
  .cta-actions .button { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 110px; }
  .mobile-call-bar {
    position: fixed;
    z-index: 1200;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: block;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    background: rgba(10,25,48,.94);
    box-shadow: 0 16px 45px rgba(0,0,0,.3);
    backdrop-filter: blur(12px);
  }
  .mobile-call-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; border-radius: 12px; color: #fff; background: var(--primary); font-weight: 800; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* V3 visual and conversion-focused upgrades */
.header-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
  padding: 8px 14px 8px 9px;
  border: 1px solid #c8d8fb;
  border-radius: 14px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff, #f1f6ff);
  box-shadow: 0 8px 22px rgba(21,94,239,.12);
}
.header-phone-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}
.header-phone-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--primary);
  font-size: 1rem;
}
.header-phone-card small,
.header-phone-card strong {
  display: block;
  line-height: 1.15;
}
.header-phone-card small {
  margin-bottom: 3px;
  color: #64748b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.header-phone-card strong {
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
}

.hero-photo-frame {
  overflow: visible;
  min-height: 470px;
  border-radius: 30px;
}
.hero-photo-frame > img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #d7e1f2;
  border-radius: 30px;
  box-shadow: 0 30px 75px rgba(16,35,63,.18);
}
.home-support-badge {
  position: absolute;
  left: -26px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 285px;
  padding: 10px 15px 10px 10px;
  border: 1px solid #d4e0f4;
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 44px rgba(16,35,63,.2);
  backdrop-filter: blur(12px);
}
.home-support-badge img {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  object-fit: cover;
}
.home-support-badge small,
.home-support-badge a { display: block; }
.home-support-badge small {
  margin-bottom: 3px;
  color: #64748b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.home-support-badge a {
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.landing-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 66px 0 76px;
  background:
    radial-gradient(circle at 8% 0%, rgba(21,94,239,.14), transparent 34%),
    radial-gradient(circle at 95% 30%, rgba(59,130,246,.13), transparent 28%),
    linear-gradient(135deg, #f4f8ff 0%, #ffffff 55%, #eff5ff 100%);
}
.landing-hero-v2::before {
  content: "";
  position: absolute;
  inset: auto -140px -260px auto;
  width: 580px;
  height: 580px;
  border: 70px solid rgba(21,94,239,.05);
  border-radius: 50%;
}
.landing-grid-v2 {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.04fr .96fr;
  align-items: start;
  gap: 52px;
}
.landing-grid-v2 .landing-copy { padding-top: 18px; }
.landing-grid-v2 .landing-copy h1 { max-width: 760px; }
.hero-call-box {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 510px;
  margin: 28px 0 24px;
  padding: 17px 19px;
  border: 1px solid #c9d9fb;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(21,94,239,.13);
}
.hero-call-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, #155eef, #0a3ca8);
  box-shadow: 0 12px 25px rgba(21,94,239,.28);
  font-size: 1.35rem;
}
.hero-call-box span,
.hero-call-box a,
.hero-call-box small { display: block; }
.hero-call-box span {
  color: #52627a;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-call-box a {
  margin: 2px 0;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.hero-call-box small { color: #6b7b91; font-size: .82rem; }

.landing-form-v2 {
  overflow: hidden;
  padding: 0 28px 28px;
  border: 1px solid #d1ddf2;
  border-radius: 28px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 75px rgba(16,35,63,.16);
}
.landing-agent-v2 {
  position: relative;
  margin: 0 -28px 24px;
  min-height: 230px;
  overflow: hidden;
  background: #eaf1ff;
}
.landing-agent-v2 > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center 40%;
}
.agent-status {
  position: absolute;
  left: 18px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #14532d;
  background: rgba(240,253,244,.94);
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.agent-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
}
.agent-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  padding: 14px 15px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(90deg, rgba(10,25,48,.96), rgba(10,25,48,.78));
  backdrop-filter: blur(8px);
}
.agent-copy strong,
.agent-copy span { display: block; }
.agent-copy strong {
  margin-bottom: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}
.agent-copy span { color: #d8e5f6; font-size: .84rem; }
.landing-number-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: 15px;
  color: #dbe8ff;
  background: var(--navy);
}
.landing-number-strip span { font-size: .82rem; }
.landing-number-strip a {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.trust-strip-strong {
  border-block-color: #cedcf4;
  box-shadow: 0 12px 40px rgba(16,35,63,.06);
}
.landing-issues-section { background: #fff; }
.issue-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.issue-image-card {
  overflow: hidden;
  border: 1px solid #dbe4f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(16,35,63,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.issue-image-card:hover {
  transform: translateY(-5px);
  border-color: #b8cbef;
  box-shadow: 0 24px 52px rgba(16,35,63,.13);
}
.issue-image-wrap {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: #eef3fa;
}
.issue-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.issue-image-card:hover .issue-image-wrap img { transform: scale(1.025); }
.portrait-focus-bottom img { object-position: center 78%; }
.portrait-focus-center img { object-position: center 48%; }
.issue-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(10,25,48,.84);
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.issue-card-body { padding: 25px 26px 28px; }
.issue-card-body h3 { margin-bottom: 10px; font-size: 1.35rem; }
.issue-card-body p { color: var(--muted); }

.support-agent-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(16,35,63,.17);
}
.support-agent-panel > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.support-agent-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(90deg, rgba(10,25,48,.96), rgba(21,94,239,.85));
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.support-agent-overlay span,
.support-agent-overlay a { display: block; }
.support-agent-overlay span {
  margin-bottom: 3px;
  color: #d7e5fb;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.support-agent-overlay a {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #dbe4f2;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.process-card > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 35px;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.process-card h3 { font-size: 1.22rem; }
.process-card p { color: var(--muted); }
.cta-panel-phone { grid-template-columns: 1fr auto; }
.cta-kicker {
  display: block;
  margin-bottom: 7px;
  color: #cfe0ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cta-phone-block {
  position: relative;
  z-index: 2;
  min-width: 310px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.cta-phone-block small,
.cta-phone-block a { display: block; }
.cta-phone-block small { margin-bottom: 5px; color: #dbe8ff; }
.cta-phone-block a {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
}

@media (max-width: 1160px) {
  .header-phone-card { padding-right: 10px; }
  .header-phone-card small { display: none; }
  .header-phone-card strong { font-size: .86rem; }
  .landing-grid-v2 { gap: 30px; }
}

@media (max-width: 1020px) {
  .header-phone-card { display: none; }
  .hero-photo-frame > img { height: 430px; }
  .home-support-badge { left: 18px; }
}

@media (max-width: 820px) {
  .landing-grid-v2 { grid-template-columns: 1fr; }
  .landing-grid-v2 .landing-copy { padding-top: 0; }
  .landing-form-v2 { max-width: 680px; width: 100%; margin-inline: auto; }
  .issue-image-grid { grid-template-columns: 1fr; }
  .support-agent-panel,
  .support-agent-panel > img { min-height: 430px; height: 430px; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-panel-phone { grid-template-columns: 1fr; }
  .cta-phone-block { min-width: 0; }
}

@media (max-width: 620px) {
  .landing-hero-v2 { padding: 48px 0 58px; }
  .hero-call-box { grid-template-columns: 48px 1fr; padding: 14px; }
  .hero-call-icon { width: 48px; height: 48px; }
  .hero-call-box a { font-size: 1.42rem; }
  .landing-form-v2 { padding: 0 18px 20px; border-radius: 22px; }
  .landing-agent-v2 { margin-inline: -18px; }
  .landing-agent-v2 > img { height: 220px; }
  .landing-number-strip { display: grid; text-align: center; }
  .landing-number-strip a { font-size: 1.08rem; }
  .issue-image-wrap { height: 235px; }
  .issue-card-body { padding: 21px; }
  .support-agent-panel,
  .support-agent-panel > img { min-height: 370px; height: 370px; }
  .support-agent-overlay a { font-size: 1.24rem; }
  .hero-photo-frame { min-height: 360px; }
  .hero-photo-frame > img { height: 360px; border-radius: 22px; }
  .home-support-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -34px 12px 0;
    min-width: 0;
  }
}


/* Reusable SVG icon system */
.svg-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.button-svg { width: 19px; height: 19px; }
.note-svg { width: 20px; height: 20px; color: var(--primary); }
.inline-phone-svg { width: 18px; height: 18px; margin-right: 4px; }
.icon-circle .svg-icon { width: 23px; height: 23px; }
.header-phone-icon .svg-icon { width: 20px; height: 20px; }
.hero-call-icon .svg-icon { width: 27px; height: 27px; }
.mobile-call-bar .svg-icon { width: 19px; height: 19px; }
.check-item .check-svg { width: 20px; height: 20px; color: var(--success); margin-top: 1px; }
.faq-toggle-icon .svg-icon { width: 16px; height: 16px; }

/* Professional printer support page */
.support-pro-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 4% 0%, rgba(21,94,239,.14), transparent 31%),
    radial-gradient(circle at 94% 18%, rgba(59,130,246,.12), transparent 26%),
    linear-gradient(135deg, #f5f8ff 0%, #fff 58%, #eef4ff 100%);
  border-bottom: 1px solid #dce6f5;
}
.support-pro-hero::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border: 75px solid rgba(21,94,239,.05);
  border-radius: 50%;
}
.support-pro-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 68px;
  align-items: center;
}
.support-pro-copy h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}
.support-pro-copy h1 span { color: var(--primary); }
.support-pro-copy .lead { max-width: 720px; }
.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}
.support-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #51637e;
  font-size: .9rem;
  font-weight: 700;
}
.support-hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.support-hero-points .svg-icon { width: 18px; height: 18px; color: var(--primary); }
.support-pro-visual { position: relative; max-width: 500px; justify-self: end; }
.support-square-image {
  overflow: hidden;
  border: 1px solid #d1ddf0;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(16,35,63,.2);
}
.support-square-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.support-floating-call {
  position: absolute;
  left: -48px;
  right: 22px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(100deg, rgba(10,25,48,.97), rgba(21,94,239,.92));
  box-shadow: 0 18px 45px rgba(10,25,48,.28);
  backdrop-filter: blur(12px);
}
.support-floating-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.15);
}
.support-floating-icon .svg-icon { width: 27px; height: 27px; }
.support-floating-call small,
.support-floating-call strong,
.support-floating-call em { display: block; }
.support-floating-call small {
  color: #cfe0fb;
  font-size: .7rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.support-floating-call strong {
  margin: 2px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}
.support-floating-call em { color: #dbe8fb; font-size: .75rem; font-style: normal; }

.support-issue-section { padding: 72px 0; background: #fff; }
.support-issue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.support-issue-card {
  display: grid;
  grid-template-columns: 52px 1fr 24px;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid #dbe4f2;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f9fbff);
  box-shadow: 0 9px 25px rgba(16,35,63,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.support-issue-card:hover {
  transform: translateY(-4px);
  border-color: #b9ccf1;
  box-shadow: 0 18px 38px rgba(16,35,63,.11);
}
.support-issue-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--primary);
  background: var(--primary-soft);
}
.support-issue-icon .svg-icon { width: 25px; height: 25px; }
.support-issue-card strong,
.support-issue-card small { display: block; }
.support-issue-card strong { margin-bottom: 3px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1rem; }
.support-issue-card small { color: var(--muted); font-size: .8rem; }
.support-card-arrow { width: 19px; height: 19px; color: #91a3bd; transition: transform .2s ease, color .2s ease; }
.support-issue-card:hover .support-card-arrow { color: var(--primary); transform: translateX(3px); }

.support-guide-section { padding-top: 82px; }
.support-pro-layout { display: grid; grid-template-columns: 286px 1fr; gap: 36px; align-items: start; }
.support-pro-sidebar { position: sticky; top: 104px; display: grid; gap: 20px; }
.support-pro-nav {
  padding: 18px;
  border: 1px solid #dbe4f2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16,35,63,.06);
}
.support-sidebar-title {
  display: block;
  margin: 2px 8px 12px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.support-pro-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 12px;
  color: #56677f;
  font-size: .9rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}
.support-pro-nav a:hover { color: var(--primary); background: var(--primary-soft); }
.support-pro-nav .svg-icon { width: 19px; height: 19px; }
.support-sidebar-care {
  overflow: hidden;
  border: 1px solid #d6e1f1;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16,35,63,.09);
}
.support-sidebar-care > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.support-sidebar-care-body { padding: 19px; }
.support-sidebar-care-body > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.support-sidebar-care-body > span .svg-icon { width: 17px; height: 17px; }
.support-sidebar-care-body strong { display: block; margin-bottom: 7px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1.12rem; }
.support-sidebar-care-body p { color: var(--muted); font-size: .86rem; }
.support-sidebar-care-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}
.support-sidebar-care-body a .svg-icon { width: 19px; height: 19px; }
.support-pro-content { display: grid; gap: 28px; }
.support-guide-card {
  scroll-margin-top: 112px;
  padding: 34px;
  border: 1px solid #dbe4f2;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16,35,63,.065);
}
.support-guide-head { display: grid; grid-template-columns: 58px 1fr; gap: 15px; align-items: center; margin-bottom: 24px; }
.support-guide-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--primary);
  background: var(--primary-soft);
}
.support-guide-icon.warning { color: #c2410c; background: #fff1e8; }
.support-guide-icon.color { color: #7c3aed; background: #f3e8ff; }
.support-guide-icon .svg-icon { width: 28px; height: 28px; }
.support-guide-label {
  display: block;
  margin-bottom: 3px;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.support-guide-head h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.3rem); }
.support-summary { max-width: 800px; color: #596a82; font-size: 1.04rem; }
.support-guide-body { display: grid; gap: 28px; align-items: start; }
.support-guide-with-image { grid-template-columns: 1fr 260px; }
.support-guide-with-image.image-left { grid-template-columns: 260px 1fr; }
.support-guide-with-image > img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border: 1px solid #dbe4f2;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16,35,63,.1);
}
.professional-steps { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.professional-steps li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.professional-steps li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: .86rem;
  font-weight: 800;
}
.professional-steps strong { display: block; margin: 2px 0 2px; color: var(--navy); }
.professional-steps p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.55; }
.professional-steps.compact { margin-top: 0; }
.support-tip {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #cfe0ff;
  border-radius: 15px;
  color: #2e4d7d;
  background: #f1f6ff;
}
.support-tip .svg-icon { width: 22px; height: 22px; color: var(--primary); margin-top: 1px; }
.support-tip p { margin: 0; }
.warning-tip { border-color: #fed7aa; color: #7c3d12; background: #fff7ed; }
.warning-tip .svg-icon { color: #c2410c; }
.diagnostic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.diagnostic-grid > div {
  min-height: 138px;
  padding: 17px;
  border: 1px solid #dce5f2;
  border-radius: 17px;
  background: #f9fbff;
}
.diagnostic-grid .svg-icon { width: 24px; height: 24px; margin-bottom: 16px; color: var(--primary); }
.diagnostic-grid strong,
.diagnostic-grid span { display: block; }
.diagnostic-grid strong { margin-bottom: 5px; color: var(--navy); }
.diagnostic-grid span { color: var(--muted); font-size: .82rem; line-height: 1.45; }
.support-clean-list { margin: 16px 0 0; padding-left: 23px; }
.support-clean-list li { margin: 9px 0; padding-left: 4px; }
.support-check-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.support-check-panel { padding: 22px; border: 1px solid #dbe4f2; border-radius: 20px; background: #f9fbff; }
.support-check-panel h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 17px; font-size: 1.08rem; }
.support-check-panel h3 .svg-icon { width: 21px; height: 21px; color: var(--primary); }
.svg-check-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.svg-check-list li { position: relative; padding-left: 28px; color: #53647b; }
.svg-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--success);
  -webkit-mask: url("/assets/icons/check.svg") center / contain no-repeat;
  mask: url("/assets/icons/check.svg") center / contain no-repeat;
}
.svg-check-list.large { gap: 14px; }
.troubleshooting-timeline { display: grid; gap: 0; margin-top: 8px; }
.troubleshooting-timeline > div { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 24px; }
.troubleshooting-timeline > div:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: #d9e4f5; }
.troubleshooting-timeline > div > span {
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0fa;
  border-radius: 15px;
  color: var(--primary);
  background: #f3f7ff;
}
.troubleshooting-timeline > div > span .svg-icon { width: 22px; height: 22px; }
.troubleshooting-timeline strong { display: block; margin: 3px 0 3px; color: var(--navy); }
.troubleshooting-timeline p { margin: 0; color: var(--muted); }
.support-danger {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid #fecaca;
  border-radius: 16px;
  color: #8b1f1f;
  background: #fff5f5;
}
.support-danger .svg-icon { width: 24px; height: 24px; margin-top: 1px; }
.support-danger p { margin: 0; }
.support-final-cta-section { background: #fff; }
.support-final-cta {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #10233f, #155eef);
  box-shadow: 0 28px 65px rgba(21,94,239,.24);
}
.support-final-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,.13);
}
.support-final-icon .svg-icon { width: 31px; height: 31px; }
.support-final-cta span { display: block; margin-bottom: 5px; color: #cfe0ff; font-size: .73rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.support-final-cta h2 { margin-bottom: 7px; color: #fff; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.support-final-cta p { margin: 0; color: #dce8fb; }

@media (max-width: 1060px) {
  .support-pro-hero-grid { gap: 38px; }
  .support-issue-grid { grid-template-columns: repeat(2, 1fr); }
  .support-pro-layout { grid-template-columns: 240px 1fr; gap: 26px; }
  .diagnostic-grid { grid-template-columns: repeat(2, 1fr); }
  .support-guide-with-image,
  .support-guide-with-image.image-left { grid-template-columns: 1fr; }
  .support-guide-with-image > img { width: 100%; max-width: 500px; height: auto; aspect-ratio: 1 / 1; order: -1; }
  .support-guide-with-image.image-left > img { order: 0; }
}

@media (max-width: 820px) {
  .support-pro-hero { padding: 58px 0 68px; }
  .support-pro-hero-grid { grid-template-columns: 1fr; }
  .support-pro-visual { justify-self: center; width: 100%; }
  .support-floating-call { left: 20px; }
  .support-pro-layout { grid-template-columns: 1fr; }
  .support-pro-sidebar { position: static; }
  .support-pro-nav { display: flex; gap: 7px; overflow-x: auto; white-space: nowrap; }
  .support-sidebar-title { display: none; }
  .support-pro-nav a { flex: 0 0 auto; }
  .support-sidebar-care { display: grid; grid-template-columns: 170px 1fr; }
  .support-sidebar-care > img { height: 100%; }
  .support-check-columns { grid-template-columns: 1fr; }
  .support-final-cta { grid-template-columns: 58px 1fr; }
  .support-final-cta .button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 620px) {
  .support-pro-copy h1 { font-size: 2.55rem; }
  .support-hero-actions { display: grid; }
  .support-hero-actions .button { width: 100%; }
  .support-hero-points { display: grid; }
  .support-square-image { border-radius: 22px; }
  .support-floating-call { position: relative; left: auto; right: auto; bottom: auto; margin: -28px 12px 0; grid-template-columns: 48px 1fr; }
  .support-floating-icon { width: 48px; height: 48px; }
  .support-floating-call strong { font-size: 1.05rem; }
  .support-issue-section { padding: 58px 0; }
  .support-issue-grid { grid-template-columns: 1fr; }
  .support-guide-section { padding-top: 60px; }
  .support-sidebar-care { grid-template-columns: 112px 1fr; }
  .support-sidebar-care-body { padding: 15px; }
  .support-sidebar-care-body p { display: none; }
  .support-sidebar-care-body a { font-size: .93rem; }
  .support-guide-card { padding: 22px; border-radius: 21px; }
  .support-guide-head { grid-template-columns: 48px 1fr; gap: 12px; }
  .support-guide-icon { width: 48px; height: 48px; border-radius: 14px; }
  .support-guide-icon .svg-icon { width: 23px; height: 23px; }
  .support-guide-head h2 { font-size: 1.55rem; }
  .diagnostic-grid { grid-template-columns: 1fr; }
  .diagnostic-grid > div { min-height: 0; }
  .support-tip { grid-template-columns: 21px 1fr; padding: 14px; }
  .support-final-cta { grid-template-columns: 1fr; padding: 29px 24px; text-align: center; }
  .support-final-icon { margin: 0 auto; }
}
