/* ============================================================
   CALL SAVVYS — shared styles for /guides content pages
   Matched to the LIVE callsavvys.com design tokens (read from the
   published site): headings Inter Tight (medium), body Inter,
   cool light-gray page background (#f5f7f9), white cards,
   BLACK dark sections/footer (#0a0a0a), orange + gold accents, 30px radii.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
/* Headlines use Inter to match the homepage (source of truth) — not Clash Display */

:root{
  --ink:#0f0f0f; --dark:#0a0a0a; --green:#1d322d; --body:#5f636e; --muted:#6b7280;
  --orange:#f15533; --orange-2:#ff7738; --orange-dark:#e0461f; --gold:#f6b73c;
  /* page background is WHITE to match the homepage (source of truth) */
  --bg:#ffffff; --bg-2:#eef1f4; --cream:#f5f7f9; --cream-2:#ffffff; --white:#fff;
  --line:#e6e9ee;
  --radius:30px; --radius-lg:40px; --radius-md:20px; --radius-sm:15px; --pill:999px;
  --wrap:1140px;
  /* display = big headlines (Clash Display); head = small sub-headings/labels (Inter Tight) */
  --display:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  --head:'Inter Tight',Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  --font:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--ink);background:var(--bg);font-size:17px;line-height:1.6;font-weight:400;-webkit-font-smoothing:antialiased}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 22px}
a{color:var(--orange);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%}

/* Headings — big headlines use Clash Display (matches site); small sub-headings use Inter Tight */
h1,h2,.cs-stat b,.calc .out .big,.cs-review h3{font-family:var(--display)}
h3,.cs-logo,.cs-quote p,.cs-faq summary,.cs-foot .brand b{font-family:var(--head)}

/* Header — matches homepage: transparent bar, logo left, centered nav pill, leads right */
.cs-head{position:sticky;top:0;z-index:50;background:transparent}
.cs-head .wrap{display:flex;align-items:center;gap:20px;height:84px;max-width:1300px}
.cs-logo{display:inline-flex;align-items:center;flex:1 1 0}
.cs-logo:hover{text-decoration:none}
.cs-logo img{height:40px;width:auto;display:block}
/* centered nav pill */
.cs-nav{display:flex;align-items:center;gap:4px;flex:0 0 auto;background:#fff;border:1px solid rgba(15,20,30,.07);border-radius:var(--pill);padding:6px 10px;box-shadow:0 4px 18px rgba(15,20,30,.06)}
.cs-nav>a,.cs-drop>.cs-dt{white-space:nowrap}
@media(max-width:1180px){.cs-nav{gap:0}}
.cs-nav a{color:var(--ink);font-size:15px;font-weight:500;padding:8px 13px;border-radius:var(--pill)}
.cs-nav a:hover{color:var(--orange);text-decoration:none}
/* CTA button — used in hero/CTA bands (not the header bar) */
.cs-btn,a.cs-btn{display:inline-block;background:var(--ink);color:#fff;font-weight:500;font-size:15px;padding:12px 22px;border-radius:var(--pill);transition:background .15s,transform .12s;border:0;cursor:pointer}
.cs-btn:hover,a.cs-btn:hover{background:var(--orange);color:#fff;text-decoration:none;transform:translateY(-1px)}
.cs-btn-lg{font-size:16.5px;padding:16px 34px}

/* Leads-generated badge (right side of header) */
.cs-leads{display:flex;align-items:center;justify-content:flex-end;gap:9px;font-size:13px;color:var(--body);font-weight:500;flex:1 1 0;white-space:nowrap}
.cs-leads b{font-weight:600;color:var(--orange);border:1px solid var(--line);background:#fff;border-radius:8px;padding:4px 9px;font-size:14px;letter-spacing:.01em}

/* Nav dropdown mega-menus */
.cs-drop{position:relative}
.cs-drop>.cs-dt{display:inline-flex;align-items:center;gap:5px;color:var(--ink);font-size:15px;font-weight:500;cursor:pointer;padding:8px 13px;border-radius:var(--pill);background:none;border:0;font-family:inherit}
.cs-drop>.cs-dt:hover{color:var(--orange)}
.cs-drop>.cs-dt .car{width:10px;height:10px;stroke:currentColor;stroke-width:2;fill:none;transition:transform .18s}
.cs-drop:hover>.cs-dt .car{transform:rotate(180deg)}
.cs-mega{position:absolute;top:100%;left:0;background:#fff;border:1px solid var(--line);border-radius:var(--radius-md);box-shadow:0 26px 64px rgba(15,20,30,.14);padding:24px;display:flex;gap:36px;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .16s,transform .16s;z-index:60}
.cs-drop:hover .cs-mega{opacity:1;visibility:visible;transform:translateY(0)}
.cs-mega.right{left:auto;right:0}
.cs-mega .mcol{min-width:230px}
.cs-mega .mh{font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin:0 0 8px;font-family:var(--font)}
.cs-mega a.mi{display:block;padding:11px 10px;border-radius:12px;margin:0 -10px}
.cs-mega a.mi:hover{background:var(--bg-2);text-decoration:none}
.cs-mega a.mi b{display:block;font-size:15px;color:var(--ink);font-weight:600;font-family:var(--head);margin-bottom:2px}
.cs-mega a.mi span{font-size:13px;color:var(--body);line-height:1.4}
@media(max-width:1240px){.cs-leads{display:none}}

/* Mobile menu (CSS-only hamburger) */
.cs-burger,.cs-burger-cb,.cs-mobile{display:none}
.cs-mobile{position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);box-shadow:0 22px 44px rgba(15,20,30,.12);flex-direction:column;padding:10px 22px 22px}
.cs-mobile a{padding:14px 2px;font-size:16px;font-weight:500;color:var(--ink);border-bottom:1px solid var(--line)}
.cs-mobile a:hover{color:var(--orange);text-decoration:none}
.cs-mobile .cs-mob-cta{margin-top:16px;background:var(--ink);color:#fff;text-align:center;border-radius:var(--pill);padding:15px;border-bottom:0}
.cs-mobile .cs-mob-cta:hover{background:var(--orange);color:#fff}
@media(max-width:980px){
  .cs-nav{display:none}
  .cs-burger{display:inline-flex;flex-direction:column;justify-content:center;gap:5px;width:48px;height:48px;cursor:pointer;border:0;border-radius:14px;background:var(--ink)}
  .cs-burger span{display:block;width:22px;height:2px;background:var(--orange);border-radius:2px;margin:0 auto;transition:transform .2s,opacity .2s}
  .cs-burger-cb:checked ~ .cs-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .cs-burger-cb:checked ~ .cs-burger span:nth-child(2){opacity:0}
  .cs-burger-cb:checked ~ .cs-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .cs-burger-cb:checked ~ .cs-mobile{display:flex}
}

/* Hero */
.cs-hero{padding:66px 0 34px;text-align:center}
.cs-eyebrow{display:inline-block;font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--orange);margin-bottom:16px}
h1{font-size:56px;line-height:1.05;font-weight:500;letter-spacing:-.02em;margin:0 0 20px;color:var(--ink)}
h1 span{color:var(--orange)}
.cs-hero p.lead{font-size:19px;line-height:1.5;color:var(--body);max-width:680px;margin:0 auto 26px}
.cs-updated{font-size:13px;color:var(--muted);margin-top:10px}
@media(max-width:680px){h1{font-size:36px}.cs-hero p.lead{font-size:17px}}

/* Sections */
section{padding:40px 0}
/* keep prose readable: cap line length (~75 chars) on standalone paragraphs */
.wrap>p{max-width:720px}
h2{font-size:34px;line-height:1.12;font-weight:500;letter-spacing:-.02em;margin:0 0 16px;color:var(--ink)}
h3{font-size:22px;font-weight:600;letter-spacing:-.02em;margin:26px 0 8px}
p{margin:0 0 16px}
.section-intro{color:var(--body);max-width:720px;margin-bottom:24px;font-size:17px}
.center{text-align:center}
.center .section-intro{margin-left:auto;margin-right:auto}

/* Stat row */
.cs-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:28px 0}
.cs-stat{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);padding:24px 16px;text-align:center}
.cs-stat b{display:block;font-size:36px;font-weight:600;color:var(--orange);letter-spacing:-.03em;line-height:1;overflow-wrap:break-word}
.cs-stat span{font-size:13.5px;color:var(--body);margin-top:6px;display:block}
@media(max-width:680px){.cs-stats{grid-template-columns:repeat(2,1fr)}}
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;max-width:760px;margin:0 auto}
.contact-grid .cs-stat b{display:block;color:var(--ink);font-family:var(--head);line-height:1.3}
.contact-grid .cs-stat b a{color:var(--ink)}
.contact-grid .cs-stat b a:hover{color:var(--orange)}
.contact-grid .cs-stat span{font-size:13px;color:var(--body);margin-top:6px;display:block}
@media(max-width:560px){.contact-grid{grid-template-columns:1fr}}

/* Comparison table */
.cs-table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);margin:22px 0;background:var(--white)}
table.cs-table{width:100%;border-collapse:collapse;font-size:14.5px;min-width:640px}
table.cs-table th,table.cs-table td{padding:19px 22px;text-align:left;border-bottom:1px solid var(--line);vertical-align:top;line-height:1.45}
/* uniform header across all columns (matches the clean look; no two-tone split) */
table.cs-table thead th,table.cs-table thead th.win{background:var(--dark);color:#fff;font-weight:600;font-size:14px;letter-spacing:.01em;white-space:nowrap}
table.cs-table tbody tr:last-child td{border-bottom:0}
table.cs-table td:first-child{font-weight:600;color:var(--ink)}
table.cs-table .pick{background:#fdf3ee}
table.cs-table .pick td:first-child{box-shadow:inset 3px 0 0 var(--orange)}
/* Head-to-head "versus" table — Call Savvys wins every row */
.cs-vs td.col-cs{background:#fdf3ee;color:var(--ink);font-weight:500}
.cs-vs th.col-cs,.cs-vs td.col-cs{border-left:2px solid rgba(241,85,51,.3);border-right:2px solid rgba(241,85,51,.3)}
.cs-vs thead th.col-cs{border-top:2px solid rgba(241,85,51,.3)}
.cs-vs tbody tr:last-child td.col-cs{border-bottom:2px solid rgba(241,85,51,.3)}
.cs-vs td.no{color:var(--muted)}
.cs-vs .ck{color:var(--orange);font-weight:800;margin-right:8px}
.cs-vs .xk{color:#c2c7d0;font-weight:700;margin-right:8px}
.win-pill{display:inline-block;background:var(--orange);color:#fff;font-size:10px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:3px 8px;border-radius:var(--pill);margin-left:7px;white-space:nowrap;vertical-align:middle}
.cs-vs thead th.col-cs .win-pill{background:#fff;color:var(--ink)}
.tag{display:inline-block;font-size:10.5px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;padding:3px 9px;border-radius:var(--pill);background:#fff;color:var(--orange);border:1px solid var(--orange);margin-left:6px;white-space:nowrap}
.tag-gold{color:#9a7212;border-color:var(--gold);background:#fdf6e6}

/* Cards */
.cs-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:24px 0}
.cs-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:26px}
.cs-card.feature{background:var(--bg-2)}
.cs-card h3{margin-top:0;font-size:19px}
.cs-card p{font-size:15px;color:var(--body);margin:0}
.cs-card .num{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:var(--pill);background:var(--orange);color:#fff;font-weight:600;font-size:16px;margin-bottom:12px;font-family:var(--head)}
@media(max-width:820px){.cs-cards{grid-template-columns:1fr}}

/* Review block (roundup) */
.cs-review{border:1px solid var(--line);border-radius:var(--radius);padding:28px;margin:18px 0;background:var(--white)}
.cs-review.top{border-color:var(--orange);box-shadow:0 14px 40px rgba(241,85,51,.1)}
.cs-review .rhead{display:flex;align-items:baseline;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:6px}
.cs-review h3{margin:0;font-size:23px}
.cs-review .price{font-size:14px;font-weight:600;color:var(--orange);white-space:nowrap}
.cs-review .best{font-size:14px;color:var(--ink);background:var(--cream);border-left:3px solid var(--orange);padding:12px 16px;border-radius:0 10px 10px 0;margin-top:14px}

/* Testimonial */
.cs-quote{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:30px;margin:18px 0}
.cs-quote p{font-size:20px;line-height:1.5;color:var(--ink);margin:0 0 12px;font-family:var(--head);font-weight:500;letter-spacing:-.01em}
.cs-quote .who{font-size:14px;color:var(--body);font-weight:600}
.cs-quote .stars{color:var(--orange);letter-spacing:2px;margin-bottom:12px;font-size:15px}

/* Checklist */
ul.cs-check{list-style:none;padding:0;margin:16px 0}
ul.cs-check li{position:relative;padding:9px 0 9px 32px;color:var(--ink);font-size:16px;border-bottom:1px solid var(--line)}
ul.cs-check li:last-child{border-bottom:0}
ul.cs-check li::before{content:"";position:absolute;left:0;top:11px;width:18px;height:18px;border-radius:50%;background:var(--orange);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/13px no-repeat}

/* FAQ */
.cs-faq details{border:1px solid var(--line);border-radius:var(--radius-md);padding:4px 22px;margin-bottom:10px;background:var(--white)}
.cs-faq summary{cursor:pointer;font-weight:600;font-size:17px;padding:16px 0;list-style:none;color:var(--ink);font-family:var(--head);letter-spacing:-.01em}
.cs-faq summary::-webkit-details-marker{display:none}
.cs-faq summary::after{content:"+";float:right;color:var(--orange);font-weight:500;font-size:22px;line-height:1}
.cs-faq details[open] summary::after{content:"–"}
.cs-faq details p{padding:0 0 18px;color:var(--body);font-size:15.5px;margin:0}

/* CTA band — forest green like the site's dark sections */
.cs-cta{background:var(--dark);border-radius:var(--radius);padding:52px 30px;text-align:center;margin:36px 0;color:#fff}
.cs-cta h2{color:#fff;margin-bottom:12px}
.cs-cta p{color:#c4c4c4;max-width:560px;margin:0 auto 24px;font-size:17px}
.cs-cta .cs-btn{background:var(--orange);color:#fff}
.cs-cta .cs-btn:hover{background:#fff;color:var(--dark)}

/* Prose helpers */
.note{font-size:14.5px;color:var(--body);background:var(--cream-2);border:1px solid var(--line);border-left:3px solid var(--gold);padding:14px 18px;margin:18px 0;border-radius:0 12px 12px 0}
.crosslinks{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0}
.crosslinks a{font-size:14.5px;background:var(--white);border:1px solid var(--line);padding:9px 16px;border-radius:var(--pill);color:var(--ink);font-weight:500}
.crosslinks a:hover{border-color:var(--orange);color:var(--orange);text-decoration:none}
.breadcrumb{font-size:13px;color:var(--muted);padding:18px 0 0}
.breadcrumb a{color:var(--muted)}

/* Hub sections */
.hub-sec{margin:40px 0}
.hub-head{display:flex;align-items:baseline;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:6px}
.hub-head h2{margin:0}
.hub-head a.all{font-size:14.5px;font-weight:500;color:var(--orange);white-space:nowrap}
.hub-sec>.section-intro{margin-bottom:20px}
.hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.hub-grid.two{grid-template-columns:repeat(2,1fr)}
.hub-item{display:block;background:var(--white);border:1px solid var(--line);border-radius:var(--radius-md);padding:22px 22px 20px;transition:border-color .15s,transform .12s,box-shadow .15s}
.hub-item:hover{border-color:var(--orange);transform:translateY(-2px);box-shadow:0 14px 34px rgba(15,20,30,.07);text-decoration:none}
.hub-item .ico{width:38px;height:38px;border-radius:11px;background:#fdf3ee;display:flex;align-items:center;justify-content:center;margin-bottom:13px}
.hub-item .ico svg{width:20px;height:20px;stroke:var(--orange);fill:none;stroke-width:1.9}
.hub-item h3{margin:0 0 5px;font-size:17px;color:var(--ink)}
.hub-item p{margin:0;font-size:14px;color:var(--body);line-height:1.5}
@media(max-width:860px){.hub-grid,.hub-grid.two{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.hub-grid,.hub-grid.two{grid-template-columns:1fr}}

/* Blog index */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:8px 0 0}
.blog-card{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:26px;transition:border-color .15s,transform .12s,box-shadow .15s}
.blog-card:hover{border-color:var(--orange);transform:translateY(-3px);box-shadow:0 16px 40px rgba(15,20,30,.08);text-decoration:none}
.blog-card .top{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.blog-pill{font-size:10.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--orange);border:1px solid var(--orange);border-radius:var(--pill);padding:3px 10px}
.blog-card .read{font-size:12.5px;color:var(--muted)}
.blog-card .date{font-size:12px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.blog-card h3{margin:0 0 10px;font-size:19px;line-height:1.25;color:var(--ink)}
.blog-card p{margin:0 0 18px;font-size:14.5px;color:var(--body);line-height:1.55;flex:1}
.blog-card .more{font-size:14.5px;font-weight:600;color:var(--orange);margin-top:auto}
@media(max-width:860px){.blog-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.blog-grid{grid-template-columns:1fr}}
/* Pagination */
.pager{display:flex;flex-wrap:wrap;gap:9px;justify-content:center;margin:38px 0 8px}
.pager a,.pager span{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 13px;border-radius:var(--pill);font-size:14.5px;font-weight:600;border:1px solid var(--line);background:var(--white);color:var(--ink)}
.pager a:hover{border-color:var(--orange);color:var(--orange);text-decoration:none}
.pager .cur{background:var(--dark);color:#fff;border-color:var(--dark)}

/* Article (blog post / content pages) */
.article{max-width:760px;margin:0 auto;padding:8px 0 0}
.article .eyebrow{margin-bottom:14px}
.article h1{font-size:44px;line-height:1.08;margin-bottom:18px}
.article .meta{display:flex;flex-wrap:wrap;gap:8px 16px;align-items:center;font-size:13.5px;color:var(--muted);margin-bottom:30px;padding-bottom:24px;border-bottom:1px solid var(--line)}
.article .meta b{color:var(--body);font-weight:600}
.article h2{font-size:27px;margin:38px 0 14px}
.article h3{font-size:20px;margin:26px 0 8px}
.article p,.article li{font-size:17px;line-height:1.7;color:#26282d}
.article ul,.article ol{padding-left:22px;margin:0 0 18px}
.article li{margin-bottom:8px}
.article strong{color:var(--ink)}
.article .lead{font-size:20px;line-height:1.6;color:var(--body);margin-bottom:26px}
.article blockquote{margin:24px 0;padding:18px 24px;border-left:3px solid var(--orange);background:var(--bg-2);border-radius:0 12px 12px 0;font-size:18px;color:var(--ink)}
@media(max-width:680px){.article h1{font-size:32px}}

/* Calculator */
.calc{display:grid;grid-template-columns:1fr 1fr;gap:24px;background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:30px;margin:24px 0}
.calc .field{margin-bottom:18px}
.calc label{display:block;font-size:14.5px;font-weight:500;margin-bottom:8px}
.calc .val{float:right;color:var(--orange);font-weight:600}
.calc input[type=range]{width:100%;accent-color:var(--orange)}
.calc select,.calc input[type=number]{width:100%;padding:13px;border:1.5px solid var(--line);border-radius:var(--radius-sm);font-family:inherit;font-size:15px;background:var(--cream-2)}
.calc .out{background:var(--dark);color:#fff;border-radius:var(--radius-md);padding:28px;display:flex;flex-direction:column;justify-content:center}
.calc .out .big{font-size:46px;font-weight:600;color:#fff;letter-spacing:-.03em;line-height:1}
.calc .out .big.orange{color:var(--orange-2)}
.calc .out .row{display:flex;justify-content:space-between;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.14);font-size:15px;color:#c4c4c4}
.calc .out .row b{color:#fff;font-weight:600}
.calc .out .row:last-child{border-bottom:0}
@media(max-width:760px){.calc{grid-template-columns:1fr}}

/* Footer — dark, matches the live site */
.cs-foot{background:#0a0a0a;color:#fff;margin-top:56px;padding:54px 0 28px;font-size:14.5px;border-radius:var(--radius-lg) var(--radius-lg) 0 0}
.foot-top{display:grid;grid-template-columns:1.5fr 1fr;gap:40px;padding-bottom:36px}
.foot-word{font-family:var(--display);font-weight:700;font-size:62px;line-height:.92;color:var(--orange);letter-spacing:-.05em}
.cs-foot .tagline{color:#c4c4c4;max-width:390px;margin:18px 0 0;font-size:14.5px;line-height:1.6}
.cs-foot .disambig{color:#7e7e7e;max-width:390px;margin:14px 0 0;font-size:12px;line-height:1.5}
.foot-links{display:grid;grid-template-columns:1fr 1fr;gap:22px;justify-items:start;align-content:start}
.foot-links .col{display:flex;flex-direction:column;gap:13px}
.foot-links a{color:var(--orange);font-size:15px;font-weight:500}
.foot-links a:hover{color:#fff;text-decoration:none}
.foot-info{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:30px 0;border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}
.foot-info .info{display:flex;flex-direction:column;gap:9px}
.foot-info .lbl{display:flex;align-items:center;gap:8px;font-size:11px;font-weight:600;letter-spacing:.11em;text-transform:uppercase;color:var(--orange)}
.foot-info .lbl svg{width:15px;height:15px;stroke:var(--orange);stroke-width:1.9;fill:none}
.foot-info a,.foot-info .val{color:#e6e6e6;font-size:14.5px;line-height:1.5}
.foot-info a:hover{color:#fff}
.foot-legal{display:flex;justify-content:space-between;align-items:center;gap:14px;padding-top:22px;font-size:13px;color:#8c8c8c;flex-wrap:wrap}
.foot-legal a{color:#8c8c8c}
.foot-legal a:hover{color:var(--orange)}
@media(max-width:860px){.foot-top{grid-template-columns:1fr;gap:22px}.foot-info{grid-template-columns:1fr 1fr}.foot-word{font-size:46px}.foot-links .col{gap:6px}.foot-links a{padding:8px 0}.foot-info .info a{padding:4px 0;display:inline-block}}
@media(max-width:480px){.foot-info{grid-template-columns:1fr}.foot-links{max-width:300px}}

[id]{scroll-margin-top:90px}
