*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body.landing-body { font-family: Arial, Helvetica, sans-serif; color: #333333; background: var(--black); line-height: 1.55; font-size: 18.8px; }
  .editor-styles-wrapper { font-family: Arial, Helvetica, sans-serif; color: #333333; line-height: 1.55; font-size: 18.8px; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  :root {
    --red: #C8102E;
    --red-dark: #9B0E24;
    --red-hover: #E01030;
    --white: #ffffff;
    --gray-f2: #F2F2F2;
    --gray-e: #EEEEEE;
    --gray-d: #DDDDDD;
    --gray-9: #999999;
    --gray-6: #666666;
    --gray-3: #333333;
    --black: #1A1A1A;
  }

  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 64px 0; }
  .btn-red { display: inline-block; background: var(--red); color: #fff; padding: 14px 32px; font-family: Arial, sans-serif; font-size: 18.8px; font-weight: bold; border: none; cursor: pointer; transition: background 0.2s; }
  .btn-red:hover,
  .btn-red:focus,
  .btn-red:active { background: var(--red-dark); color: #fff; }
  .btn-red-outline { display: inline-block; background: #fff; color: var(--red); padding: 12px 28px; font-family: Arial, sans-serif; font-size: 17.5px; font-weight: bold; border: 2px solid var(--red); cursor: pointer; transition: all 0.2s; }
  .btn-red-outline:hover,
  .btn-red-outline:focus,
  .btn-red-outline:active { background: var(--red); color: #fff; }
  .section-title { font-family: Arial, Helvetica, sans-serif; font-size: 32.5px; font-weight: bold; color: var(--black); margin-bottom: 10px; line-height: 1.25; }
  .section-title span { color: var(--red); }
  .section-subtitle { font-size: 18.8px; color: var(--gray-6); line-height: 1.6; margin-bottom: 32px; }

  /* ─── HEADER ─── */
  .header-top { background: white; border-bottom: 1px solid var(--gray-d); position: sticky; top: 0; z-index: 200; }
  .admin-bar .header-top { top: 32px; }
  .header-top-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
  .logo-wrap { display: flex; flex-direction: column; gap: 1px; }
  .logo-name { font-size: 25px; font-weight: bold; color: var(--black); letter-spacing: -0.01em; }
  .logo-name span { color: var(--red); }
  .logo-tag { font-size: 12.5px; color: var(--gray-9); font-weight: normal; letter-spacing: 0.05em; text-transform: uppercase; }
  .header-right { display: flex; align-items: center; gap: 16px; }
  .header-phone { display: flex; align-items: center; gap: 7px; font-size: 20px; font-weight: bold; color: var(--black); }
  .header-phone svg { color: var(--red); }
  .mobile-menu-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--gray-d); background: #fff; color: var(--black); cursor: pointer; }
  .mobile-menu-toggle-lines { display: flex; flex-direction: column; gap: 5px; width: 20px; }
  .mobile-menu-toggle-lines span { display: block; width: 100%; height: 2px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
  .mobile-menu-toggle.is-open .mobile-menu-toggle-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.is-open .mobile-menu-toggle-lines span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.is-open .mobile-menu-toggle-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* NAV */
  .nav-bar { background: white; border-bottom: 1px solid var(--gray-d); position: sticky; top: 88px; z-index: 199; }
  .admin-bar .nav-bar { top: 120px; }
  .nav-inner { display: flex; align-items: center; gap: 0; overflow-x: auto; }
  .nav-inner .menu { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; }
  .nav-inner li { margin: 0; padding: 0; }
  .nav-inner a { display: inline-block; padding: 14px 20px; font-size: 16.2px; color: var(--gray-6); font-family: Arial, sans-serif; font-weight: normal; white-space: nowrap; border-bottom: 3px solid transparent; transition: all 0.15s; }
  .nav-inner a:hover, .nav-inner a.active, .nav-inner .current-menu-item > a, .nav-inner .menu > li:first-child > a { color: var(--red); border-bottom-color: var(--red); }

  /* ─── HERO ─── */
  .hero { background: var(--gray-f2); overflow: hidden; }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
  .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 56px 48px 56px 0; }
  .hero-left h1 { font-family: Arial, Helvetica, sans-serif; font-size: 40px; font-weight: bold; color: var(--black); line-height: 1.2; margin-bottom: 6px; }
  .hero-left h1 span { color: var(--red); }
  .hero-left p { font-size: 17.5px; color: var(--gray-6); line-height: 1.65; margin-bottom: 12px; max-width: 480px; }
  .hero-left p strong { color: var(--black); }
  .hero-left .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
  .hero-right { position: relative; overflow: hidden; }
  .hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  /* ─── TRUST BAR ─── */
  .trust-bar { background: var(--red); color: white; padding: 0; }
  .trust-bar-inner { display: flex; align-items: stretch; }
  .trust-item { display: flex; align-items: center; gap: 10px; padding: 16px 24px; font-size: 16.2px; font-weight: bold; flex: 1; border-right: 1px solid rgba(255,255,255,0.2); }
  .trust-item:last-child { border-right: none; }
  .trust-item svg { flex-shrink: 0; width: 20px; height: 20px; }

  /* ─── SERVICES CARDS (like image 3) ─── */
  .services { background: var(--gray-f2); padding: 48px 0; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-d); }
  .service-card { background: white; display: flex; flex-direction: column; }
  .service-card-img { height: 160px; overflow: hidden; }
  .service-card-img img { width: 100%; height: 100%; object-fit: cover; }
  .service-card-img-placeholder { width: 100%; height: 100%; background: var(--gray-e); display: flex; align-items: center; justify-content: center; }
  .service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
  .service-card-body h3 { font-size: 20px; font-weight: bold; color: var(--red); margin-bottom: 10px; line-height: 1.3; }
  .service-card-body p { font-size: 16.2px; color: var(--gray-6); line-height: 1.6; flex: 1; margin-bottom: 16px; }
  .service-card-body .btn-red { align-self: flex-start; font-size: 16.2px; padding: 11px 28px; }

  /* ─── PROBLEM SECTION ─── */
  .problem { background: white; }
  .problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--gray-d); }
  .problem-card { padding: 28px; border-right: 1px solid var(--gray-d); }
  .problem-card:last-child { border-right: none; }
  .problem-card-icon { margin-bottom: 14px; color: var(--red); }
  .problem-card h3 { font-size: 20px; font-weight: bold; color: var(--black); margin-bottom: 8px; }
  .problem-card p { font-size: 16.2px; color: var(--gray-6); line-height: 1.65; }

  /* ─── MODELS (like image 4) ─── */
  .models { background: var(--gray-f2); padding: 56px 0; }
  .models-header { text-align: center; margin-bottom: 36px; }
  .models-header h2 { font-size: 27.5px; font-weight: bold; color: var(--black); margin-bottom: 8px; }
  .models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gray-d); }
  .model-card { background: white; display: flex; flex-direction: column; }
  .model-img { background: #fff; height: 240px; display: flex; align-items: center; justify-content: center; padding: 20px; }
  .model-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
  .model-img-inner { width: 100px; height: 160px; background: linear-gradient(160deg, #fff 60%, #e8e8e8 100%); border: 1px solid #e0e0e0; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 16px; position: relative; box-shadow: 2px 4px 12px rgba(0,0,0,0.08); }
  .model-img-inner::before { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
  .model-img-inner .model-display { width: 56px; height: 32px; background: #1a1a1a; border-radius: 3px; display: flex; align-items: center; justify-content: center; }
  .model-img-inner .model-display span { color: #FF6B35; font-size: 16.2px; font-weight: bold; font-family: monospace; }
  .model-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
  .model-name { font-size: 18.8px; font-weight: bold; color: var(--black); margin-bottom: 10px; line-height: 1.25; }
  .model-specs { margin-bottom: 14px; flex: 1; }
  .model-spec { display: flex; align-items: center; gap: 7px; font-size: 15px; color: var(--gray-6); padding: 4px 0; }
  .model-spec svg { color: var(--red); flex-shrink: 0; width: 13px; height: 13px; }
  .model-cta { width: 100%; padding: 12px; background: var(--red); color: white; border: none; font-family: Arial, sans-serif; font-size: 16.2px; font-weight: bold; cursor: pointer; transition: background 0.2s; }
  .model-cta:hover,
  .model-cta:focus,
  .model-cta:active { background: var(--red-dark); color: white; }

  /* ─── TECH BANNER (like image 5) ─── */
  .tech-banner { background: var(--gray-f2); padding: 0; overflow: hidden; }
  .tech-banner-inner { display: grid; grid-template-columns: 1fr 420px; align-items: stretch; min-height: 280px; }
  .tech-left { padding: 48px 48px 48px 0; display: flex; flex-direction: column; justify-content: center; }
  .tech-left h2 { font-size: 32.5px; font-weight: bold; color: var(--black); line-height: 1.25; margin-bottom: 16px; }
  .tech-left h2 span { color: var(--red); }
  .tech-left p { font-size: 17.5px; color: var(--gray-6); line-height: 1.65; margin-bottom: 8px; }
  .tech-left p strong { color: var(--black); }
  .tech-right { position: relative; overflow: hidden; background: #e8e8e8; }
  .tech-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  /* ─── COMPARATOR ─── */
  .comparator { background: white; }
  .comp-wrap { overflow-x: auto; }
  .comp-table { width: 100%; border-collapse: collapse; font-size: 16.2px; min-width: 700px; }
  .comp-table thead tr { background: var(--black); color: white; }
  .comp-table th { padding: 14px 16px; text-align: left; font-size: 15px; font-weight: bold; letter-spacing: 0.04em; text-transform: uppercase; }
  .comp-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-e); color: var(--gray-6); }
  .comp-table tbody tr:hover td { background: #fafafa; }
  .comp-model { font-weight: bold; color: var(--black); font-size: 16.2px; }
  .dots { display: flex; gap: 3px; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-d); }
  .dot.on { background: var(--red); }
  .wifi { color: var(--red); font-size: 15px; font-weight: bold; }
  .btn-sm { padding: 7px 16px; background: var(--red); color: white; border: none; font-family: Arial, sans-serif; font-size: 15px; font-weight: bold; cursor: pointer; white-space: nowrap; }
  .btn-sm:hover,
  .btn-sm:focus,
  .btn-sm:active { color: white; }

  /* ─── ADVISOR FORM ─── */
  .advisor { background: var(--gray-f2); }
  .advisor-inner { display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: start; }
  .advisor-content h2 { font-size: 30px; font-weight: bold; color: var(--black); margin-bottom: 14px; line-height: 1.25; }
  .advisor-content h2 span { color: var(--red); }
  .advisor-content p { font-size: 17.5px; color: var(--gray-6); line-height: 1.65; margin-bottom: 20px; }
  .check-list { margin-top: 0px; padding-left: 0px; margin-left: 0px; }
  .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 17.5px; color: var(--gray-3); padding: 8px 0; border-bottom: 1px solid var(--gray-e); }
  .check-list li:last-child { border-bottom: none; }
  .check-list li svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
  .form-card { background: white; border: 1px solid var(--gray-d); padding: 28px; }
  .form-card h3 { font-size: 21.2px; font-weight: bold; color: var(--black); margin-bottom: 20px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 15px; font-weight: bold; color: var(--gray-6); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.03em; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--gray-d); font-family: Arial, sans-serif; font-size: 17.5px; color: var(--gray-3); transition: border-color 0.2s; background: white; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 72px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .snt-form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .form-submit { width: 100%; padding: 15px; background: var(--red); color: white; border: none; font-family: Arial, sans-serif; font-size: 18.8px; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
  .form-submit:hover,
  .form-submit:focus,
  .form-submit:active { background: var(--red-dark); color: white; }
  .form-note { text-align: center; font-size: 13.8px; color: var(--gray-9); margin-top: 8px; }

  /* ─── INSTALLATION ─── */
  .installation { background: var(--black); color: white; }
  .installation .section-title { color: white; }
  .installation .section-title span { color: var(--red); }
  .installation .section-subtitle { color: rgba(255,255,255,0.6); }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
  .step-item { background: rgba(255,255,255,0.02); padding: 24px 20px; display: flex; gap: 14px; }
  .step-num { font-size: 35px; font-weight: bold; color: var(--red); line-height: 1; flex-shrink: 0; }
  .step-content h4 { font-size: 17.5px; font-weight: bold; color: white; margin-bottom: 5px; }
  .step-content p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.55; }

  /* ─── BUDGET ─── */
  .budget { background: white; }
  .budget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-d); border: 1px solid var(--gray-d); }
  .budget-item { background: white; padding: 24px; }
  .budget-item h4 { font-size: 17.5px; font-weight: bold; color: var(--black); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
  .budget-item h4 svg { color: var(--red); flex-shrink: 0; }
  .budget-item p { font-size: 16.2px; color: var(--gray-6); line-height: 1.6; }
  .budget-item.optional h4 { color: var(--gray-6); }

  /* ─── ZONES ─── */
  .zones { background: var(--gray-f2); }
  .zones-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .zones-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 20px; }
  .zone-item { font-size: 16.2px; color: var(--gray-6); padding: 7px 12px; background: white; border-left: 3px solid var(--red); display: flex; align-items: center; gap: 6px; }

  /* ─── TRUST CARDS ─── */
  .trust-cards { background: white; }
  .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-d); border: 1px solid var(--gray-d); }
  .trust-card { background: white; padding: 28px 24px; }
  .trust-card-icon { color: var(--red); margin-bottom: 12px; }
  .trust-card-icon svg { width: 24px; height: 24px; }
  .trust-card h3 { font-size: 18.8px; font-weight: bold; color: var(--black); margin-bottom: 7px; }
  .trust-card p { font-size: 16.2px; color: var(--gray-6); line-height: 1.6; }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--gray-f2); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-d); border: 1px solid var(--gray-d); }
  .review-card { background: white; padding: 24px; }
  .review-stars { color: #C8102E; font-size: 18.8px; margin-bottom: 10px; }
  .review-text { font-size: 16.2px; color: var(--gray-6); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
  .review-author-name { font-size: 16.2px; font-weight: bold; color: var(--black); }
  .review-author-loc { font-size: 15px; color: var(--gray-9); }
  .reviews-disclaimer { text-align: center; margin-top: 20px; font-size: 15px; color: var(--gray-9); font-style: italic; }

  /* ─── FAQ ─── */
  .faq { background: white; }
  .faq-list { max-width: 780px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--gray-d); }
  .faq-q { padding: 17px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 17.5px; font-weight: bold; color: var(--black); transition: color 0.15s; user-select: none; }
  button.faq-q { width: 100%; border: 0; background: transparent; font-family: inherit; text-align: left; }
  .faq-q:hover { color: var(--red); }
  .faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--red); }
  .faq-item.open .faq-q { color: var(--red); }
  .faq-item.open .faq-q svg { transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a-inner { padding: 0 0 16px; font-size: 16.2px; color: var(--gray-6); line-height: 1.7; }

  /* ─── CTA FINAL ─── */
  .cta-final { background: var(--red); color: white; text-align: center; padding: 56px 0; }
  .cta-final h2 { font-size: 35px; font-weight: bold; color: white; margin-bottom: 12px; }
  .cta-final p { font-size: 18.8px; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; line-height: 1.65; }
  .cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .btn-white { display: inline-block; background: white; color: var(--red); padding: 14px 32px; font-family: Arial, sans-serif; font-size: 18.8px; font-weight: bold; border: none; cursor: pointer; transition: all 0.2s; }
  .btn-white:hover { background: var(--gray-f2); }
  .btn-white-outline { display: inline-block; background: transparent; color: white; padding: 12px 28px; font-family: Arial, sans-serif; font-size: 17.5px; font-weight: bold; border: 2px solid rgba(255,255,255,0.7); cursor: pointer; transition: all 0.2s; }
  .btn-white-outline:hover { background: white; color: var(--red); }

  /* ─── FOOTER ─── */
  .footer { background: #1A1A1A; color: rgba(255,255,255,0.6); padding: 48px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand h3 { font-size: 21.2px; font-weight: bold; color: white; margin-bottom: 8px; }
  .footer-brand p { font-size: 16.2px; line-height: 1.65; margin-bottom: 16px; }
  .footer-contact { display: flex; align-items: center; gap: 8px; font-size: 16.2px; color: rgba(255,255,255,0.75); margin-bottom: 7px; }
  .footer-contact svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
  .footer-col h4 { font-size: 15px; font-weight: bold; color: white; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col ul,
  .footer-col .menu { margin: 0; padding: 0; list-style: none; }
  .footer-col ul li { margin-bottom: 6px; }
  .footer-col ul li a { font-size: 16.2px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
  .footer-legal { font-size: 13.8px; color: rgba(255,255,255,0.3); max-width: 620px; line-height: 1.65; }
  .footer-legal strong { color: rgba(255,255,255,0.4); }
  .footer-links { display: flex; gap: 16px; flex-shrink: 0; }
  .footer-links a { font-size: 15px; color: rgba(255,255,255,0.4); }
  .footer-links a:hover { color: white; }

  /* ─── MOBILE STICKY ─── */
  .mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: white; border-top: 2px solid var(--gray-d); padding: 10px 14px; gap: 8px; box-shadow: 0 -4px 16px rgba(0,0,0,0.12); }
  .mobile-sticky.is-visible { display: flex; }
  .mobile-sticky a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 4px; font-family: Arial, sans-serif; font-size: 13.8px; font-weight: bold; color: var(--gray-3); border: 1.5px solid var(--gray-d); text-align: center; }
  .mobile-sticky a.primary { background: var(--red); color: white; border-color: var(--red); }
  .mobile-sticky a.primary:hover,
  .mobile-sticky a.primary:focus,
  .mobile-sticky a.primary:active { color: white; }
  .mobile-sticky a svg { width: 18px; height: 18px; }

  /* ─── BLOCK EDITOR ─── */
  body.block-editor-page,
  body.editor-styles-wrapper,
  body.block-editor-iframe__body,
  .editor-styles-wrapper { background: #fff; color: #333333; }
  .edit-post-visual-editor__post-title-wrapper,
  .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper,
  .editor-styles-wrapper .wp-block-post-title,
  .editor-styles-wrapper .editor-post-title { display: none; }
  .editor-styles-wrapper .is-root-container { background: #fff; padding-top: 0; }
  .editor-styles-wrapper .wp-block[data-type^="snt/landing"] { max-width: none; margin-top: 0; margin-bottom: 0; }
  .editor-styles-wrapper .wp-block[data-type^="snt/landing"] > div { margin: 0; }
  .editor-styles-wrapper .snt-editor-preview { max-width: none; margin: 0; }
  .editor-styles-wrapper .snt-editor-preview > section,
  .editor-styles-wrapper .snt-editor-preview > div { margin: 0; }
  .editor-styles-wrapper .snt-editor-preview .container { max-width: 1200px; }
  .editor-styles-wrapper .snt-editor-preview [contenteditable="true"] { cursor: text; }
  .editor-styles-wrapper .snt-editor-preview [contenteditable="true"]:focus { outline: 1px dashed rgba(200,16,46,0.45); outline-offset: 2px; }
  .editor-styles-wrapper .snt-editor-preview .snt-editor-icon { display: inline-flex; line-height: 0; flex-shrink: 0; }
  .editor-styles-wrapper .snt-editor-preview .snt-editor-icon svg { width: 1em; height: 1em; }
  .editor-styles-wrapper .snt-editor-preview .trust-card-icon .snt-editor-icon svg { width: 24px; height: 24px; }
  .editor-styles-wrapper .snt-editor-preview .model-spec .snt-editor-icon svg { width: 13px; height: 13px; }
  .editor-styles-wrapper .snt-editor-preview .fade-in { opacity: 1; transform: none; }
  .editor-styles-wrapper .snt-editor-mobile-sticky { position: static; display: flex; max-width: 460px; margin: 0 auto; }
  .editor-styles-wrapper .snt-editor-mobile-sticky > div { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 4px; font-family: Arial, sans-serif; font-size: 13.8px; font-weight: bold; color: var(--gray-3); border: 1.5px solid var(--gray-d); text-align: center; }
  .editor-styles-wrapper .snt-editor-mobile-sticky > div.primary { background: var(--red); color: white; border-color: var(--red); }
  .editor-styles-wrapper .snt-editor-mobile-sticky > div svg { width: 18px; height: 18px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
  }

  @media (max-width: 960px) {
    .services-grid,
    .models-grid,
    .steps-grid,
    .budget-grid,
    .trust-grid,
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .advisor-inner,
    .zones-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 40px; }
  }

  @media (max-width: 782px) {
    .admin-bar .header-top { top: 46px; }
    .admin-bar .nav-bar { top: 118px; }
  }

  @media (max-width: 768px) {
    body.landing-body { overflow-x: hidden; padding-bottom: 78px; }
    body.mobile-menu-open { overflow: hidden; }
    .container { padding: 0 20px; }
    .section { padding: 44px 0; }
    .section-title { font-size: 27px; line-height: 1.24; }
    .section-subtitle { font-size: 16.5px; margin-bottom: 24px; }

    .header-top-inner { height: 72px; gap: 10px; }
    .logo-wrap { min-width: 0; flex: 1; }
    .logo-wrap img { max-width: 156px; height: auto !important; }
    .mobile-menu-toggle { display: inline-flex; flex-shrink: 0; }
    .header-right { gap: 8px; flex-shrink: 0; }
    .header-phone { width: 44px; height: 44px; justify-content: center; overflow: hidden; font-size: 0; border: 1px solid var(--gray-d); }
    .header-phone svg { width: 18px; height: 18px; }
    .header-right .btn-red { display: none; }

    .nav-bar { display: none; position: sticky; top: 72px; z-index: 199; box-shadow: 0 12px 24px rgba(0,0,0,0.12); }
    .nav-bar.is-open { display: block; }
    .nav-inner { display: block; overflow-y: auto; max-height: calc(100vh - 72px); }
    .nav-inner .menu { display: block; }
    .nav-inner a { display: block; width: 100%; padding: 15px 20px; border-bottom: 1px solid var(--gray-e); font-size: 16px; color: var(--black); white-space: normal; }
    .nav-inner a:hover,
    .nav-inner a.active,
    .nav-inner .current-menu-item > a,
    .nav-inner .menu > li:first-child > a { border-bottom-color: var(--gray-e); color: var(--red); }

    .hero-inner,
    .tech-banner-inner,
    .advisor-inner,
    .zones-inner { grid-template-columns: 1fr; }
    .hero-inner > *,
    .tech-banner-inner > *,
    .advisor-inner > *,
    .zones-inner > * { min-width: 0; }
    .hero-left { width: 100%; max-width: 100%; padding: 36px 0 30px; }
    .hero-left h1 { font-size: 30px; line-height: 1.2; }
    .hero-left p,
    .advisor-content p { max-width: 100%; font-size: 16.5px; }
    .hero-left .hero-ctas { flex-direction: column; gap: 10px; }
    .hero-left .hero-ctas a { width: 100%; text-align: center; }
    .hero-right { height: auto; aspect-ratio: 4 / 3; }
    .hero-right img { height: 100%; }

    .trust-bar-inner { display: grid; grid-template-columns: 1fr; }
    .trust-item { min-width: 0; padding: 13px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); font-size: 15.5px; }
    .trust-item:last-child { border-bottom: 0; }

    .services { padding: 36px 0; }
    .services-grid,
    .models-grid,
    .problem-cards,
    .steps-grid,
    .budget-grid,
    .trust-grid,
    .reviews-grid { grid-template-columns: 1fr; }
    .service-card-img { height: 190px; }
    .service-card-body,
    .problem-card,
    .budget-item,
    .trust-card,
    .review-card { padding: 22px 20px; }
    .problem-card { border-right: 0; border-bottom: 1px solid var(--gray-d); }
    .problem-card:last-child { border-bottom: 0; }

    .models { padding: 42px 0; }
    .models-header { text-align: left; margin-bottom: 24px; }
    .models-header h2 { font-size: 25px; }
    .model-img { height: 220px; }
    .model-body { padding: 18px 20px 20px; }

    .tech-left { padding: 38px 0 28px; }
    .tech-left h2 { font-size: 27px; }
    .tech-left p { font-size: 16.5px; }
    .tech-right { height: auto; aspect-ratio: 4 / 3; }
    .tech-right img { height: 100%; }

    .comp-wrap { margin: 0 -20px; padding: 0 20px 6px; -webkit-overflow-scrolling: touch; }
    .comp-table { min-width: 760px; }
    .comp-table th,
    .comp-table td { padding: 12px 14px; }

    .advisor-inner { gap: 28px; }
    .advisor-content h2 { font-size: 27px; }
    .check-list li { font-size: 16.2px; gap: 9px; }
    .form-card { padding: 22px 18px; }
    .form-card h3 { font-size: 19px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-submit { font-size: 16.2px; }

    .step-item { padding: 22px 18px; }
    .zones-list { grid-template-columns: 1fr; }
    .faq-q { font-size: 16.5px; gap: 16px; }
    .faq-a-inner { font-size: 16px; }

    .cta-final { padding: 44px 0; }
    .cta-final h2 { font-size: 28px; line-height: 1.24; }
    .cta-final p { font-size: 16.5px; }
    .cta-btns { flex-direction: column; }
    .cta-btns .btn-white,
    .cta-btns .btn-white-outline { width: 100%; text-align: center; }

    .footer { padding: 38px 0 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 30px; }
    .footer-bottom { display: block; padding-top: 22px; }
    .footer-legal { max-width: none; margin-bottom: 18px; }
    .footer-links { flex-wrap: wrap; gap: 12px 18px; }

    .mobile-sticky { width: 100%; box-sizing: border-box; }
    .mobile-sticky a { min-width: 0; overflow: hidden; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 38px 0; }
    .section-title { font-size: 25px; }
    .logo-wrap img { max-width: 142px; }
    .header-top-inner { height: 68px; }
    .header-phone,
    .mobile-menu-toggle { width: 40px; height: 40px; }
    .nav-bar { top: 68px; }
    .admin-bar .nav-bar { top: 114px; }
    .hero-left { padding: 32px 0 26px; }
    .hero-left h1 { font-size: 28px; line-height: 1.22; }
    .hero-left p { font-size: 16px !important; line-height: 1.6; }
    .hero-left p:first-child { font-size: 12.5px !important; letter-spacing: 0.04em !important; }
    .hero-right,
    .tech-right { aspect-ratio: 1 / 1; }
    .service-card-img { height: 170px; }
    .model-img { height: 200px; }
    .comp-wrap { margin: 0 -16px; padding: 0 16px 6px; }
    .mobile-sticky { padding: 10px 8px; gap: 6px; }
    .mobile-sticky a { font-size: 12.5px; padding: 7px 2px; }
  }

  /* ANIMATIONS */
  .fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-in.visible { opacity: 1; transform: none; }

  /* ─── SINGLE PAGES STYLES ─── */
  body.landing-body:not(.home) {
    background: var(--black);
    color: var(--gray-3);
  }

  body.landing-body:not(.home) .site-main {
    background: var(--white);
  }

  .page-header-banner {
    background: var(--gray-f2);
    padding: 56px 0;
    border-bottom: 1px solid var(--gray-d);
    text-align: left;
  }

  .page-header-banner .page-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: bold;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
    position: relative;
  }

  .page-header-banner .page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--red);
    margin-top: 16px;
  }

  .page-content-wrap {
    padding: 64px 0;
    background: var(--white);
  }

  /* Gutenberg & Core Block Styles in Pages */
  .page-content-wrap .entry-content {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-3);
    max-width: 900px; /* optimal reading width */
    margin: 0 auto;
  }

  .page-content-wrap .entry-content p {
    margin-bottom: 24px;
  }

  .page-content-wrap .entry-content h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .page-content-wrap .entry-content h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: var(--black);
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .page-content-wrap .entry-content h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18.8px;
    font-weight: bold;
    color: var(--black);
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .page-content-wrap .entry-content ul,
  .page-content-wrap .entry-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
  }

  .page-content-wrap .entry-content li {
    margin-bottom: 10px;
  }

  .page-content-wrap .entry-content ul {
    list-style: disc;
  }

  .page-content-wrap .entry-content ol {
    list-style: decimal;
  }

  .page-content-wrap .entry-content a {
    color: var(--red);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
  }

  .page-content-wrap .entry-content a:hover {
    color: var(--red-dark);
  }

  .page-content-wrap .entry-content blockquote {
    border-left: 4px solid var(--red);
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: var(--gray-6);
  }

  .page-content-wrap .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
  }

  .page-content-wrap .entry-content th,
  .page-content-wrap .entry-content td {
    padding: 12px 16px;
    border: 1px solid var(--gray-d);
    text-align: left;
  }

  .page-content-wrap .entry-content th {
    background: var(--gray-f2);
    font-weight: bold;
    color: var(--black);
  }

  /* Responsive for single page banner */
  @media (max-width: 768px) {
    .page-header-banner {
      padding: 40px 0;
    }
    .page-header-banner .page-title {
      font-size: 30px;
    }
    .page-content-wrap {
      padding: 44px 0;
    }
    .page-content-wrap .entry-content {
      font-size: 16.5px;
    }
  }
