@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   FIELD-SERVICE INDUSTRIAL  —  USA appliance-repair theme
   charcoal + safety amber · Oswald condensed · light base
   ------------------------------------------------------------
   Самодостаточная тема. ВСЁ скоупится под body.theme-usa-service,
   чтобы не задеть старый стиль и другие проекты. Не доопределяет
   V2-классы — у темы свой неймспейс (.sec/.hero/.pcard/.btn--cta…).
   Источник дизайна: docs/usa_redesign/mockup_field_service.html
   ============================================================ */

/* ---- палитра + токены (на body, не :root — чтобы не текло глобально) ---- */
body.theme-usa-service{
  --char:#15181C;
  --char-d:#0E1115;
  --char-2:#1E2329;
  --paper:#F4F6F8;
  --white:#FFFFFF;
  --amber:#FF6A00;
  --amber-d:#E85D00;
  --amber-soft:#FFF0E6;
  --ink:#1B2026;
  --body:#49525B;
  --muted:#7A858F;
  --line:#E0E5EA;
  --line-d:#C7D0D8;
  --green:#1F9D57;
  --red:#D7402B;
  --radius:7px;
  --radius-lg:10px;
  --shadow-s:0 4px 14px -8px rgba(21,24,28,.30);
  --shadow:0 24px 50px -26px rgba(21,24,28,.45);
  --maxw:1180px;

  margin:0;background:var(--paper);color:var(--body);
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;font-size:16px;line-height:1.62;
  -webkit-font-smoothing:antialiased;scroll-behavior:smooth;
}
body.theme-usa-service *,
body.theme-usa-service *::before,
body.theme-usa-service *::after{box-sizing:border-box}

body.theme-usa-service h1,
body.theme-usa-service h2,
body.theme-usa-service h3,
body.theme-usa-service .display{
  font-family:Oswald,Inter,sans-serif;color:var(--ink);line-height:1.06;margin:0;
  text-transform:uppercase;letter-spacing:.005em;font-weight:600}
body.theme-usa-service a{color:inherit;text-decoration:none}
body.theme-usa-service img{max-width:100%;display:block}

/* layout primitives */
body.theme-usa-service .wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
body.theme-usa-service .sec{padding:70px 0}
body.theme-usa-service .sec--white{background:var(--white)}
body.theme-usa-service .sec--char{background:var(--char);color:#C4CCD4}
body.theme-usa-service .sec--char h1,
body.theme-usa-service .sec--char h2,
body.theme-usa-service .sec--char h3{color:#fff}
body.theme-usa-service .center{text-align:center}
body.theme-usa-service .lead{color:var(--muted);font-size:17px;max-width:60ch}
body.theme-usa-service .center .lead{margin-inline:auto}
body.theme-usa-service .mt{margin-top:36px}
body.theme-usa-service .label{display:inline-flex;align-items:center;gap:11px;font-family:Oswald;font-weight:600;font-size:14px;
  letter-spacing:.14em;text-transform:uppercase;color:var(--amber)}
body.theme-usa-service .label .n{background:var(--amber);color:#1A0E04;padding:3px 8px;border-radius:4px;font-size:12.5px;font-variant-numeric:tabular-nums}
/* Автонумерация секций: номер у каждой .label с текстом (из CSS-counter, в порядке DOM).
   Нет eyebrow -> нет .label -> нет номера. Hero и декоративные бейджи помечены .label--plain. */
body.theme-usa-service .page{counter-reset:secn}
body.theme-usa-service .label:not(.label--plain){counter-increment:secn}
body.theme-usa-service .label:not(.label--plain)::before{content:counter(secn,decimal-leading-zero);
  background:var(--amber);color:#1A0E04;padding:3px 8px;border-radius:4px;font-size:12.5px;font-variant-numeric:tabular-nums;line-height:1.35}
body.theme-usa-service .h2{font-size:clamp(28px,3.6vw,44px);font-weight:700;letter-spacing:.01em}
/* Ритм ВНУТРИ шапки секции (как в эталоне): label→h2 = 14px, h2→lead = 10px.
   Перебивает .mt(36px) только когда h2 идёт сразу за .label (есть eyebrow). */
body.theme-usa-service .center .label + .h2{margin-top:14px}
body.theme-usa-service .center .h2 + .lead{margin-top:10px}
body.theme-usa-service .sec--char .h2,body.theme-usa-service .sec--char h2{color:#fff}
body.theme-usa-service .muted{color:var(--muted)}
/* Standalone-заголовки (несвёрнутые страницы) — компактные отступы, без двойного
   зазора с соседней секцией. На свёрнутых страницах (хаб) НЕ используются. */
body.theme-usa-service .sechead{padding:42px 22px 0}
body.theme-usa-service .sechead--h3{padding-top:34px}
body.theme-usa-service .sechead .h2{margin:0}
body.theme-usa-service .sechead--h3 .h2{font-size:clamp(22px,2.4vw,30px)}
body.theme-usa-service .sechead + .sec{padding-top:26px}
/* счётчики story — аппер как в референсе («5 MIN») */
body.theme-usa-service .counter b{text-transform:uppercase}
/* generic cta-row (вне hero — counters/story и т.п.) */
body.theme-usa-service .cta-row{display:flex;gap:13px;flex-wrap:wrap;align-items:stretch}

/* buttons */
body.theme-usa-service .btn{display:inline-flex;align-items:center;gap:10px;font-family:Oswald;font-weight:600;font-size:16px;letter-spacing:.04em;
  text-transform:uppercase;padding:15px 26px;border-radius:var(--radius);border:2px solid transparent;cursor:pointer;transition:.16s;text-align:center}
body.theme-usa-service .btn--cta{background:var(--amber);color:#1A0E04;box-shadow:0 12px 24px -12px rgba(255,106,0,.75)}
body.theme-usa-service .btn--cta:hover{background:var(--amber-d);transform:translateY(-2px);color:#1A0E04}
body.theme-usa-service .btn--call{background:var(--char);color:#fff}
body.theme-usa-service .btn--call:hover{background:var(--char-2);transform:translateY(-2px);color:#fff}
body.theme-usa-service .btn--sms{background:#1faa53;color:#fff}
body.theme-usa-service .btn--sms:hover{background:#178f45;transform:translateY(-2px);color:#fff}
/* SMS-кнопки только на мобильной (sms: бесполесна на десктопе) */
body.theme-usa-service .sms-only{display:none}
@media(max-width:600px){body.theme-usa-service .btn--block.sms-only{display:flex}}
/* Финальный CTA: зазоры между кнопками (не «склеены») + контур у тёмной Call,
   чтобы не сливалась с тёмным боксом */
body.theme-usa-service .ctaband .box .btn--block + .btn--block{margin-top:12px}
body.theme-usa-service .ctaband .box .btn--call{border:1px solid #3d4651}
body.theme-usa-service .btn--ghost{background:transparent;color:var(--ink);border-color:var(--line-d)}
body.theme-usa-service .btn--ghost:hover{border-color:var(--amber);color:var(--amber)}
body.theme-usa-service .btn--block{width:100%;justify-content:center}
body.theme-usa-service .btn .ribbon{background:#1A0E04;color:var(--amber);font-size:11px;padding:3px 7px;border-radius:4px;letter-spacing:.06em}
/* offer-led two-line CTA (variant B) */
body.theme-usa-service .btn--two{flex-direction:column;gap:2px;line-height:1.06}
body.theme-usa-service .btn--two .m{font-size:18px;font-weight:700}
body.theme-usa-service .btn--two .s{font-family:Inter;font-weight:600;text-transform:none;letter-spacing:0;font-size:12.5px;opacity:.85}
body.theme-usa-service .btn--two .m,body.theme-usa-service .btn--two .s{white-space:nowrap}

/* ---------- top utility (slim, hybrid: location + hours) ---------- */
body.theme-usa-service .topbar{background:var(--char-d);color:#9AA5AF;font-size:13px}
body.theme-usa-service .topbar .wrap{display:flex;gap:22px;justify-content:center;align-items:center;padding:8px 22px;flex-wrap:wrap}
body.theme-usa-service .topbar b{color:#fff;font-weight:600}
body.theme-usa-service .topbar i{color:var(--amber);margin-right:7px}

/* ---------- navbar (charcoal · white logo · CTA + dropdown) ---------- */
body.theme-usa-service .nav{display:block;position:sticky;top:0;z-index:50;background:var(--char);border-bottom:2px solid var(--amber)}
body.theme-usa-service .nav .wrap{display:flex;align-items:center;gap:16px;height:72px}
body.theme-usa-service .nav .logo{height:38px;width:auto}
body.theme-usa-service .nav-spacer{flex:1}
body.theme-usa-service .nav-phone{display:inline-flex;align-items:center;gap:9px;font-family:Oswald;font-weight:600;font-size:18px;color:#fff;letter-spacing:.02em}
body.theme-usa-service .nav-phone i{color:var(--amber)}
body.theme-usa-service .menu{position:relative}
body.theme-usa-service .menu__btn{display:inline-flex;align-items:center;gap:9px;font-family:Oswald;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
  font-size:14px;color:#fff;background:transparent;border:1px solid #39424B;border-radius:6px;padding:10px 14px;cursor:pointer}
body.theme-usa-service .menu__btn:hover{border-color:var(--amber);color:var(--amber)}
body.theme-usa-service .menu__panel{position:absolute;right:0;top:52px;background:#fff;border:1px solid var(--line);border-radius:9px;box-shadow:var(--shadow);
  min-width:230px;padding:8px;display:none;z-index:60}
body.theme-usa-service .menu__panel.open{display:block}
body.theme-usa-service .menu__panel a{display:block;padding:11px 13px;border-radius:6px;font-family:Oswald;font-weight:500;letter-spacing:.04em;text-transform:uppercase;
  font-size:14.5px;color:var(--ink)}
body.theme-usa-service .menu__panel a:hover{background:var(--amber-soft);color:var(--amber)}
body.theme-usa-service .menu__div{height:1px;background:var(--line);margin:8px 4px}
body.theme-usa-service .menu__lang{padding:4px 9px 6px}
body.theme-usa-service .menu__lang .t{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:4px}
body.theme-usa-service .menu__lang .opts{display:flex;gap:6px}
body.theme-usa-service .menu__lang .opts a{flex:1;text-align:center;border:1px solid var(--line-d);padding:8px 0;border-radius:6px;font-size:13.5px}
body.theme-usa-service .menu__lang .opts a.cur{background:var(--char);color:#fff;border-color:var(--char)}

/* ---------- hero ---------- */
body.theme-usa-service .hero{background:linear-gradient(180deg,#fff 0%,var(--paper) 100%)}
body.theme-usa-service .hero .wrap{display:grid;grid-template-columns:1.05fr .95fr;gap:46px;align-items:center;padding:56px 22px 60px}
body.theme-usa-service .hero h1{font-size:clamp(38px,5vw,62px);font-weight:700;margin:16px 0 0;letter-spacing:.005em}
body.theme-usa-service .hero h1 .hl{color:var(--amber)}
body.theme-usa-service .hero p.sub{font-size:18.5px;margin:18px 0 0;max-width:52ch;color:var(--body)}
body.theme-usa-service .hero .cta-row{display:flex;gap:13px;margin-top:28px;flex-wrap:wrap;align-items:stretch}
body.theme-usa-service .hero .hero-rating{margin-top:16px;font-size:14.5px;color:var(--ink);display:flex;align-items:center;gap:8px;flex-wrap:wrap}
body.theme-usa-service .hero .hero-rating .stars{color:var(--amber);letter-spacing:1px}
body.theme-usa-service .hero .hero-rating b{font-weight:700}
body.theme-usa-service .hero .micro{margin-top:14px;font-size:13.5px;color:var(--muted);display:flex;gap:18px;flex-wrap:wrap}
body.theme-usa-service .hero .micro i{color:var(--green);margin-right:6px}
body.theme-usa-service .hero-photo{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--line)}
body.theme-usa-service .hero-photo img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3.7}
body.theme-usa-service .hero-photo .tag{position:absolute;top:14px;left:14px;background:var(--amber);color:#1A0E04;font-family:Oswald;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;font-size:13px;padding:7px 12px;border-radius:5px;display:flex;align-items:center;gap:7px}
body.theme-usa-service .hero-photo .tag .dot{width:8px;height:8px;border-radius:50%;background:#1A0E04;animation:usaPulse 1.4s infinite}
@keyframes usaPulse{0%,100%{opacity:1}50%{opacity:.3}}
body.theme-usa-service .hero-photo .card{position:absolute;left:14px;bottom:14px;right:14px;background:rgba(21,24,28,.88);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);
  color:#fff;border-radius:8px;padding:12px 14px;display:flex;align-items:center;gap:12px}
body.theme-usa-service .hero-photo .card .av{width:42px;height:42px;border-radius:6px;background:var(--amber);color:#1A0E04;display:grid;place-items:center;font-size:18px;flex:none}
body.theme-usa-service .hero-photo .card b{font-family:Oswald;font-weight:600;font-size:15px;letter-spacing:.03em;display:block}
body.theme-usa-service .hero-photo .card span{font-size:12.5px;color:#9AA5AF}
body.theme-usa-service .hero-photo .card .stars{margin-left:auto;color:var(--amber);font-size:13px;flex:none}
body.theme-usa-service .hero-photo .appl{position:absolute;top:14px;right:14px;width:104px;border-radius:8px;overflow:hidden;border:2px solid #fff;box-shadow:0 8px 20px -8px rgba(21,24,28,.6);background:#fff}
body.theme-usa-service .hero-photo .appl img{width:100%;height:78px;object-fit:cover;display:block}
body.theme-usa-service .hero-photo .appl span{display:block;text-align:center;font-family:Oswald;font-weight:600;letter-spacing:.05em;text-transform:uppercase;font-size:11px;color:var(--ink);padding:4px 0}

/* ---------- trust band (benefits) ---------- */
body.theme-usa-service .trustband{background:#fff;border-bottom:1px solid var(--line)}
body.theme-usa-service .trustband .wrap{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;padding:18px 22px}
body.theme-usa-service .tchip{display:inline-flex;align-items:center;gap:10px;font-size:14px;font-weight:600;color:var(--ink);
  border:1px solid var(--line);border-radius:var(--radius);padding:10px 15px;background:var(--paper)}
body.theme-usa-service .tchip i{color:var(--green)}

/* grids */
body.theme-usa-service .grid{display:grid;gap:18px}
body.theme-usa-service .g-3{grid-template-columns:repeat(3,1fr)}
body.theme-usa-service .g-2{grid-template-columns:repeat(2,1fr)}
body.theme-usa-service .g-4{grid-template-columns:repeat(4,1fr)}
body.theme-usa-service .g-5{grid-template-columns:repeat(5,1fr)}
body.theme-usa-service .g-6{grid-template-columns:repeat(6,1fr)}

/* problem cards */
body.theme-usa-service .pcard{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:24px 22px;transition:.16s;overflow:hidden;display:block}
body.theme-usa-service .pcard::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--amber);transform:scaleY(0);transform-origin:top;transition:.18s}
body.theme-usa-service .pcard:hover{border-color:var(--line-d);box-shadow:var(--shadow-s);transform:translateY(-3px)}
body.theme-usa-service .pcard:hover::before{transform:scaleY(1)}
body.theme-usa-service .pcard .ic{width:50px;height:50px;border-radius:8px;background:var(--char);color:var(--amber);display:grid;place-items:center;font-size:21px;margin-bottom:15px}
body.theme-usa-service .pcard h3{font-size:21px;font-weight:600;letter-spacing:.02em;margin-bottom:7px}
body.theme-usa-service .pcard p{color:var(--muted);font-size:14.5px;margin:0 0 16px}
body.theme-usa-service .pcard .row{display:flex;align-items:center;justify-content:space-between}
body.theme-usa-service .price-chip{font-family:Oswald;font-weight:600;font-size:15px;color:var(--amber);letter-spacing:.03em}
body.theme-usa-service .pcard .go{font-family:Oswald;font-weight:500;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);font-size:13px}
body.theme-usa-service .pcard:hover .go{color:var(--amber)}

/* offer steps */
body.theme-usa-service .step{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:26px 24px;position:relative}
body.theme-usa-service .step .num{font-family:Oswald;font-weight:700;font-size:46px;color:var(--line-d);line-height:1}
body.theme-usa-service .step .ic{font-size:24px;color:var(--amber);margin:6px 0 12px;display:block}
body.theme-usa-service .step h3{font-size:20px;font-weight:600;letter-spacing:.02em;margin-bottom:8px}
body.theme-usa-service .step p{color:var(--muted);font-size:14.5px;margin:0}

/* ---------- quick diagnosis (calculator) ---------- */
body.theme-usa-service .diag{display:grid;grid-template-columns:1.1fr .9fr;gap:26px;align-items:start;margin-top:36px}
body.theme-usa-service .diag__list{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:10px}
body.theme-usa-service .diag__item{display:flex;align-items:center;gap:13px;padding:13px 14px;border-radius:7px;cursor:pointer;transition:.12s;border:1px solid transparent}
body.theme-usa-service .diag__item:hover{background:var(--paper)}
body.theme-usa-service .diag__item input{position:absolute;opacity:0;pointer-events:none}
body.theme-usa-service .diag__item .box{width:24px;height:24px;border:2px solid var(--line-d);border-radius:6px;display:grid;place-items:center;color:#fff;flex:none;transition:.12s}
body.theme-usa-service .diag__item .box i{font-size:12px;opacity:0}
body.theme-usa-service .diag__item input:checked ~ .box{background:var(--amber);border-color:var(--amber)}
body.theme-usa-service .diag__item input:checked ~ .box i{opacity:1}
body.theme-usa-service .diag__item .ic{color:var(--amber);width:22px;text-align:center}
body.theme-usa-service .diag__item span.t{font-size:15px;color:var(--ink);font-weight:500}
body.theme-usa-service .diag__item:has(input:checked){background:var(--amber-soft)}
body.theme-usa-service .diag__res{background:var(--char);color:#C4CCD4;border-radius:var(--radius-lg);padding:26px 24px;position:sticky;top:90px}
body.theme-usa-service .diag__res .sev{display:inline-flex;align-items:center;gap:8px;font-family:Oswald;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  font-size:12.5px;padding:5px 11px;border-radius:5px;background:#2A313A;color:#9AA5AF}
body.theme-usa-service .diag__res.low .sev{background:rgba(31,157,87,.18);color:#5fd699}
body.theme-usa-service .diag__res.medium .sev{background:rgba(255,106,0,.18);color:var(--amber)}
body.theme-usa-service .diag__res.high .sev{background:rgba(215,64,43,.2);color:#ff7a66}
body.theme-usa-service .diag__res h3{color:#fff;font-size:24px;margin:14px 0 8px;letter-spacing:.02em}
body.theme-usa-service .diag__res p{font-size:14.5px;margin:0 0 6px}
body.theme-usa-service .diag__res p b{color:var(--amber)}
body.theme-usa-service .diag__res .cta{margin-top:18px}
body.theme-usa-service .diag__altcta{display:inline-flex;align-items:center;gap:6px;margin-top:12px;color:var(--amber);
  font-family:Oswald;font-weight:600;font-size:14px;letter-spacing:.04em;text-decoration:none}
body.theme-usa-service .diag__altcta:hover{text-decoration:underline}
body.theme-usa-service .diag__res .hint{color:#7A858F;font-size:13px}
body.theme-usa-service .diag__res.flash{animation:usaDiagflash .7s ease-out}
@keyframes usaDiagflash{0%{box-shadow:0 0 0 0 rgba(255,106,0,.55)}100%{box-shadow:0 0 0 16px rgba(255,106,0,0)}}
body.theme-usa-service .diag__res::before{content:"";display:none}
@media(max-width:980px){
  body.theme-usa-service .diag__res{margin-top:14px;border-top:3px solid var(--amber)}
  body.theme-usa-service .diag__res::before{content:"\f063  Your result";display:block;font-family:"Font Awesome 6 Free",Oswald;font-weight:900;
    color:var(--amber);letter-spacing:.06em;text-transform:uppercase;font-size:12px;margin-bottom:10px}
}

/* ---------- specialist ---------- */
body.theme-usa-service .spec{display:grid;grid-template-columns:.85fr 1.15fr;gap:40px;align-items:center}
body.theme-usa-service .spec__photo{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-s)}
body.theme-usa-service .spec__photo img{width:100%;aspect-ratio:1/1;object-fit:cover}
body.theme-usa-service .spec h2{margin-top:14px}
body.theme-usa-service .spec p{font-size:16px;margin:14px 0 0}
body.theme-usa-service .spec .stats{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
body.theme-usa-service .spec .stat{border:1px solid var(--line);border-radius:7px;padding:12px 16px;background:#fff}
body.theme-usa-service .spec .stat b{font-family:Oswald;font-weight:700;font-size:22px;color:var(--amber);display:block;line-height:1}
body.theme-usa-service .spec .stat span{font-size:12.5px;color:var(--muted)}

/* why / story */
body.theme-usa-service .story{display:grid;grid-template-columns:1.05fr 1fr;gap:44px;align-items:center}
body.theme-usa-service .story p{color:#AEB7C0;font-size:17px}
body.theme-usa-service .counters{display:flex;gap:14px;margin-top:24px;flex-wrap:wrap}
body.theme-usa-service .counter{flex:1;min-width:120px;background:var(--char-2);border:1px solid #2E353D;border-radius:var(--radius);padding:18px 14px;text-align:center}
body.theme-usa-service .counter b{display:block;font-family:Oswald;font-weight:700;font-size:38px;color:var(--amber);line-height:1}
body.theme-usa-service .counter span{font-size:12.5px;color:#9AA5AF;letter-spacing:.03em}
body.theme-usa-service .story-photo{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);border:1px solid #2E353D;position:relative}
body.theme-usa-service .story-photo img{width:100%;aspect-ratio:5/3.6;object-fit:cover}
body.theme-usa-service .story-photo .cap{position:absolute;left:0;bottom:0;right:0;background:linear-gradient(transparent,rgba(21,24,28,.92));
  color:#fff;font-family:Oswald;letter-spacing:.04em;text-transform:uppercase;font-size:13px;padding:26px 16px 12px}
body.theme-usa-service .story-photo .cap b{color:var(--amber)}

/* brands */
body.theme-usa-service .brands{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
body.theme-usa-service .bchip{display:flex;align-items:center;justify-content:center;height:64px;border:1px solid var(--line);border-radius:var(--radius);
  background:#fff;font-family:Oswald;font-weight:600;font-size:17px;letter-spacing:.04em;color:#3A434C;transition:.16s}
body.theme-usa-service .bchip:hover{border-color:var(--amber);color:var(--amber);transform:translateY(-2px);box-shadow:var(--shadow-s)}
body.theme-usa-service .disclaimer{margin-top:16px;text-align:center;font-size:12.5px;color:var(--muted)}

/* error codes */
body.theme-usa-service .ecard{background:var(--paper);border:1px solid var(--line);border-left:4px solid var(--amber);border-radius:var(--radius);padding:18px 18px;display:block}
body.theme-usa-service .ecard h3{font-size:18px;letter-spacing:.02em;margin-bottom:5px}
body.theme-usa-service .ecard p{margin:0;font-size:13.5px;color:var(--muted)}
body.theme-usa-service .ecard .codes{font-family:Oswald;letter-spacing:.05em;color:var(--ink);font-size:14px;margin-top:8px}

/* pricing */
body.theme-usa-service .ptable{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-s)}
body.theme-usa-service .ptable th,
body.theme-usa-service .ptable td{padding:15px 18px;text-align:left;font-size:15px;border-bottom:1px solid var(--line)}
body.theme-usa-service .ptable thead th{background:var(--char);color:#fff;font-family:Oswald;font-weight:500;letter-spacing:.06em;text-transform:uppercase;font-size:13.5px}
body.theme-usa-service .ptable tbody tr:hover{background:var(--amber-soft)}
body.theme-usa-service .ptable td:last-child{text-align:right}
body.theme-usa-service .ptable .total{font-family:Oswald;font-weight:600;font-size:16px;color:var(--amber);letter-spacing:.02em}
body.theme-usa-service .pnote{display:flex;gap:22px;flex-wrap:wrap;justify-content:center;margin-top:18px;font-size:14px;color:var(--muted)}
body.theme-usa-service .pnote b{color:var(--ink)}

/* cases */
body.theme-usa-service .case{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;transition:.16s}
body.theme-usa-service .case:hover{box-shadow:var(--shadow-s);transform:translateY(-3px)}
body.theme-usa-service .case .top{background:var(--char);color:#fff;padding:13px 16px;display:flex;align-items:center;justify-content:space-between}
body.theme-usa-service .case .top b{font-family:Oswald;letter-spacing:.03em;font-size:16px}
body.theme-usa-service .case .top .when{font-size:12px;color:#9AA5AF}
body.theme-usa-service .case .body{padding:16px}
body.theme-usa-service .case .body .pp{font-weight:600;color:var(--ink);margin:0 0 4px}
body.theme-usa-service .case .body p{margin:0;font-size:14px;color:var(--muted)}
body.theme-usa-service .case .body .meta{margin-top:12px;display:flex;gap:14px;font-size:12.5px;color:var(--muted)}
body.theme-usa-service .case .body .meta i{color:var(--amber);margin-right:5px}

/* reviews */
body.theme-usa-service .review{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:24px;display:flex;flex-direction:column;gap:12px}
body.theme-usa-service .review .stars{color:var(--amber);font-size:16px;letter-spacing:2px}
body.theme-usa-service .review p{margin:0;color:var(--body);font-size:15px;flex:1}
body.theme-usa-service .review .who{display:flex;align-items:center;gap:12px;border-top:1px solid var(--line);padding-top:14px}
body.theme-usa-service .review .who .av{width:42px;height:42px;border-radius:50%;background:var(--char);color:var(--amber);display:grid;place-items:center;font-family:Oswald;font-weight:600}
body.theme-usa-service .review .who b{display:block;color:var(--ink);font-size:14.5px}
body.theme-usa-service .review .who span{font-size:12.5px;color:var(--muted)}
body.theme-usa-service .review .who .g{margin-left:auto;color:#4285F4;font-size:18px}
body.theme-usa-service .gline{margin-top:24px;text-align:center;font-size:14px;color:var(--muted)}
body.theme-usa-service .gline b{color:var(--ink)}
body.theme-usa-service .gline .stars{color:var(--amber)}

/* FAQ */
body.theme-usa-service .faq{max-width:820px;margin:0 auto}
body.theme-usa-service .faq details{background:#fff;border:1px solid var(--line);border-radius:var(--radius);margin-bottom:12px;overflow:hidden}
body.theme-usa-service .faq summary{list-style:none;cursor:pointer;padding:18px 20px;font-family:Oswald;font-weight:500;font-size:18px;letter-spacing:.02em;
  color:var(--ink);display:flex;align-items:center;justify-content:space-between;text-transform:none}
body.theme-usa-service .faq summary::-webkit-details-marker{display:none}
body.theme-usa-service .faq summary .pl{color:var(--amber);transition:.2s}
body.theme-usa-service .faq details[open] summary .pl{transform:rotate(45deg)}
body.theme-usa-service .faq details[open] summary{border-bottom:1px solid var(--line)}
body.theme-usa-service .faq .ans{padding:16px 20px;color:var(--muted);font-size:15px}

/* helpful */
body.theme-usa-service .help{display:flex;align-items:center;gap:13px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:16px 18px;transition:.16s}
body.theme-usa-service .help:hover{border-color:var(--amber);transform:translateY(-2px);box-shadow:var(--shadow-s)}
body.theme-usa-service .help i{width:38px;height:38px;border-radius:7px;background:var(--amber-soft);color:var(--amber);display:grid;place-items:center;font-size:16px;flex:none}
body.theme-usa-service .help b{color:var(--ink);font-size:15px;display:block}
body.theme-usa-service .help span{font-size:12.5px;color:var(--muted)}

/* ticker */
body.theme-usa-service .ticker{background:var(--char);color:#C4CCD4;overflow:hidden;border-top:1px solid #2E353D;border-bottom:1px solid #2E353D}
body.theme-usa-service .ticker .row{display:flex;flex-wrap:nowrap;width:max-content;margin:0;gap:42px;white-space:nowrap;padding:14px 0;animation:usaScroll 32s linear infinite;font-size:14px}
body.theme-usa-service .ticker .row span{flex:none}
body.theme-usa-service .ticker .row span{display:inline-flex;align-items:center;gap:9px}
body.theme-usa-service .ticker .row i{color:var(--green)}
body.theme-usa-service .ticker .row b{color:#fff;font-weight:600}
@keyframes usaScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* related */
body.theme-usa-service .related{display:flex;gap:11px;flex-wrap:wrap;justify-content:center}
body.theme-usa-service .rchip{display:inline-flex;align-items:center;gap:9px;border:1px solid var(--line-d);border-radius:999px;padding:11px 18px;
  background:#fff;font-weight:500;font-size:14.5px;color:var(--ink);transition:.16s}
body.theme-usa-service .rchip i{color:var(--amber)}
body.theme-usa-service .rchip:hover{background:var(--amber);color:#1A0E04;border-color:var(--amber)}
body.theme-usa-service .rchip:hover i{color:#1A0E04}
body.theme-usa-service .rchip.here{background:var(--char);color:#fff;border-color:var(--char);cursor:default}
body.theme-usa-service .rchip.here i{color:var(--amber)}

/* service area */
body.theme-usa-service .area{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:26px}
body.theme-usa-service .area .city{border:1px solid var(--line-d);border-radius:6px;padding:9px 15px;background:#fff;font-family:Oswald;font-weight:500;
  letter-spacing:.04em;font-size:14px;color:var(--ink)}
body.theme-usa-service .area .city.more{background:var(--paper);color:var(--muted);border-style:dashed}

/* final CTA */
body.theme-usa-service .ctaband{display:grid;grid-template-columns:1.2fr .8fr;gap:34px;align-items:center}
body.theme-usa-service .ctaband ul{list-style:none;margin:18px 0 0;padding:0;color:#AEB7C0;font-size:15.5px}
body.theme-usa-service .ctaband li{margin:9px 0}
body.theme-usa-service .ctaband li i{color:var(--green);margin-right:11px}
body.theme-usa-service .ctaband .box{background:var(--char-2);border:1px solid #2E353D;border-radius:var(--radius-lg);padding:26px;text-align:center}
body.theme-usa-service .ctaband .box small{color:#9AA5AF;font-size:13.5px}
body.theme-usa-service .ctaband .big-phone{display:block;text-decoration:none;font-family:Oswald;font-weight:700;font-size:30px;color:#fff;margin:12px 0;letter-spacing:.02em}
body.theme-usa-service .ctaband .big-phone:hover{color:var(--amber)}

/* breadcrumbs */
body.theme-usa-service .crumbs{font-size:13px;color:var(--muted);padding:20px 0}
body.theme-usa-service .crumbs a:hover{color:var(--amber)}
body.theme-usa-service .crumbs i{margin:0 9px;font-size:10px;color:var(--line-d)}

/* footer */
body.theme-usa-service .foot{background:var(--char);color:#9AA5AF;font-size:14px;border-top:3px solid var(--amber)}
body.theme-usa-service .foot .cols{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.1fr;gap:34px;padding:48px 22px 32px}
body.theme-usa-service .foot .logo{height:auto;width:auto;max-height:42px;max-width:200px;margin:0 0 14px;opacity:.96}
body.theme-usa-service .foot .tag{font-size:13.5px;color:#9AA5AF;max-width:32ch;margin:0 0 16px}
body.theme-usa-service .foot h4{font-family:Oswald;font-weight:600;letter-spacing:.06em;text-transform:uppercase;font-size:13px;color:#fff;margin:0 0 14px}
body.theme-usa-service .foot a{color:#C4CCD4}
body.theme-usa-service .foot a:hover{color:var(--amber)}
body.theme-usa-service .foot ul{list-style:none;padding:0;margin:0}
body.theme-usa-service .foot li{margin:8px 0}
body.theme-usa-service .foot .it{display:flex;gap:11px;align-items:flex-start;margin:10px 0}
body.theme-usa-service .foot .it i{color:var(--amber);width:16px;text-align:center;margin-top:4px}
body.theme-usa-service .foot .it b{color:#fff;font-weight:600;display:block;font-size:14.5px}
body.theme-usa-service .foot .it span{font-size:13px}
body.theme-usa-service .foot .areas{display:flex;flex-wrap:wrap;gap:7px}
body.theme-usa-service .foot .areas span{font-size:13px}
body.theme-usa-service .foot .social{margin-top:14px}
body.theme-usa-service .foot .social a{width:36px;height:36px;border:1px solid #39424B;border-radius:7px;display:inline-grid;place-items:center;margin-right:8px;color:#C4CCD4}
body.theme-usa-service .foot .social a:hover{border-color:var(--amber);color:var(--amber)}
body.theme-usa-service .foot .bottom{border-top:1px solid #2A313A;padding:18px 22px;display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:12.5px}
body.theme-usa-service .foot .bottom .dis{max-width:64ch;color:#7A858F}
@media(max-width:760px){
  body.theme-usa-service .foot .cols{grid-template-columns:1fr 1fr;gap:26px}
  body.theme-usa-service .foot .bottom{flex-direction:column;text-align:center;justify-content:center}
}
@media(max-width:480px){
  body.theme-usa-service .foot .cols{grid-template-columns:1fr;text-align:left}
}

/* mobile call-bar (hidden on desktop, shown on mobile) */
body.theme-usa-service .callbar{display:none}

/* ============================================================
   Component library styles — symptom / brand / contact pages.
   (готовы заранее, чтобы Ф5 не требовала нового CSS)
   ============================================================ */

/* icon_box_horizontal -> ranked likelihood row */
body.theme-usa-service .hrow{display:flex;gap:18px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:18px 22px;margin-bottom:12px;transition:.16s}
body.theme-usa-service .hrow:hover{border-color:var(--line-d);box-shadow:var(--shadow-s)}
body.theme-usa-service .hrow .pct{flex:none;width:60px;text-align:center}
body.theme-usa-service .hrow .pct b{font-family:Oswald;font-weight:700;font-size:25px;color:var(--amber);line-height:1;display:block}
body.theme-usa-service .hrow .pct span{font-size:10px;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
body.theme-usa-service .hrow .hic{flex:none;width:46px;height:46px;border-radius:9px;background:var(--char);color:var(--amber);display:grid;place-items:center;font-size:19px}
body.theme-usa-service .hrow .bd{flex:1}
body.theme-usa-service .hrow .bd h4{font-family:Oswald;font-weight:600;font-size:18px;letter-spacing:.02em;color:var(--ink);margin:0 0 4px;text-transform:none}
body.theme-usa-service .hrow .bd p{margin:0;font-size:14px;color:var(--muted)}
body.theme-usa-service .hrow .price{flex:none;text-align:right;font-size:12.5px;color:var(--muted);min-width:120px}
body.theme-usa-service .hrow .price b{font-family:Oswald;color:var(--amber);font-size:15px;display:block}

/* inset_text -> comparison / savings callout */
body.theme-usa-service .inset{display:flex;gap:20px;align-items:center;background:var(--amber-soft);border:1px solid #ffd9bf;border-left:5px solid var(--amber);border-radius:var(--radius-lg);padding:22px 24px}
body.theme-usa-service .inset .big{flex:none;text-align:center}
body.theme-usa-service .inset .big b{font-family:Oswald;font-weight:700;font-size:30px;color:var(--amber);display:block;line-height:1}
body.theme-usa-service .inset .big span{font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--body)}
body.theme-usa-service .inset p{margin:0;font-size:15px;color:var(--ink)}

/* article typography */
body.theme-usa-service .prose{max-width:760px;font-size:16px;color:var(--body)}
body.theme-usa-service .prose p{margin:0 0 14px}
body.theme-usa-service .prose strong{color:var(--ink)}
body.theme-usa-service .prose ol.steps{list-style:none;counter-reset:s;padding:0;margin:0 0 16px}
body.theme-usa-service .prose ol.steps li{counter-increment:s;position:relative;padding:11px 0 11px 46px;border-bottom:1px solid var(--line)}
body.theme-usa-service .prose ol.steps li::before{content:counter(s);position:absolute;left:0;top:8px;width:30px;height:30px;border-radius:7px;background:var(--char);color:var(--amber);font-family:Oswald;font-weight:700;display:grid;place-items:center;font-size:14px}
body.theme-usa-service .prose ul.ticks{list-style:none;padding:0;margin:0 0 14px}
body.theme-usa-service .prose ul.ticks li{position:relative;padding:6px 0 6px 28px}
body.theme-usa-service .prose ul.ticks li::before{content:"\f00c";font-family:"Font Awesome 6 Free";font-weight:900;color:var(--green);position:absolute;left:0;top:7px;font-size:13px}
body.theme-usa-service .callout{background:#fff;border:1px solid var(--line);border-left:4px solid var(--amber);border-radius:7px;padding:14px 18px;margin:0 0 14px;font-size:14.5px}
body.theme-usa-service .callout b{color:var(--ink)}

/* info table (code / meaning / repair) */
body.theme-usa-service .itable{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden}
body.theme-usa-service .itable th,
body.theme-usa-service .itable td{padding:13px 16px;text-align:left;font-size:14.5px;border-bottom:1px solid var(--line)}
body.theme-usa-service .itable thead th{background:var(--paper);font-family:Oswald;font-weight:500;letter-spacing:.05em;text-transform:uppercase;font-size:12.5px;color:var(--muted)}
body.theme-usa-service .itable .code{font-family:Oswald;font-weight:600;letter-spacing:.04em;color:#1A0E04;background:var(--amber);padding:3px 9px;border-radius:5px;font-size:13px;display:inline-block}
body.theme-usa-service .itable td:last-child{text-align:right;font-family:Oswald;font-weight:600;color:var(--amber)}
body.theme-usa-service .itable tbody tr:hover{background:var(--amber-soft)}

/* contact form + info */
body.theme-usa-service .contact{display:grid;grid-template-columns:1.1fr .9fr;gap:22px}
body.theme-usa-service .cform{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:24px}
body.theme-usa-service .cform label{display:block;font-size:13px;font-weight:600;color:var(--ink);margin:0 0 6px}
body.theme-usa-service .cform input,
body.theme-usa-service .cform textarea{width:100%;padding:12px 13px;border:1px solid var(--line-d);border-radius:6px;font-size:15px;margin-bottom:14px;font-family:Inter}
body.theme-usa-service .cform textarea{min-height:82px;resize:vertical}
body.theme-usa-service .cform input:focus,
body.theme-usa-service .cform textarea:focus{outline:none;border-color:var(--amber)}
body.theme-usa-service .cinfo{background:var(--char);color:#C4CCD4;border-radius:var(--radius-lg);padding:22px 24px}
body.theme-usa-service .cinfo .it{display:flex;gap:13px;align-items:flex-start;padding:13px 0;border-bottom:1px solid #2A313A}
body.theme-usa-service .cinfo .it:last-child{border:0}
body.theme-usa-service .cinfo .it i{color:var(--amber);width:20px;text-align:center;margin-top:3px}
body.theme-usa-service .cinfo .it b{color:#fff;display:block;font-family:Oswald;letter-spacing:.02em}
body.theme-usa-service .cinfo .it span{font-size:13.5px}

/* map */
body.theme-usa-service .mapwrap{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-s)}
body.theme-usa-service .mapwrap iframe{display:block;width:100%;height:340px;border:0}

/* legal */
body.theme-usa-service .legal{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);padding:18px 20px;font-size:13px;color:var(--muted);max-width:700px}
body.theme-usa-service .legal b{color:var(--ink)}

/* urgency / cost of inaction */
body.theme-usa-service .urgency{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
body.theme-usa-service .ucard{background:var(--char);color:#C4CCD4;border-radius:var(--radius-lg);padding:26px 22px;text-align:center;border-top:3px solid var(--amber)}
body.theme-usa-service .ucard b{font-family:Oswald;font-weight:700;font-size:40px;color:#fff;display:block;line-height:1}
body.theme-usa-service .ucard .l{color:var(--amber);font-family:Oswald;letter-spacing:.05em;text-transform:uppercase;font-size:12.5px;margin:6px 0 8px}
body.theme-usa-service .ucard p{margin:0;font-size:13.5px;color:#9AA5AF}

/* while you wait (self-check) */
body.theme-usa-service .selfgrid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
body.theme-usa-service .scard{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:18px 14px;text-align:center}
body.theme-usa-service .scard i{font-size:21px;color:var(--amber)}
body.theme-usa-service .scard h4{font-family:Oswald;font-weight:600;font-size:15px;letter-spacing:.02em;color:var(--ink);margin:10px 0 6px;text-transform:none}
body.theme-usa-service .scard p{margin:0;font-size:12.5px;color:var(--muted)}

/* models we service */
body.theme-usa-service .models{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
body.theme-usa-service .mcard{display:flex;gap:14px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:20px}
body.theme-usa-service .mcard>i{flex:none;width:46px;height:46px;border-radius:9px;background:var(--amber-soft);color:var(--amber);display:grid;place-items:center;font-size:19px}
body.theme-usa-service .mcard h4{font-family:Oswald;font-weight:600;font-size:18px;color:var(--ink);margin:0 0 5px;text-transform:none}
body.theme-usa-service .mcard p{margin:0;font-size:13.5px;color:var(--muted)}
body.theme-usa-service .mcard .ser{margin-top:8px;display:flex;gap:6px;flex-wrap:wrap}
body.theme-usa-service .mcard .ser span{font-family:Oswald;font-size:12px;letter-spacing:.03em;border:1px solid var(--line-d);border-radius:5px;padding:3px 8px;color:var(--ink)}

/* ============================================================
   Responsive
   ============================================================ */
@media(max-width:980px){
  body.theme-usa-service .hero .wrap,
  body.theme-usa-service .story,
  body.theme-usa-service .ctaband,
  body.theme-usa-service .spec,
  body.theme-usa-service .diag{grid-template-columns:1fr;gap:28px}
  body.theme-usa-service .g-3,
  body.theme-usa-service .g-4,
  body.theme-usa-service .g-5,
  body.theme-usa-service .g-6{grid-template-columns:1fr 1fr}
  body.theme-usa-service .brands{grid-template-columns:repeat(3,1fr)}
  body.theme-usa-service .nav-phone{display:none}
  body.theme-usa-service .diag__res{position:static}
  body.theme-usa-service .contact,
  body.theme-usa-service .urgency{grid-template-columns:1fr}
  body.theme-usa-service .selfgrid{grid-template-columns:repeat(2,1fr)}
  body.theme-usa-service .models{grid-template-columns:1fr}
  body.theme-usa-service .hrow{flex-wrap:wrap}
  body.theme-usa-service .hrow .price{text-align:left;min-width:0}
}
@media(max-width:600px){
  body.theme-usa-service .g-3,
  body.theme-usa-service .g-2,
  body.theme-usa-service .g-4,
  body.theme-usa-service .g-5,
  body.theme-usa-service .g-6{grid-template-columns:1fr}
  body.theme-usa-service .brands{grid-template-columns:repeat(2,1fr)}
  body.theme-usa-service .ptable thead{display:none}
  body.theme-usa-service .ptable tr{display:block;border-bottom:1px solid var(--line);padding:6px 0}
  body.theme-usa-service .ptable td{display:flex;justify-content:space-between;border:0;padding:9px 18px}
  body.theme-usa-service .ptable td::before{content:attr(data-l);color:var(--muted);font-family:Oswald;font-weight:500;letter-spacing:.04em}
  body.theme-usa-service .topbar{display:none}
  body.theme-usa-service .selfgrid{grid-template-columns:1fr}
  body.theme-usa-service .inset{flex-direction:column;text-align:center}
  body.theme-usa-service{padding-bottom:72px}
  /* Запас снизу, чтобы фиксированный callbar не перекрывал низ футера (копирайт) */
  body.theme-usa-service .page{padding-bottom:66px}
  body.theme-usa-service .callbar{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:80;align-items:stretch;justify-content:space-between;gap:0;
    width:100%;max-width:100%;box-sizing:border-box;overflow:hidden;
    font-family:Oswald;font-weight:600;letter-spacing:.03em;text-transform:uppercase;box-shadow:0 -8px 24px rgba(21,24,28,.35);
    transition:transform .28s ease}
  /* Скрыт на самом верху (hero уже с CTA), выезжает на скролле. Класс ставит JS;
     без JS бар остаётся видимым (фолбэк — не теряем CTA). */
  body.theme-usa-service .callbar.cb-hide{transform:translateY(120%)}
  body.theme-usa-service .callbar a{flex:1 1 0;min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:11px 6px;font-size:15px;gap:1px;text-align:center}
  body.theme-usa-service .callbar a small{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  body.theme-usa-service .callbar .c-call{background:var(--amber);color:#1A0E04;font-weight:700}
  body.theme-usa-service .callbar .c-text{background:#1faa53;color:#fff}
  body.theme-usa-service .callbar .c-book{background:var(--char);color:#fff}
  body.theme-usa-service .callbar small{font-weight:400;font-size:10px;opacity:.85;font-family:Inter;text-transform:none}
  /* На мобиле booking/call обеспечивает нижний фикс-callbar — дублирующий оранжевый CTA
     в шапке убираем: он переполнял строку (5 строк) и сдавливал логотип. Бургер — справа. */
  body.theme-usa-service .nav .wrap{gap:8px;height:60px;padding-left:12px;padding-right:12px}
  body.theme-usa-service .nav .wrap > a:first-child{flex:0 1 auto;min-width:0}
  body.theme-usa-service .nav .logo{height:auto;width:auto;max-height:34px;max-width:150px}
  body.theme-usa-service .nav .btn--two{padding:6px 10px;flex:0 0 auto}
  body.theme-usa-service .nav .btn--two .m{font-size:14px}
  body.theme-usa-service .nav .btn--two .s{font-size:10px}
  body.theme-usa-service .menu{margin-left:auto;flex:0 0 auto}
}
/* Очень узкие экраны (~360px: Samsung S10, iPhone 12/13 mini): оранжевый CTA в шапке
   не влезает рядом с лого+бургером — убираем его (booking есть в нижнем callbar).
   iPhone SE/12/13/14/15 и крупнее (>=375px) — CTA в шапке остаётся. */
@media(max-width:370px){
  body.theme-usa-service .nav .btn--two{display:none}
}

/* ---------- Book Now modal (Field-Service skin) ----------
   Стилизуем ТОЛЬКО раму модалки (общий шаблон book_now_modal.html) под тему.
   iframe (флоу букинга /app/49/orange_booking/ с выбором дат) НЕ трогаем — он
   same-origin SPA из booking-проекта и рендерит свой выбор слотов. Скоуп —
   body.theme-usa-service, чтобы не задеть realty/clinic. */
body.theme-usa-service .book-now-modal__dialog{border-radius:var(--radius-lg);border:1px solid #2E353D;
  box-shadow:0 24px 70px rgba(21,24,28,.5);border-top:4px solid var(--amber)}
body.theme-usa-service .book-now-modal__header{background:var(--char);padding:18px 52px 18px 22px}
body.theme-usa-service .book-now-modal__eyebrow{display:block;font-family:Oswald;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;font-size:11.5px;color:var(--amber);margin-bottom:5px}
body.theme-usa-service .book-now-modal__title{font-family:Oswald;font-weight:600;letter-spacing:.04em;
  text-transform:uppercase;font-size:21px;color:#fff;margin:0}
body.theme-usa-service .book-now-modal__sub{margin:5px 0 0;font-family:Inter;font-size:12.5px;color:#AEB7C0}
body.theme-usa-service .book-now-modal__close{color:#C4CCD4;font-size:30px}
body.theme-usa-service .book-now-modal__close:hover{color:var(--amber)}
body.theme-usa-service .book-now-modal__backdrop{background:rgba(21,24,28,.62)}

/* ---------- Bootstrap-таблицы внутри paragraph-блоков (прайс/коды) ----------
   Старые страницы (симптом/бренд/dryer) держат прайс/коды как <table class="table
   table-striped"> в paragraph-HTML из include'ов. Темизируем их под вид .ptable
   БЕЗ правки контента (тема грузится последней → перебивает bootstrap). Скоуп — тема.
   NB: без data-l мобильного collapse-в-карточки нет (просто адаптив по ширине). */
body.theme-usa-service .table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-s);margin:0 auto 14px;font-size:15px;color:var(--body)}
body.theme-usa-service .table th,
body.theme-usa-service .table td{padding:14px 18px;text-align:left;border:0;border-bottom:1px solid var(--line);vertical-align:middle}
body.theme-usa-service .table thead th{background:var(--char);color:#fff;font-family:Oswald;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;font-size:13px}
body.theme-usa-service .table tbody tr{background:transparent}
body.theme-usa-service .table.table-striped tbody tr:nth-of-type(odd){background:var(--paper)}
body.theme-usa-service .table tbody tr:hover{background:var(--amber-soft)}
body.theme-usa-service .table td strong{color:var(--amber);font-family:Oswald;font-weight:600;letter-spacing:.02em}
body.theme-usa-service .table td a{color:var(--amber);font-weight:600}

/* ---------- Bootstrap-совместимость для paragraph-контента (base_v3 НЕ грузит bootstrap) ----------
   На несвёрнутых страницах прайс/советы лежат в paragraph-HTML с bootstrap-классами.
   Минимальный шим, скоуп .container (чтобы не задеть .pcard .row / .ticker .row). */
body.theme-usa-service .container{max-width:var(--maxw);margin:0 auto;padding:0 22px}
body.theme-usa-service .container .row{display:flex;flex-wrap:wrap;margin:0;justify-content:center}
body.theme-usa-service .container [class*="col-"]{flex:1 1 100%;max-width:100%;padding:0}
body.theme-usa-service .container .col-lg-8,
body.theme-usa-service .container .col-md-10,
body.theme-usa-service .container .col-lg-10{max-width:820px;margin:0 auto}
body.theme-usa-service .text-center{text-align:center}
body.theme-usa-service .text-muted{color:var(--muted)}
body.theme-usa-service .mb-0{margin-bottom:0}
body.theme-usa-service .mb-4{margin-bottom:1.2rem}
body.theme-usa-service .mt-3,body.theme-usa-service .mt-4{margin-top:1rem}
body.theme-usa-service .small{font-size:.9em;color:var(--muted)}
