.se-v2 {
  --navy: #082a55;
  --navy-deep: #061d3b;
  --ink: #1f2937;
  --muted: #52647b;
  --green: #16a34a;
  --green-dark: #15803d;
  --green-soft: #ecfdf3;
  --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 .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 .language-switch {
  display: inline-flex;
  min-width: 42px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.se-v2 .language-switch:hover { color: var(--green-dark); border-color: var(--green); }

.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 .language-switch: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: 76px; 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, 1fr) minmax(500px, 0.73fr); }
.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: 13px; 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: 520px; border: 0; background: transparent; box-shadow: none; }
.se-v2 .agent-poster img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.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: 14px; }
.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: 14px; }

.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, .se-v2 .floating-contact-actions a:focus-visible, .se-v2 .floating-contact-actions button:focus-visible, .se-v2 .floating-contact-qr summary:focus-visible { outline: 3px solid rgba(14, 159, 96, 0.35); outline-offset: 3px; }
.se-v2 .floating-contact-backdrop { position: fixed; inset: 0; z-index: 46; background: rgba(7, 28, 53, 0.44); backdrop-filter: blur(2px); }
.se-v2 .floating-contact-backdrop[hidden] { display: none; }
.se-v2.contact-panel-open { overflow: hidden; }
.se-v2.contact-panel-open .floating-cta, .se-v2.contact-panel-open .floating-contact-button { visibility: hidden; pointer-events: none; }
.se-v2 .floating-contact-panel { position: fixed; right: 22px; bottom: 76px; z-index: 48; display: grid; width: min(330px, calc(100vw - 44px)); max-height: calc(100dvh - 96px); overflow-y: auto; padding: 22px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 18px; 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-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.se-v2 .floating-contact-actions a, .se-v2 .floating-contact-actions button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 8px 10px; color: var(--navy); background: #fff; border: 1px solid #c8d8e6; border-radius: 10px; font: inherit; font-size: 14px; font-weight: 850; text-decoration: none; cursor: pointer; }
.se-v2 .floating-contact-actions a:hover, .se-v2 .floating-contact-actions button:hover { color: var(--green-dark); background: var(--green-soft); border-color: #91d0b1; }
.se-v2 .floating-contact-copy { grid-column: 1 / -1; color: #fff !important; background: var(--green-dark) !important; border-color: var(--green-dark) !important; }
.se-v2 .floating-contact-qr { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.se-v2 .floating-contact-qr summary { color: var(--green-dark); font-size: 13px; font-weight: 850; cursor: pointer; }
.se-v2 .floating-contact-qr img { display: block; width: 220px; max-width: 100%; height: auto; margin: 12px auto 0; border: 1px solid #dbe5ee; border-radius: 10px; }
.se-v2 .floating-contact-qr span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.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.download-page main { background: #eef4fb; }
.se-v2 .download-hero {
  min-height: 590px;
  padding: 76px max(24px, calc((100vw - var(--max)) / 2)) 88px;
  background-color: #eef4fb;
  background-image: url("/assets/whatsappscrm-download-background.webp");
  background-position: center top;
  background-size: cover;
}
.se-v2 .download-heading { text-align: center; }
.se-v2 .download-heading h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.se-v2 .download-heading h1 span { color: var(--green); }
.se-v2 .download-mobile-break { display: none; }
.se-v2 .download-heading > p:last-child { margin: 18px 0 0; color: var(--ink); font-size: 18px; font-weight: 800; }
.se-v2 .download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.se-v2 .download-card {
  display: grid;
  min-height: 278px;
  place-items: center;
  align-content: center;
  padding: 34px 24px;
  background: #fff;
  border: 1px solid rgba(207, 219, 233, 0.75);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(37, 78, 126, 0.08);
  text-align: center;
}
.se-v2 .download-icon { display: grid; min-height: 76px; place-items: center; }
.se-v2 .download-icon img { width: auto; max-width: 86px; height: auto; max-height: 72px; }
.se-v2 .download-card h2 { margin: 22px 0 12px; color: var(--navy-deep); font-size: 25px; line-height: 1.25; }
.se-v2 .download-card a { color: var(--green-dark); font-size: 16px; font-weight: 850; }
.se-v2 .download-card a:hover { text-decoration: underline; text-underline-offset: 4px; }
.se-v2 .download-card a:focus-visible { outline: 3px solid rgba(22, 163, 74, 0.3); outline-offset: 5px; border-radius: 4px; }

.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 .agent-strategy-split > figure.ecosystem-diagram { border: 0; background: transparent; box-shadow: none; }
.se-v2 .ecosystem-diagram img { display: block; width: 100%; height: auto; }
.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: 13px; }
.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: 76px; }
  .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; }
  .se-v2 .download-grid { grid-template-columns: 1fr; max-width: 620px; margin-right: auto; margin-left: auto; }
}

@media (max-width: 620px) {
  .se-v2 .offer-strip span { display: none; }
  .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: 74px; right: 12px; left: 12px; max-height: calc(100vh - 88px); 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 { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .se-v2 .floating-cta, .se-v2 .floating-contact-button { bottom: max(10px, env(safe-area-inset-bottom)); width: calc((100% - 36px) / 2); min-height: 50px; padding: 0 12px; }
  .se-v2 .floating-cta { right: 12px; }
  .se-v2 .floating-contact-button { right: auto; left: 12px; }
  .se-v2 .floating-contact-panel { right: 12px; bottom: calc(72px + env(safe-area-inset-bottom)); left: 12px; width: auto; max-height: calc(100dvh - 94px - env(safe-area-inset-bottom)); padding: 20px 18px; border-radius: 20px; }
  .se-v2 .floating-contact-actions { grid-template-columns: 1fr 1fr; }
  .se-v2 .floating-contact-qr img { width: 210px; }
  .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%; }
  .se-v2 .download-hero { min-height: auto; padding: 52px 18px 72px; }
  .se-v2 .download-heading h1 { font-size: 32px; }
  .se-v2 .download-mobile-break { display: block; }
  .se-v2 .download-heading > p:last-child { font-size: 15px; }
  .se-v2 .download-grid { gap: 14px; margin-top: 34px; }
  .se-v2 .download-card { min-height: 236px; padding: 30px 22px; border-radius: 16px; }
  .se-v2 .download-card h2 { font-size: 22px; }
}

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

.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, 5.2vw, 52px); 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(34px, 9vw, 36px); }
  .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; }
}


/* WhatsAppSCRM white-label states */
.se-v2 .nav-disabled,
.se-v2 .footer-disabled,
.se-v2 .contact-disabled,
.se-v2 [aria-disabled="true"] {
  color: #7c8798;
  cursor: not-allowed;
}
.se-v2 .desktop-nav .nav-disabled { padding: 27px 0 23px; font-size: 14px; font-weight: 850; }
.se-v2 .mobile-nav > .nav-disabled { padding: 12px; border-bottom: 1px solid #eef2f5; font-weight: 850; }
.se-v2 .footer-disabled { display: block; }
.se-v2 .floating-contact-actions { grid-template-columns: 1fr; }
.se-v2 .floating-contact-actions .contact-disabled {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background: #f8fafc;
  border: 1px solid #d8e2eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 850;
}
.se-v2 .contact-placeholder {
  display: grid;
  width: min(300px, 100%);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 10px;
  margin: 26px auto 18px;
  color: #64748b;
  background: repeating-linear-gradient(45deg, #f8fafc, #f8fafc 12px, #f1f5f9 12px, #f1f5f9 24px);
  border: 2px dashed #cbd5e1;
  border-radius: 18px;
}
.se-v2 .contact-placeholder span { color: #16a34a; font-size: 42px; font-weight: 950; letter-spacing: .08em; }
.se-v2 .contact-placeholder strong { color: #475569; font-size: 16px; }
.se-v2 .contact-placeholder-compact { width: 150px; margin: 16px auto 0; border-radius: 14px; }
.se-v2 .contact-placeholder-compact span { font-size: 28px; }
.se-v2 .gallery-card img,
.se-v2 .hero-product-shot img,
.se-v2 .content-shot img,
.se-v2 .strategy-visual img { background: #f8fafc; }
