.se-v2 {
  --navy: #082a55;
  --navy-deep: #061d3b;
  --ink: #17263a;
  --muted: #52647b;
  --green: #19aa67;
  --green-dark: #087342;
  --green-soft: #e9f7f0;
  --blue: #1769c2;
  --blue-soft: #edf5fd;
  --soft: #f4f7fa;
  --line: #d8e2eb;
  --card: #ffffff;
  --warm: #fff6e7;
  --shadow: 0 22px 58px rgba(8, 42, 85, 0.1);
  --max: 1180px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  scroll-behavior: smooth;
}

.se-v2 * { box-sizing: border-box; }
.se-v2 a { color: inherit; text-decoration: none; }
.se-v2 img { display: block; max-width: 100%; height: auto; }
.se-v2 button, .se-v2 input, .se-v2 textarea { font: inherit; }
.se-v2 h1, .se-v2 h2, .se-v2 h3, .se-v2 p { overflow-wrap: anywhere; }
.se-v2 section { scroll-margin-top: 92px; }

.se-v2 .skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.se-v2 .offer-strip {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 7px 20px;
  color: #ffffff;
  background: var(--navy-deep);
  font-size: 13px;
}

.se-v2 .offer-strip span { color: #8fe7ba; font-weight: 900; }
.se-v2 .offer-strip strong { font-weight: 750; }
.se-v2 .offer-strip a { color: #b7f5d2; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

.se-v2 .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 26px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.se-v2 .site-header.scrolled { box-shadow: 0 8px 30px rgba(8, 42, 85, 0.08); }
.se-v2 .brand { display: flex; align-items: center; width: 174px; }
.se-v2 .brand img { width: 174px; height: auto; }

.se-v2 .desktop-nav, .se-v2 .header-actions { display: flex; align-items: center; justify-content: flex-end; }
.se-v2 .desktop-nav { gap: 24px; font-size: 14px; font-weight: 850; }
.se-v2 .desktop-nav a { position: relative; padding: 27px 0 23px; }
.se-v2 .desktop-nav a::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; background: var(--green); content: ""; transform: scaleX(0); transition: transform 160ms ease; }
.se-v2 .desktop-nav a:hover, .se-v2 .desktop-nav a:focus-visible, .se-v2 .desktop-nav a.active { color: var(--green-dark); }
.se-v2 .desktop-nav a:hover::after, .se-v2 .desktop-nav a:focus-visible::after, .se-v2 .desktop-nav a.active::after { transform: scaleX(1); }
.se-v2 .header-actions { gap: 16px; }
.se-v2 .login-link { color: var(--navy); font-size: 14px; font-weight: 900; }

.se-v2 .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.se-v2 .button:hover { transform: translateY(-1px); }
.se-v2 .button:focus-visible, .se-v2 .text-link:focus-visible, .se-v2 .login-link:focus-visible, .se-v2 .site-footer a:focus-visible, .se-v2 .price-anchor-nav a:focus-visible { outline: 3px solid rgba(23, 105, 194, 0.35); outline-offset: 3px; }
.se-v2 .button.primary { color: #fff; background: var(--green-dark); box-shadow: 0 14px 30px rgba(11, 134, 80, 0.2); }
.se-v2 .button.primary:hover { background: #076f42; }
.se-v2 .button.secondary { color: var(--navy); background: #fff; border-color: #c9d7e3; }
.se-v2 .button.secondary:hover { border-color: var(--green); box-shadow: 0 10px 24px rgba(8, 42, 85, 0.08); }
.se-v2 .button.small { min-height: 42px; padding: 0 20px; font-size: 14px; }
.se-v2 .light-button { color: var(--navy-deep); background: #fff; }
.se-v2 .outline-light { color: #fff; background: transparent; border-color: rgba(255, 255, 255, 0.55); }

.se-v2 .menu-button {
  display: none;
  min-width: 54px;
  min-height: 44px;
  padding: 0 11px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.se-v2 .menu-button span { display: block; }
.se-v2 .mobile-nav { position: fixed; top: 114px; right: 18px; left: 18px; z-index: 60; display: none; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.se-v2 .mobile-nav.open { display: grid; }
.se-v2 .mobile-nav > a:not(.button) { padding: 12px; color: var(--navy); font-weight: 850; border-bottom: 1px solid #eef2f5; }
.se-v2 .mobile-nav .button { margin-top: 10px; }

.se-v2 .home-hero, .se-v2 .inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 54px;
  align-items: center;
  min-height: 680px;
  padding: 78px max(24px, calc((100vw - var(--max)) / 2));
  background: #f1f7f5;
}

.se-v2 .inner-hero { min-height: 620px; background: #f5f8fb; }
.se-v2 .agent-hero { grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.65fr); }
.se-v2 .hero-copy { min-width: 0; }
.se-v2 .eyebrow { margin: 0 0 10px; color: var(--green-dark); font-size: 13px; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.se-v2 .eyebrow.light { color: #9df0c4; }
.se-v2 .hero-copy h1, .se-v2 .price-hero h1 { max-width: 720px; margin: 0; color: var(--navy-deep); font-size: clamp(44px, 5vw, 66px); line-height: 1.08; letter-spacing: -0.035em; }
.se-v2 .hero-lead { max-width: 700px; margin: 24px 0 0; color: #4b5d72; font-size: 19px; }
.se-v2 .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.se-v2 .microcopy, .se-v2 .muted-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

.se-v2 .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 610px; margin-top: 28px; }
.se-v2 .hero-facts div { padding: 14px 16px; background: #fff; border: 1px solid #d6e3df; border-radius: 10px; }
.se-v2 .hero-facts strong, .se-v2 .hero-facts span { display: block; }
.se-v2 .hero-facts strong { color: var(--navy); font-size: 22px; }
.se-v2 .hero-facts span { margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 750; }

.se-v2 .hero-product-shot, .se-v2 .content-shot, .se-v2 .agent-poster, .se-v2 .strategy-visual, .se-v2 .agent-strategy-split > figure { width: 100%; min-width: 0; max-width: 100%; margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.se-v2 .hero-product-shot img { width: 100%; height: auto; }
.se-v2 .hero-product-shot figcaption { display: flex; align-items: center; gap: 10px; padding: 14px 16px; color: var(--muted); font-size: 13px; }
.se-v2 .hero-product-shot figcaption span { padding: 4px 8px; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; font-weight: 900; }
.se-v2 .agent-poster { justify-self: center; max-width: 430px; }

.se-v2 .check-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.se-v2 .check-list li { padding: 8px 11px; color: #245343; background: var(--green-soft); border: 1px solid #c5ead7; border-radius: 7px; font-size: 13px; font-weight: 800; }

.se-v2 .section { padding: 88px max(24px, calc((100vw - var(--max)) / 2)); }
.se-v2 .section.soft { background: var(--soft); }
.se-v2 .section-heading { max-width: 850px; margin: 0 auto 40px; text-align: center; }
.se-v2 .section-heading.align-left { max-width: 860px; margin-right: auto; margin-left: 0; text-align: left; }
.se-v2 .section-heading h2, .se-v2 .category-intro h2, .se-v2 .strategy-copy h2, .se-v2 .trust-panel h2, .se-v2 .risk-panel h2, .se-v2 .detail-split h2, .se-v2 .next-level-card h2, .se-v2 .risk-callout h2, .se-v2 .price-notes h2, .se-v2 .agent-strategy-split h2 { margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 50px); line-height: 1.15; letter-spacing: -0.025em; }
.se-v2 .section-heading > p:last-child, .se-v2 .category-intro p, .se-v2 .strategy-copy p, .se-v2 .trust-panel p, .se-v2 .risk-panel p, .se-v2 .detail-split > div > p, .se-v2 .next-level-card p, .se-v2 .risk-callout p, .se-v2 .price-hero p, .se-v2 .agent-strategy-split > div > p { color: var(--muted); }

.se-v2 .proof-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-top: 30px; padding-bottom: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.se-v2 .proof-bar div { padding: 0 22px; text-align: center; border-right: 1px solid var(--line); }
.se-v2 .proof-bar div:last-child { border-right: 0; }
.se-v2 .proof-bar strong, .se-v2 .proof-bar span { display: block; }
.se-v2 .proof-bar strong { color: var(--navy); font-size: 18px; }
.se-v2 .proof-bar span { color: var(--muted); font-size: 13px; }

.se-v2 .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.se-v2 .feature-grid article, .se-v2 .business-lines article, .se-v2 .boundary-grid article { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 34px rgba(8, 42, 85, 0.06); }
.se-v2 .feature-grid h3, .se-v2 .business-lines h3, .se-v2 .boundary-grid h3, .se-v2 .tech-stack h3 { margin: 14px 0 8px; color: var(--navy); font-size: 21px; line-height: 1.3; }
.se-v2 .feature-grid p, .se-v2 .business-lines p, .se-v2 .boundary-grid p, .se-v2 .tech-stack p { margin: 0; color: var(--muted); }
.se-v2 .number-label { display: inline-flex; min-width: 38px; height: 38px; align-items: center; justify-content: center; padding: 0 8px; color: var(--green-dark); background: var(--green-soft); border-radius: 8px; font-weight: 900; }

.se-v2 .product-gallery { background: #fff; }
.se-v2 .gallery-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; }
.se-v2 .gallery-card { margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 34px rgba(8, 42, 85, 0.07); }
.se-v2 .gallery-card.featured { grid-row: span 2; }
.se-v2 .gallery-card img { width: 100%; height: 240px; object-fit: cover; object-position: center; }
.se-v2 .gallery-card.featured img { height: 540px; object-fit: contain; background: #f4f7fa; }
.se-v2 .gallery-card figcaption { padding: 14px 18px; color: var(--navy); font-weight: 850; }

.se-v2 .pricing-grid { display: grid; gap: 16px; }
.se-v2 .personal-pricing { grid-template-columns: repeat(4, 1fr); }
.se-v2 .three-plan { grid-template-columns: repeat(3, 1fr); }
.se-v2 .pricing-grid article { position: relative; display: flex; min-height: 280px; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 34px rgba(8, 42, 85, 0.06); }
.se-v2 .pricing-grid article.recommended { border: 2px solid var(--green); box-shadow: 0 20px 44px rgba(25, 170, 103, 0.14); }
.se-v2 .plan-name { margin: 0; color: var(--navy); font-size: 18px; font-weight: 900; }
.se-v2 .plan-price { display: block; margin: 14px 0 2px; color: var(--green-dark); font-size: 38px; line-height: 1.1; }
.se-v2 .plan-unit { display: block; min-height: 48px; margin-bottom: 28px; color: var(--muted); font-size: 13px; }
.se-v2 .pricing-grid .button { width: 100%; margin-top: auto; }
.se-v2 .recommend-tag { position: absolute; top: -13px; left: 18px; padding: 5px 10px; color: #fff; background: var(--green-dark); border-radius: 999px; font-size: 11px; font-weight: 900; }
.se-v2 .pricing-note { margin: 20px 0 0; color: var(--muted); text-align: center; font-size: 13px; }

.se-v2 .path-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.se-v2 .path-list li { display: grid; align-content: start; min-height: 260px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.se-v2 .path-list > li > span { color: var(--green-dark); font-size: 14px; font-weight: 950; }
.se-v2 .path-list strong { display: block; margin-top: 18px; color: var(--navy); font-size: 23px; }
.se-v2 .path-list p { color: var(--muted); }
.se-v2 .path-list a, .se-v2 .text-link { color: var(--blue); font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }

.se-v2 .strategy { display: grid; grid-template-columns: 0.9fr 0.7fr; gap: 56px; align-items: center; }
.se-v2 .strategy-copy > .button { margin-top: 26px; }
.se-v2 .strategy-visual { justify-self: center; max-width: 420px; }
.se-v2 .status-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.se-v2 .status-row span { padding: 8px 11px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 850; }

.se-v2 .trust-risk { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.se-v2 .trust-panel, .se-v2 .risk-panel { padding: 34px; border-radius: 12px; }
.se-v2 .trust-panel { background: var(--green-soft); border: 1px solid #c5ead7; }
.se-v2 .risk-panel { background: var(--warm); border: 1px solid #eedcb9; }
.se-v2 .trust-panel h2, .se-v2 .risk-panel h2 { font-size: clamp(28px, 3.4vw, 40px); }

.se-v2 .final-cta { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; color: #fff; background: var(--navy-deep); }
.se-v2 .final-cta h2 { margin: 0; color: #fff; font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
.se-v2 .final-cta p:last-child { color: #cbd7e5; }
.se-v2 .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: flex-end; }
.se-v2 .cta-contact { color: #d8e4ef; font-weight: 800; }

.se-v2 .floating-cta { position: fixed; right: 22px; bottom: 20px; z-index: 45; display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 20px; color: #fff; background: var(--green-dark); border: 2px solid #fff; border-radius: 999px; box-shadow: 0 14px 34px rgba(11, 134, 80, 0.26); font-weight: 900; }
.se-v2 .floating-contact-button { position: fixed; right: 22px; bottom: 76px; z-index: 47; display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 20px; color: var(--navy); background: #fff; border: 1px solid #c8d8e6; border-radius: 999px; box-shadow: 0 12px 30px rgba(17, 44, 80, 0.16); font: inherit; font-weight: 900; cursor: pointer; }
.se-v2 .floating-contact-button:hover { color: var(--green-dark); border-color: #91d0b1; }
.se-v2 .floating-contact-button:focus-visible, .se-v2 .floating-contact-close:focus-visible { outline: 3px solid rgba(14, 159, 96, 0.35); outline-offset: 3px; }
.se-v2 .floating-contact-panel { position: fixed; right: 22px; bottom: 130px; z-index: 48; width: min(286px, calc(100vw - 44px)); max-height: calc(100dvh - 150px); overflow-y: auto; padding: 20px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 52px rgba(10, 35, 66, 0.22); text-align: center; }
.se-v2 .floating-contact-panel[hidden] { display: none; }
.se-v2 .floating-contact-panel h2 { margin: 2px 28px 6px; font-size: 19px; line-height: 1.3; }
.se-v2 .floating-contact-panel p { margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.se-v2 .floating-contact-panel img { display: block; width: 220px; max-width: 100%; height: auto; margin: 0 auto; border: 1px solid #dbe5ee; border-radius: 10px; }
.se-v2 .floating-contact-panel strong { display: block; margin-top: 12px; color: var(--green-dark); font-size: 14px; }
.se-v2 .floating-contact-links { display: grid; gap: 6px; margin-top: 8px; }
.se-v2 .floating-contact-links a { color: var(--navy); font-size: 13px; font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.se-v2 .floating-contact-links a:hover { color: var(--green-dark); text-decoration: underline; }
.se-v2 .contact-channel-list { display: grid; gap: 6px; margin-top: 12px; }
.se-v2 .contact-channel-list span, .se-v2 .contact-channel-list a { color: var(--green-dark); font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.se-v2 .contact-channel-list a:hover { text-decoration: underline; }
.se-v2 .floating-contact-close { position: absolute; top: 10px; right: 10px; display: inline-grid; width: 34px; height: 34px; place-items: center; padding: 0; color: var(--muted); background: transparent; border: 0; border-radius: 50%; font: inherit; font-size: 22px; line-height: 1; cursor: pointer; }
.se-v2 .floating-contact-close:hover { color: var(--navy); background: var(--soft); }

.se-v2 .site-footer { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 38px; padding: 54px max(24px, calc((100vw - var(--max)) / 2)) 30px; color: var(--muted); background: #fff; border-top: 1px solid var(--line); }
.se-v2 .footer-brand img { width: 210px; height: auto; }
.se-v2 .footer-brand p { max-width: 360px; }
.se-v2 .site-footer > div:not(.footer-brand):not(.footer-legal) { display: grid; align-content: start; gap: 8px; }
.se-v2 .site-footer strong { margin-bottom: 5px; color: var(--navy); }
.se-v2 .site-footer a:hover { color: var(--green-dark); }
.se-v2 .footer-legal { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 20px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; }

.se-v2 .audience-section { background: #fff; }
.se-v2 .three-columns { grid-template-columns: repeat(3, 1fr); }
.se-v2 .detail-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.se-v2 .content-shot img { width: 100%; height: auto; }
.se-v2 .feature-list { display: grid; gap: 0; margin: 26px 0 0; }
.se-v2 .feature-list div { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 14px 0; border-top: 1px solid var(--line); }
.se-v2 .feature-list dt { color: var(--navy); font-weight: 900; }
.se-v2 .feature-list dd { margin: 0; color: var(--muted); }
.se-v2 .screenshot-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.se-v2 .screenshot-pair .gallery-card img { height: auto; }

.se-v2 .simple-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.se-v2 .simple-steps li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.se-v2 .simple-steps > li > span { color: var(--green-dark); font-weight: 950; }
.se-v2 .simple-steps h3 { margin: 0; color: var(--navy); }
.se-v2 .simple-steps p { margin-bottom: 0; color: var(--muted); }

.se-v2 .faq-list { display: grid; gap: 12px; max-width: 940px; }
.se-v2 .faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.se-v2 .faq-list summary { padding: 18px 20px; color: var(--navy); cursor: pointer; font-weight: 900; }
.se-v2 .faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.se-v2 .problem-grid { background: #fff; }
.se-v2 .next-level-card { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 38px; background: var(--blue-soft); border: 1px solid #cddff2; border-radius: 14px; }
.se-v2 .risk-callout { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }

.se-v2 .business-lines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.se-v2 .business-lines article { position: relative; padding-top: 54px; }
.se-v2 .business-lines strong { display: block; margin: 22px 0 8px; color: var(--navy); }
.se-v2 .business-lines ul { margin: 0 0 20px; padding-left: 20px; color: var(--muted); }
.se-v2 .status-badge { position: absolute; top: 18px; right: 18px; padding: 5px 9px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.se-v2 .status-badge.pilot { color: #075c36; background: #dff5e9; }
.se-v2 .status-badge.assess { color: #0f4f96; background: #e4f0fc; }
.se-v2 .status-badge.service { color: #7f4d00; background: #fff0cf; }

.se-v2 .agent-strategy-split { display: grid; grid-template-columns: minmax(340px, 0.75fr) 1fr; gap: 54px; align-items: center; }
.se-v2 .agent-strategy-split > figure { justify-self: center; max-width: 440px; }
.se-v2 .tech-stack { display: grid; gap: 14px; margin-top: 28px; }
.se-v2 .tech-stack article { padding: 22px; background: var(--soft); border: 1px solid var(--line); border-radius: 10px; }
.se-v2 .tech-stack h3 { display: inline-block; margin: 0 10px 6px 0; }
.se-v2 .tech-stack span { color: var(--green-dark); font-size: 13px; font-weight: 900; }

.se-v2 .boundary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.se-v2 .boundary-grid strong { color: var(--navy); font-size: 17px; }
.se-v2 .boundary-grid p { margin-top: 8px; }

.se-v2 .price-hero { padding: 86px max(24px, calc((100vw - 980px) / 2)) 68px; text-align: center; background: #f1f7f5; }
.se-v2 .price-hero h1 { max-width: 930px; margin-right: auto; margin-left: auto; }
.se-v2 .price-hero > p { max-width: 780px; margin: 22px auto 0; font-size: 18px; }
.se-v2 .price-anchor-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.se-v2 .price-anchor-nav a { padding: 9px 14px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 900; }
.se-v2 .category-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.se-v2 .category-intro > div { max-width: 800px; }
.se-v2 .category-intro h2 { font-size: clamp(32px, 4vw, 46px); }
.se-v2 .addon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.se-v2 .addon-row span { padding: 7px 10px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; }
.se-v2 .api-price-card { display: grid; grid-template-columns: 1fr 330px; gap: 50px; align-items: center; padding: 40px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.se-v2 .api-price-card h2 { margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
.se-v2 .api-price-card p { color: var(--muted); }
.se-v2 .api-price { display: grid; padding: 28px; background: var(--green-soft); border: 1px solid #bfe7d2; border-radius: 12px; }
.se-v2 .api-price span, .se-v2 .api-price small { color: var(--muted); }
.se-v2 .api-price strong { margin: 8px 0; color: var(--green-dark); font-size: 42px; }
.se-v2 .api-price .button { margin-top: 24px; }
.se-v2 .compact-lines article { padding-top: 58px; }
.se-v2 .compact-lines .button { width: 100%; margin-top: 24px; }
.se-v2 .price-notes { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.se-v2 .price-notes ul { margin: 0; padding: 26px 26px 26px 48px; background: var(--warm); border: 1px solid #eedcb9; border-radius: 12px; color: #5d5141; }
.se-v2 .price-notes li + li { margin-top: 10px; }

@media (max-width: 1180px) {
  .se-v2 .desktop-nav, .se-v2 .header-actions { display: none; }
  .se-v2 .site-header { grid-template-columns: auto 1fr auto; }
  .se-v2 .menu-button { display: block; justify-self: end; }
  .se-v2 .mobile-nav { top: 114px; }
  .se-v2 .home-hero, .se-v2 .inner-hero { grid-template-columns: 1fr; }
  .se-v2 .hero-product-shot { max-width: 900px; }
  .se-v2 .personal-pricing { grid-template-columns: repeat(2, 1fr); }
  .se-v2 .path-list { grid-template-columns: repeat(2, 1fr); }
  .se-v2 .boundary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .se-v2 .proof-bar { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .se-v2 .proof-bar div:nth-child(2) { border-right: 0; }
  .se-v2 .feature-grid, .se-v2 .three-columns, .se-v2 .business-lines, .se-v2 .three-plan { grid-template-columns: 1fr; }
  .se-v2 .gallery-grid, .se-v2 .strategy, .se-v2 .trust-risk, .se-v2 .detail-split, .se-v2 .agent-strategy-split, .se-v2 .price-notes { grid-template-columns: 1fr; }
  .se-v2 .gallery-card.featured { grid-row: auto; }
  .se-v2 .gallery-card.featured img { height: auto; }
  .se-v2 .screenshot-pair, .se-v2 .simple-steps { grid-template-columns: 1fr; }
  .se-v2 .final-cta, .se-v2 .next-level-card, .se-v2 .risk-callout, .se-v2 .category-intro { grid-template-columns: 1fr; display: grid; align-items: start; }
  .se-v2 .cta-actions { justify-content: flex-start; }
  .se-v2 .site-footer { grid-template-columns: repeat(2, 1fr); }
  .se-v2 .footer-brand { grid-column: 1 / -1; }
  .se-v2 .api-price-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .se-v2 .offer-strip { min-height: 44px; justify-content: space-between; gap: 8px; padding: 0 12px; font-size: 11px; }
  .se-v2 .offer-strip span { display: none; }
  .se-v2 .offer-strip a { display: inline-flex; min-height: 44px; align-items: center; }
  .se-v2 .site-header { min-height: 66px; padding: 8px 16px; }
  .se-v2 .brand { width: 154px; }
  .se-v2 .brand img { width: 154px; }
  .se-v2 .mobile-nav { top: 110px; right: 12px; left: 12px; max-height: calc(100vh - 124px); overflow-y: auto; }
  .se-v2 .home-hero, .se-v2 .inner-hero { min-height: auto; gap: 36px; padding: 52px 18px 58px; }
  .se-v2 .hero-copy h1, .se-v2 .price-hero h1 { font-size: 38px; letter-spacing: -0.025em; }
  .se-v2 .hero-lead { font-size: 17px; }
  .se-v2 .hero-actions { display: grid; }
  .se-v2 .button { width: 100%; }
  .se-v2 .hero-facts { grid-template-columns: 1fr 1fr; }
  .se-v2 .hero-facts div:last-child { grid-column: 1 / -1; }
  .se-v2 .section { padding: 62px 18px; }
  .se-v2 .section-heading { margin-bottom: 30px; }
  .se-v2 .proof-bar { padding-top: 28px; padding-bottom: 28px; }
  .se-v2 .proof-bar div { padding: 0 10px; }
  .se-v2 .personal-pricing, .se-v2 .path-list, .se-v2 .boundary-grid { grid-template-columns: 1fr; }
  .se-v2 .path-list li { min-height: auto; }
  .se-v2 .feature-list div { grid-template-columns: 1fr; gap: 4px; }
  .se-v2 .gallery-card img { height: auto; }
  .se-v2 .trust-panel, .se-v2 .risk-panel, .se-v2 .api-price-card { padding: 26px; }
  .se-v2 .final-cta { padding-top: 56px; padding-bottom: 56px; }
  .se-v2 .final-cta .cta-actions { display: grid; width: 100%; }
  .se-v2 .floating-cta { right: 12px; bottom: 12px; }
  .se-v2 .floating-contact-button { right: 12px; bottom: 68px; }
  .se-v2 .floating-contact-panel { right: 12px; bottom: 122px; width: min(278px, calc(100vw - 24px)); }
  .se-v2 .site-footer { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 44px 18px 80px; }
  .se-v2 .footer-legal { display: grid; }
  .se-v2 .price-hero { padding: 62px 18px 52px; }
  .se-v2 .category-intro { margin-bottom: 28px; }
  .se-v2 .agent-poster, .se-v2 .agent-strategy-split > figure, .se-v2 .strategy-visual { max-width: 100%; }
}

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

/* Marketing content hub */
.se-v2 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.se-v2 .blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 54px;
  align-items: center;
  min-height: 590px;
  padding: 72px max(24px, calc((100vw - var(--max)) / 2));
  background: #f1f7f5;
}

.se-v2 .blog-hero-compact { display: block; min-height: auto; padding-top: 66px; padding-bottom: 66px; }
.se-v2 .blog-hero-compact .blog-hero-copy { max-width: 840px; }
.se-v2 .blog-hero-copy h1 { max-width: 720px; margin: 0; color: var(--navy-deep); font-size: clamp(42px, 5vw, 64px); line-height: 1.08; letter-spacing: -0.035em; }
.se-v2 .blog-hero-copy > p:not(.eyebrow):not(.blog-search-hint) { max-width: 700px; margin: 22px 0 0; color: #4b5d72; font-size: 18px; }
.se-v2 .blog-search { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 680px; margin-top: 30px; }
.se-v2 .blog-search input { min-width: 0; min-height: 52px; padding: 0 16px; color: var(--ink); background: #fff; border: 1px solid #c8d7e3; border-radius: 8px; }
.se-v2 .blog-search input::placeholder { color: #7a8798; }
.se-v2 .blog-search button { min-height: 52px; padding: 0 22px; color: #fff; background: var(--green-dark); border: 1px solid var(--green-dark); border-radius: 8px; font-weight: 900; cursor: pointer; }
.se-v2 .blog-search input:focus-visible, .se-v2 .blog-search button:focus-visible, .se-v2 .blog-topic-filters button:focus-visible, .se-v2 .blog-card a:focus-visible, .se-v2 .blog-pagination a:focus-visible { outline: 3px solid rgba(23, 105, 194, 0.35); outline-offset: 3px; }
.se-v2 .blog-search-hint { margin: 12px 0 0; color: var(--muted); font-size: 13px; font-weight: 750; }

.se-v2 .blog-featured { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.se-v2 .blog-featured > a { display: block; overflow: hidden; background: var(--soft); }
.se-v2 .blog-featured img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 220ms ease; }
.se-v2 .blog-featured:hover img { transform: scale(1.015); }
.se-v2 .blog-featured > div { padding: 24px 26px 26px; }
.se-v2 .blog-featured > div > span { display: inline-flex; padding: 5px 9px; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; font-size: 12px; font-weight: 900; }
.se-v2 .blog-featured h2 { margin: 14px 0 10px; color: var(--navy); font-size: clamp(24px, 2.4vw, 34px); line-height: 1.25; }
.se-v2 .blog-featured p { margin: 0; color: var(--muted); }

.se-v2 .blog-library { padding-top: 74px; }
.se-v2 .blog-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.se-v2 .blog-section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 46px); line-height: 1.15; letter-spacing: -0.025em; }
.se-v2 .blog-section-heading > p { max-width: 480px; margin: 0; color: var(--muted); }
.se-v2 .blog-topic-links { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 0 0 18px; }
.se-v2 .blog-topic-links a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; color: var(--navy); background: var(--green-soft); border: 1px solid #b9dec9; border-radius: 10px; font-size: 13px; font-weight: 850; }
.se-v2 .blog-topic-links a:hover, .se-v2 .blog-topic-links a:focus-visible { color: #fff; background: var(--navy); border-color: var(--navy); }
.se-v2 .blog-topic-links span { flex: 0 0 auto; color: var(--green-dark); }
.se-v2 .blog-topic-links a:hover span, .se-v2 .blog-topic-links a:focus-visible span { color: #b7f5d2; }
.se-v2 .blog-topic-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 16px; }
.se-v2 .blog-topic-filters button { min-height: 42px; padding: 0 14px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 850; cursor: pointer; }
.se-v2 .blog-topic-filters button:hover, .se-v2 .blog-topic-filters button.active { color: #fff; background: var(--navy); border-color: var(--navy); }
.se-v2 .blog-topic-filters span { opacity: 0.75; }
.se-v2 .blog-results-status { margin: 0 0 24px; color: var(--muted); font-size: 13px; }

.se-v2 .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.se-v2 .blog-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 34px rgba(8, 42, 85, 0.06); }
.se-v2 .blog-card-media { display: block; overflow: hidden; background: var(--soft); }
.se-v2 .blog-card-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 220ms ease; }
.se-v2 .blog-card:hover .blog-card-media img { transform: scale(1.02); }
.se-v2 .blog-card-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.se-v2 .blog-card-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 12px; }
.se-v2 .blog-card-meta span { color: var(--green-dark); font-weight: 900; }
.se-v2 .blog-card h2 { margin: 12px 0 10px; color: var(--navy); font-size: 21px; line-height: 1.35; }
.se-v2 .blog-card h2 a:hover { color: var(--green-dark); }
.se-v2 .blog-card-body > p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.se-v2 .blog-read-more { display: inline-flex; align-self: flex-start; margin-top: auto; color: var(--blue); font-size: 14px; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }

.se-v2 .blog-empty { padding: 54px 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 12px; text-align: center; }
.se-v2 .blog-empty h2 { margin: 0; color: var(--navy); }
.se-v2 .blog-empty p { margin: 8px 0 0; color: var(--muted); }
.se-v2 .blog-pagination { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; margin-top: 42px; }
.se-v2 .blog-pagination a, .se-v2 .blog-pagination span { display: inline-flex; min-width: 42px; min-height: 42px; align-items: center; justify-content: center; padding: 0 11px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 850; }
.se-v2 .blog-pagination .current { color: #fff; background: var(--navy); border-color: var(--navy); }
.se-v2 .blog-pagination a:hover { color: var(--green-dark); border-color: var(--green); }
.se-v2 .blog-pagination .page-arrow { padding: 0 16px; }

.se-v2 .blog-method-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.se-v2 .blog-method-grid article { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.se-v2 .blog-method-grid strong { color: var(--green-dark); font-size: 13px; }
.se-v2 .blog-method-grid h3 { margin: 14px 0 8px; color: var(--navy); font-size: 20px; line-height: 1.3; }
.se-v2 .blog-method-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.se-v2 .topic-article-index { margin-top: 56px; padding: clamp(24px, 5vw, 42px); background: var(--soft); border: 1px solid var(--line); border-radius: 16px; }
.se-v2 .topic-article-index h2 { margin: 0 0 24px; color: var(--navy); font-size: clamp(28px, 3.4vw, 40px); }
.se-v2 .topic-article-index ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 0; padding: 0; list-style: none; }
.se-v2 .topic-article-index li { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.se-v2 .topic-article-index a { color: var(--navy); font-weight: 800; }
.se-v2 .topic-article-index a:hover { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.se-v2 .topic-article-index time { color: var(--muted); font-size: 12px; white-space: nowrap; }

@media (max-width: 960px) {
  .se-v2 .blog-hero { grid-template-columns: 1fr; min-height: auto; }
  .se-v2 .blog-featured { max-width: 720px; }
  .se-v2 .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .se-v2 .blog-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .se-v2 .blog-topic-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .se-v2 .blog-hero { gap: 36px; padding: 54px 18px; }
  .se-v2 .blog-hero-copy h1 { font-size: clamp(38px, 12vw, 50px); }
  .se-v2 .blog-hero-copy > p:not(.eyebrow):not(.blog-search-hint) { font-size: 16px; }
  .se-v2 .blog-search { grid-template-columns: 1fr; }
  .se-v2 .blog-search button { width: 100%; }
  .se-v2 .blog-library { padding-top: 58px; }
  .se-v2 .blog-section-heading { display: grid; gap: 12px; }
  .se-v2 .blog-grid, .se-v2 .blog-method-grid { grid-template-columns: 1fr; }
  .se-v2 .blog-card-body { padding: 20px; }
  .se-v2 .blog-topic-links { grid-template-columns: 1fr; }
  .se-v2 .blog-topic-filters { flex-wrap: nowrap; margin-right: -18px; padding-right: 18px; overflow-x: auto; }
  .se-v2 .blog-topic-filters button { flex: 0 0 auto; }
  .se-v2 .blog-pagination { justify-content: flex-start; overflow-x: auto; }
  .se-v2 .topic-article-index ul { grid-template-columns: 1fr; }
  .se-v2 .topic-article-index li { grid-template-columns: 1fr; gap: 4px; }
}

/* Static article library */
.se-v2.article-page main { background: #f5f8fb; }
.se-v2 .article-shell { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 80px; }
.se-v2 .article-breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 30px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.se-v2 .article-breadcrumb a { color: var(--green-dark); font-weight: 750; }
.se-v2 .article-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.se-v2 .article-header { padding: clamp(28px, 5vw, 54px); background: #fff; border: 1px solid var(--line); border-radius: 24px 24px 0 0; }
.se-v2 .article-header h1 { max-width: 820px; margin: 10px 0 18px; color: var(--navy); font-size: clamp(34px, 5.2vw, 58px); line-height: 1.1; letter-spacing: -0.035em; }
.se-v2 .article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--muted); font-size: 14px; }
.se-v2 .article-content { padding: clamp(30px, 6vw, 62px); color: #243c5d; background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 24px 24px; font-size: 17px; line-height: 1.9; box-shadow: 0 18px 44px rgba(18, 50, 85, 0.06); }
.se-v2 .article-content > :first-child { margin-top: 0; }
.se-v2 .article-content > :last-child { margin-bottom: 0; }
.se-v2 .article-content h2, .se-v2 .article-content h3, .se-v2 .article-content h4 { margin: 1.75em 0 0.65em; color: var(--navy); line-height: 1.35; }
.se-v2 .article-content h2 { font-size: clamp(25px, 3vw, 34px); }
.se-v2 .article-content h3 { font-size: clamp(21px, 2.4vw, 27px); }
.se-v2 .article-content p, .se-v2 .article-content ul, .se-v2 .article-content ol, .se-v2 .article-content blockquote, .se-v2 .article-content figure, .se-v2 .article-content table { margin: 0 0 1.35em; }
.se-v2 .article-content ul, .se-v2 .article-content ol { padding-left: 1.35em; }
.se-v2 .article-content img { display: block; width: auto; max-width: 100%; height: auto; margin: 28px auto; border-radius: 10px; }
.se-v2 .article-content figure { max-width: 100%; text-align: center; }
.se-v2 .article-content figcaption { margin-top: -16px; color: var(--muted); font-size: 13px; }
.se-v2 .article-content blockquote { padding: 16px 20px; background: var(--soft); border-left: 4px solid var(--green); }
.se-v2 .article-content table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
.se-v2 .article-content th, .se-v2 .article-content td { min-width: 120px; padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.se-v2 .article-content iframe, .se-v2 .article-content video { width: 100%; max-width: 100%; min-height: 360px; border: 0; }
.se-v2 .article-contact-card { display: flex; gap: 30px; align-items: center; justify-content: space-between; margin-top: 30px; padding: clamp(26px, 5vw, 44px); background: #eaf8f1; border: 1px solid #b7dfca; border-radius: 22px; }
.se-v2 .article-contact-card h2 { margin: 4px 0 8px; color: var(--navy); font-size: 30px; }
.se-v2 .article-contact-card p { margin: 0 0 8px; color: var(--muted); }
.se-v2 .article-contact-card strong { color: var(--green-dark); }
.se-v2 .article-related { margin-top: 58px; }
.se-v2 .article-section-title h2 { margin: 5px 0 24px; color: var(--navy); font-size: 34px; }
.se-v2 .article-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.se-v2 .article-related-grid article { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.se-v2 .article-related-grid a { display: block; color: var(--navy); }
.se-v2 .article-related-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.se-v2 .article-related-grid span { display: block; padding: 16px 18px 0; color: var(--green-dark); font-size: 12px; font-weight: 850; }
.se-v2 .article-related-grid h3 { margin: 7px 18px 20px; font-size: 17px; line-height: 1.45; }
.se-v2 .removed-contact-link { display: none; }
.se-v2 .article-image-unavailable { display: grid; min-height: 150px; place-items: center; margin: 26px 0; padding: 24px; color: var(--muted); background: var(--soft); border: 1px dashed #b9c9d7; border-radius: 10px; font-size: 14px; text-align: center; }
.se-v2 .taxonomy-page .blog-hero { min-height: 360px; }
.se-v2.contact-page main { display: grid; min-height: 70vh; place-items: center; padding: 54px 20px; background: var(--soft); }
.se-v2 .contact-page-card { width: min(620px, 100%); padding: clamp(28px, 6vw, 56px); background: #fff; border: 1px solid var(--line); border-radius: 24px; text-align: center; box-shadow: 0 18px 50px rgba(18, 50, 85, 0.08); }
.se-v2 .contact-page-card h1 { margin: 8px 0 14px; color: var(--navy); font-size: clamp(34px, 6vw, 50px); }
.se-v2 .contact-page-card p { color: var(--muted); line-height: 1.7; }
.se-v2 .contact-page-card img { display: block; width: min(360px, 100%); margin: 26px auto 18px; border: 1px solid var(--line); border-radius: 14px; }
.se-v2 .contact-page-card strong { color: var(--green-dark); font-size: 18px; }
.se-v2.info-page main { padding: 64px 20px 90px; background: var(--soft); }
.se-v2 .info-page-shell { width: min(880px, 100%); margin: 0 auto; padding: clamp(30px, 6vw, 64px); color: #243c5d; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 50px rgba(18, 50, 85, 0.08); }
.se-v2 .info-page-shell h1 { margin: 8px 0 28px; color: var(--navy); font-size: clamp(38px, 6vw, 58px); line-height: 1.12; }
.se-v2 .info-page-shell h2 { margin: 1.7em 0 0.55em; color: var(--navy); font-size: clamp(24px, 3vw, 32px); }
.se-v2 .info-page-shell p { margin: 0 0 1.2em; }

@media (max-width: 760px) {
  .se-v2 .article-shell { width: min(100% - 24px, 920px); padding: 24px 0 58px; }
  .se-v2 .article-breadcrumb { margin-bottom: 18px; }
  .se-v2 .article-header { padding: 26px 22px; border-radius: 18px 18px 0 0; }
  .se-v2 .article-header h1 { font-size: clamp(31px, 10vw, 43px); }
  .se-v2 .article-content { padding: 28px 22px; border-radius: 0 0 18px 18px; font-size: 16px; }
  .se-v2 .article-content iframe, .se-v2 .article-content video { min-height: 220px; }
  .se-v2 .article-contact-card { align-items: stretch; flex-direction: column; }
  .se-v2 .article-related-grid { grid-template-columns: 1fr; }
}
