:root {
  --bg: #0b0d0c;
  --panel: #141715;
  --ink: #f4f6ef;
  --muted: #a6aca5;
  --line: #2b302d;
  --lime: #c7ff3d;
  --paper: #f0f1eb;
  --paper-ink: #151815;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 99; background: var(--lime); color: #111; padding: 10px 16px; }
.skip-link:focus { top: 16px; }
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--max));
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: "Unbounded", sans-serif;
  font-size: .9rem;
  background: var(--lime);
  color: #10120f;
  padding: 9px 10px;
  letter-spacing: -.06em;
}
.brand-copy { font-size: .74rem; color: #d5d8d0; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 32px; font-size: .85rem; font-weight: 600; }
nav a { transition: color .2s; }
nav a:hover { color: var(--lime); }
.nav-cta { border: 1px solid rgba(255,255,255,.38); padding: 10px 14px; }
.menu-toggle { display: none; color: white; background: transparent; border: 1px solid rgba(255,255,255,.3); padding: 8px 12px; }

.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,9,8,.97) 0%, rgba(7,9,8,.87) 42%, rgba(7,9,8,.18) 78%), linear-gradient(0deg, var(--bg) 0%, transparent 25%);
}
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); margin: 80px auto 0; }
.eyebrow { margin: 0 0 20px; color: var(--lime); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 800; }
h1, h2, h3, p { text-wrap: balance; }
h1, h2 { font-family: "Unbounded", sans-serif; letter-spacing: -.055em; line-height: 1.05; }
h1 { max-width: 850px; margin: 0; font-size: clamp(3rem, 6.2vw, 6.4rem); font-weight: 600; }
h1 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #d5d9d2; font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex; justify-content: space-between; align-items: center; gap: 30px;
  min-width: 210px; padding: 16px 19px; border: 0; cursor: pointer; font-weight: 800;
}
.button.primary { background: var(--lime); color: #121411; }
.button.primary:hover { background: #dcff80; }
.text-link { border-bottom: 1px solid #717870; padding: 8px 0; font-weight: 700; }
.hero-facts { display: flex; gap: 0; margin: 80px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: grid; gap: 2px; min-width: 205px; padding: 0 28px; border-left: 1px solid rgba(255,255,255,.2); }
.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts strong { font-size: 1.12rem; }
.hero-facts strong i { color: var(--lime); font-style: normal; }
.hero-facts span { color: var(--muted); font-size: .82rem; }

.statement { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 100px 0; font-size: clamp(1.65rem, 3.2vw, 3.2rem); font-weight: 600; line-height: 1.24; }
.statement p { margin: 0; }
.statement .muted { color: #666d67; }
.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 110px 0; }
.section-heading { margin-bottom: 50px; }
.section-heading h2 { max-width: 820px; margin: 0; font-size: clamp(2.2rem, 4.4vw, 4.4rem); }
.section-heading.split { display: grid; grid-template-columns: 1.4fr .65fr; align-items: end; gap: 70px; }
.section-heading.split p:last-child { color: var(--muted); margin: 0 0 8px; }

.service-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; border-top: 1px solid var(--line); }
.service-card { min-height: 330px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card:nth-child(3) { border-right: 0; }
.service-card:nth-child(4) { grid-column: 2 / 4; min-height: auto; }
.service-card.featured { grid-row: span 2; background: var(--lime); color: #151815; min-height: 660px; }
.service-no { color: #717871; font-size: .78rem; }
.featured .service-no { color: #4a5a1d; }
.service-card h3 { margin: 80px 0 16px; font-size: 1.55rem; line-height: 1.15; }
.featured h3 { margin-top: 210px; font-size: clamp(2rem, 3.8vw, 3.6rem); }
.service-card p { color: var(--muted); max-width: 460px; }
.featured p { color: #384019; }
.service-card ul { margin: 30px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(0,0,0,.2); list-style: none; }
.service-card li { padding: 5px 0; font-weight: 700; }

.prices { width: 100%; max-width: none; background: var(--paper); color: var(--paper-ink); padding-left: max(24px, calc((100% - var(--max))/2)); padding-right: max(24px, calc((100% - var(--max))/2)); }
.prices .eyebrow { color: #637626; }
.prices .section-heading.split p:last-child { color: #5c625c; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid #c9ccc3; }
.price-card { position: relative; min-height: 610px; padding: 28px; border-right: 1px solid #c9ccc3; display: flex; flex-direction: column; }
.price-card:last-child { border-right: 0; }
.price-tag { color: #687067; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.price-card h3 { min-height: 65px; margin: 24px 0 12px; font-size: 1.5rem; line-height: 1.15; }
.package-title { display: flex; align-items: flex-start; gap: 9px; }
.package-info { position: relative; display: inline-flex; flex: 0 0 auto; margin-top: 1px; font-family: "Manrope", sans-serif; }
.info-button { width: 23px; height: 23px; padding: 0; border: 1px solid #858c82; border-radius: 50%; background: transparent; color: #596057; font: 800 .78rem/21px "Manrope", sans-serif; text-align: center; cursor: help; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.info-button:hover, .info-button:focus-visible, .package-info.is-open .info-button { border-color: #637626; background: #637626; color: #fff; outline: none; }
.info-tooltip { position: absolute; z-index: 20; top: calc(100% + 12px); left: 0; width: min(330px, calc(100vw - 48px)); padding: 16px 18px; border: 1px solid #aeb3aa; background: #171a18; color: #f5f7f1; box-shadow: 0 18px 40px rgba(0,0,0,.2); font-size: .88rem; font-weight: 500; line-height: 1.5; letter-spacing: 0; opacity: 0; visibility: hidden; transform: translateY(-5px); pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.info-tooltip::before { content: ""; position: absolute; top: -6px; left: 6px; width: 10px; height: 10px; border-left: 1px solid #aeb3aa; border-top: 1px solid #aeb3aa; background: #171a18; transform: rotate(45deg); }
.package-info:hover .info-tooltip, .package-info:focus-within .info-tooltip, .package-info.is-open .info-tooltip { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.price { margin: 12px 0 0; font-family: "Unbounded", sans-serif; font-size: clamp(1.7rem, 2vw, 2.4rem); line-height: 1.1; letter-spacing: -.06em; }
.price span { display: block; margin-top: 7px; color: #637626; font-family: "Manrope", sans-serif; font-size: .48em; letter-spacing: 0; }
.price-card.dark .price span { color: var(--lime); }
.term { color: #737a72; font-size: .8rem; }
.price-card ul { margin: 40px 0; padding: 24px 0 0; border-top: 1px solid #ced0c9; list-style: none; }
.price-card li { padding: 7px 0 7px 22px; position: relative; }
.price-card li::before { content: "•"; position: absolute; left: 3px; color: #7fa318; }
.package-details { margin: -16px 0 26px; border-top: 1px solid #ced0c9; border-bottom: 1px solid #ced0c9; }
.package-details summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 2px; font-weight: 800; cursor: pointer; list-style: none; }
.package-details summary::-webkit-details-marker { display: none; }
.package-details summary span { color: #637626; font-size: 1.35rem; line-height: 1; transition: transform .2s ease; }
.package-details summary:focus-visible { outline: 2px solid #637626; outline-offset: 3px; }
.package-details[open] summary span { transform: rotate(45deg); }
.package-details-body { padding: 2px 0 18px; color: #515850; font-size: .88rem; line-height: 1.5; }
.package-details-body > p:first-child { margin: 0 0 8px; font-weight: 800; color: #2f352f; }
.price-card .package-details ul { margin: 0; padding: 0; border: 0; }
.price-card .package-details li { padding: 4px 0 4px 18px; }
.package-limit { margin: 12px 0 0; padding-top: 12px; border-top: 1px dashed #c2c6be; font-weight: 700; color: #4e5f1d; }
.price-card > a { margin-top: auto; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid #adb1a9; font-weight: 800; }
.price-card.dark { background: #171a18; color: white; }
.price-card.dark .term, .price-card.dark .price-tag { color: #aeb4ad; }
.price-card.dark ul, .price-card.dark > a, .price-card.dark .package-details, .price-card.dark .package-limit { border-color: #3b403c; }
.price-card.dark .package-details-body, .price-card.dark .package-details-body > p:first-child { color: #c7ccc6; }
.price-card.dark .package-limit { color: var(--lime); }
.popular { box-shadow: inset 0 5px 0 var(--lime); }
.popular-label { position: absolute; top: -18px; right: 14px; background: #151815; color: var(--lime); padding: 8px 12px; font-size: .72rem; font-weight: 800; }
.package-boundaries { display: grid; grid-template-columns: .65fr 1.35fr; gap: 50px; margin-top: 28px; padding: 30px; border: 1px solid #c9ccc3; background: #e8ebe3; }
.package-boundaries h3 { margin: 10px 0 0; font-size: clamp(1.35rem, 2.2vw, 2rem); }
.package-boundaries ul { margin: 0; padding: 0; list-style: none; }
.package-boundaries li { position: relative; padding: 8px 0 8px 25px; border-bottom: 1px solid #c9ccc3; }
.package-boundaries li:last-child { border-bottom: 0; }
.package-boundaries li::before { content: "—"; position: absolute; left: 0; color: #637626; font-weight: 800; }

.ticker { overflow: hidden; background: var(--lime); color: #111; padding: 15px 0; font-family: "Unbounded", sans-serif; white-space: nowrap; }
.ticker div { width: max-content; animation: ticker 22s linear infinite; }
.ticker span { margin: 0 30px; }
@keyframes ticker { to { transform: translateX(-30%); } }

.addon-list { border-top: 1px solid var(--line); }
.addon-list div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 22px 4px; border-bottom: 1px solid var(--line); font-size: clamp(1rem, 1.8vw, 1.35rem); }
.addon-list strong { color: var(--lime); }
.addon-list i, .promotion-card i, .support-options i, .calc-card i { font-style: normal; color: #f4f6ef; opacity: .78; }
.price-switch { display: inline-flex; gap: 5px; margin-bottom: 24px; padding: 5px; background: var(--panel); border: 1px solid var(--line); }
.price-switch button { min-width: 180px; padding: 12px 18px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.price-switch button[aria-selected="true"] { background: var(--lime); color: #151815; }
.price-switch button:focus-visible { outline: 2px solid white; outline-offset: 3px; }
.price-view[hidden] { display: none; }
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.service-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.service-table th, .service-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.service-table thead th { color: #858d86; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.service-table tbody td:first-child { width: 25%; color: var(--ink); font-weight: 800; }
.service-table tbody td:nth-child(2) { width: 50%; color: var(--muted); }
.service-table tbody td:last-child { width: 25%; color: var(--lime); font-weight: 800; white-space: nowrap; }
.service-table tr:last-child td { border-bottom: 0; }
.full-service-table .table-group th { padding: 28px 20px 12px; background: #171a18; color: var(--lime); font-family: "Unbounded", sans-serif; font-size: .9rem; letter-spacing: -.02em; text-transform: none; }
.table-note { margin: 16px 0 0; color: #777e77; font-size: .78rem; }
.promotion-card i { color: #5a6e1c; opacity: 1; }
.ads-card i { color: #f4f6ef; opacity: .78; }
.promotion {
  padding: 110px max(24px, calc((100% - var(--max))/2));
  background: #d8dbd1;
  color: #151815;
}
.promotion .eyebrow { color: #5a6e1c; }
.promotion-head { display: grid; grid-template-columns: .45fr 1.55fr; gap: 70px; align-items: start; margin-bottom: 55px; }
.promotion-head h2 { margin: 0; max-width: 950px; font-size: clamp(2.2rem, 4.5vw, 4.7rem); }
.promotion-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #afb4a9; }
.promotion-card { min-height: 610px; padding: 34px; display: flex; flex-direction: column; }
.promotion-card:first-child { border-right: 1px solid #afb4a9; }
.promotion-no { color: #657063; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.promotion-card h3 { margin: 80px 0 18px; font-family: "Unbounded", sans-serif; font-size: clamp(2rem, 3.6vw, 3.8rem); letter-spacing: -.06em; line-height: 1.05; }
.promotion-card > p { max-width: 590px; color: #535b52; }
.promotion-card dl { margin: auto 0 25px; border-top: 1px solid #afb4a9; }
.promotion-card dl div { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding: 16px 0; border-bottom: 1px solid #afb4a9; }
.promotion-card dt { font-weight: 700; }
.promotion-card dd { margin: 0; color: #3c4b10; font-weight: 800; white-space: nowrap; }
.promotion-card small { color: #626961; font-size: .78rem; }
.ads-card { background: #171a18; color: white; }
.ads-card .promotion-no, .ads-card > p, .ads-card small { color: #aeb4ad; }
.ads-card dl, .ads-card dl div { border-color: #3b403c; }
.ads-card dd { color: var(--lime); }
.promotion-note { display: grid; grid-template-columns: .45fr 1.55fr; gap: 70px; padding: 30px 0 0; }
.promotion-note p { margin: 0; color: #525952; }
.clients { padding-top: 130px; }
.clients-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.clients-head h2 { margin: 0; max-width: 850px; font-size: clamp(2.2rem, 4.6vw, 4.8rem); }
.clients-head > p { margin: 0 0 8px; color: var(--muted); }
.client-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 55px; background: var(--line); }
.client-flow article { min-height: 280px; padding: 23px; background: var(--bg); }
.client-flow span { color: var(--lime); font-size: .72rem; }
.client-flow h3 { margin: 90px 0 12px; font-size: 1.2rem; }
.client-flow p { margin: 0; color: var(--muted); font-size: .86rem; }
.client-packages { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; border: 1px solid var(--line); }
.client-packages article { min-height: 360px; padding: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.client-packages article:last-child { border-right: 0; background: var(--lime); color: #151815; }
.client-packages article > span { color: #858d86; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.client-packages article:last-child > span { color: #536017; }
.client-packages h3 { margin: 65px 0 12px; font-size: 1.6rem; line-height: 1.1; }
.client-packages strong { color: var(--lime); font-family: "Unbounded", sans-serif; font-size: 1.35rem; letter-spacing: -.05em; }
.client-packages strong i { display: block; margin-top: 4px; color: #c8cdc5; font-family: "Manrope", sans-serif; font-size: .72em; font-style: normal; letter-spacing: 0; }
.client-packages article:last-child strong, .client-packages article:last-child strong i { color: #36430f; }
.client-packages p { margin-top: auto; color: var(--muted); font-size: .9rem; }
.client-packages article:last-child p { color: #435115; }
.outreach-rules { display: grid; grid-template-columns: .4fr 1.6fr; gap: 60px; margin-top: 38px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outreach-rules p { margin: 0; color: var(--muted); }
.socials { padding-top: 130px; }
.socials-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.socials-heading h2 { margin: 0; max-width: 900px; font-size: clamp(2.2rem, 4.5vw, 4.7rem); }
.socials-heading > p { margin: 0 0 8px; color: var(--muted); }
.platforms { display: flex; flex-wrap: wrap; gap: 10px; margin: 45px 0 50px; padding: 0; list-style: none; }
.platforms li { padding: 10px 16px; border: 1px solid #495049; border-radius: 100px; color: #dfe3db; font-weight: 700; }
.platforms li:first-child { background: var(--lime); border-color: var(--lime); color: #151815; }
.social-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.social-price-card { min-height: 690px; padding: 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; background: #111411; }
.social-price-card:last-child { border-right: 0; }
.social-price-card.accent { background: var(--lime); color: #151815; }
.social-price-card.dark-social { background: #eff0ea; color: #151815; }
.social-label { min-height: 42px; color: #8e958d; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.accent .social-label, .dark-social .social-label { color: #536017; }
.social-price-card h3 { margin: 65px 0 18px; font-size: clamp(1.6rem, 2.6vw, 2.8rem); line-height: 1.08; }
.social-price { margin: 0; font-family: "Unbounded", sans-serif; font-size: clamp(1.8rem, 2.8vw, 3rem); line-height: 1.1; letter-spacing: -.06em; }
.social-price i { display: block; margin-top: 7px; color: var(--lime); font-family: "Manrope", sans-serif; font-size: .55em; font-style: normal; letter-spacing: 0; }
.accent .social-price i, .dark-social .social-price i { color: #596d17; }
.social-price small { display: block; margin-top: 8px; color: #8e958d; font-family: "Manrope", sans-serif; font-size: .32em; letter-spacing: 0; }
.accent .social-price small, .dark-social .social-price small { color: #5d655c; }
.social-price-card > ul { margin: 40px 0; padding: 24px 0 0; border-top: 1px solid #363b37; list-style: none; }
.accent > ul, .dark-social > ul { border-color: rgba(0,0,0,.22); }
.social-price-card > ul li { position: relative; padding: 6px 0 6px 21px; }
.social-price-card > ul li::before { content: "•"; position: absolute; left: 2px; color: var(--lime); }
.accent > ul li::before, .dark-social > ul li::before { color: #607a16; }
.setup { margin-top: auto; padding-top: 20px; border-top: 1px solid #363b37; color: #aab0a9; font-size: .86rem; }
.accent .setup, .dark-social .setup { border-color: rgba(0,0,0,.22); color: #525952; }
.setup strong { display: block; margin-top: 4px; color: inherit; font-size: 1rem; }
.social-flow { margin-top: 55px; display: grid; grid-template-columns: .4fr 1.6fr; gap: 50px; }
.social-flow > strong { font-size: 1.1rem; }
.social-flow ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0; padding: 0; background: var(--line); list-style: none; }
.social-flow li { min-height: 150px; padding: 18px; background: var(--bg); font-size: .88rem; }
.social-flow li span { display: block; margin-bottom: 45px; color: var(--lime); font-size: .72rem; }
.social-disclaimer { max-width: 900px; margin: 30px 0 0 auto; color: #7f867f; font-size: .78rem; }
.process { border-top: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; background: var(--line); list-style: none; }
.process-grid li { min-height: 280px; padding: 26px; background: var(--bg); }
.process-grid span { color: var(--lime); font-size: .75rem; }
.process-grid h3 { margin: 90px 0 12px; font-size: 1.35rem; }
.process-grid p { color: var(--muted); margin: 0; font-size: .93rem; }

.calculator { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.calc-intro { position: sticky; top: 40px; }
.calc-intro h2 { margin: 0; font-size: clamp(2.4rem, 4.2vw, 4.4rem); }
.calc-intro > p:last-child { color: var(--muted); max-width: 490px; }
.calc-card { padding: 34px; background: var(--panel); border: 1px solid var(--line); }
fieldset { display: grid; gap: 10px; margin: 0 0 32px; padding: 0; border: 0; }
legend { margin-bottom: 15px; font-weight: 800; }
.calc-card label { cursor: pointer; }
.calc-card label > span { display: flex; justify-content: space-between; gap: 15px; padding: 15px 16px; background: #0d100e; border: 1px solid var(--line); transition: border-color .2s, background .2s; }
.calc-card input { position: absolute; opacity: 0; pointer-events: none; }
.calc-card input:checked + span { border-color: var(--lime); background: #182014; }
.calc-card input:focus-visible + span { outline: 2px solid white; outline-offset: 2px; }
.calc-card label strong { color: var(--lime); white-space: nowrap; }
.calc-result { display: grid; padding: 24px 0; border-top: 1px solid var(--line); }
.calc-result span { color: var(--muted); font-size: .85rem; }
.calc-result strong { font-family: "Unbounded", sans-serif; color: var(--lime); font-size: clamp(2.2rem, 4vw, 3.7rem); letter-spacing: -.06em; }
.calc-result b { margin-top: -6px; color: #f4f6ef; font-size: 1.1rem; }
.calc-result small { color: #7f857f; }
.calc-card .button { width: 100%; }
.copy-status { min-height: 24px; margin: 10px 0 0; color: var(--lime); font-size: .85rem; }

.support { padding: 100px max(24px, calc((100% - var(--max))/2)); background: var(--lime); color: #151815; display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.support .eyebrow { color: #4e6115; }
.support h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); }
.support-options { border-top: 1px solid rgba(0,0,0,.3); }
.support-options article { display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; padding: 23px 0; border-bottom: 1px solid rgba(0,0,0,.3); }
.support-options span { font-weight: 800; }
.support-options i { color: #405015; opacity: 1; }
.support-options p { grid-column: 1 / -1; margin: 0; color: #405015; }
.final-cta { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 140px 0; text-align: center; }
.final-cta .eyebrow { font-size: 1.875rem; }
.currency-note { width: min(calc(100% - 48px), var(--max)); margin: 28px auto 0; color: #777e77; font-size: .78rem; text-align: center; }
.final-cta h2 { margin: 0 0 30px; font-size: clamp(2.5rem, 6vw, 6rem); }
.final-cta .button { margin: auto; }
.contact-lead { max-width: 700px; margin: 0 auto 45px; color: var(--muted); font-size: 1.05rem; }
.contact-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 960px; margin: 0 auto; text-align: left; }
.contact-card { min-height: 210px; padding: 28px; border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.contact-card + .contact-card { border-left: 0; }
.contact-card span { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card strong { margin-top: auto; overflow-wrap: anywhere; font-family: "Unbounded", sans-serif; font-size: clamp(1.15rem, 2vw, 1.7rem); letter-spacing: -.04em; }
.contact-card small { margin-top: 12px; color: var(--lime); font-weight: 800; }
.contact-card:hover, .contact-card:focus-visible { border-color: var(--lime); background: #151a13; outline: none; }
.contact-card.telegram { background: var(--lime); color: #151815; border-color: var(--lime); }
.contact-card.telegram span, .contact-card.telegram small { color: #485718; }
.contact-card.telegram:hover, .contact-card.telegram:focus-visible { background: #dcff80; }
footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 35px 0; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--muted); font-size: .85rem; }
footer .brand-copy { color: var(--muted); }
.footer-contacts { display: grid; gap: 2px; }
.footer-contacts a:hover, footer > a:hover { color: var(--lime); }

@media (max-width: 1000px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { border-bottom: 1px solid #c9ccc3; }
  .price-card:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-row: auto; min-height: 430px; }
  .service-card.featured h3 { margin-top: 120px; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(3) { border-right: 1px solid var(--line); }
  .service-card:nth-child(4) { grid-column: auto; }
  .calculator, .support { grid-template-columns: 1fr; }
  .promotion-head, .promotion-note { grid-template-columns: 1fr; gap: 20px; }
  .clients-head { grid-template-columns: 1fr; gap: 25px; }
  .client-flow { grid-template-columns: repeat(2, 1fr); }
  .client-packages { grid-template-columns: 1fr; }
  .client-packages article { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--line); }
  .client-packages article:last-child { border-bottom: 0; }
  .outreach-rules { grid-template-columns: 1fr; gap: 15px; }
  .socials-heading { grid-template-columns: 1fr; gap: 25px; }
  .social-price-grid { grid-template-columns: 1fr; }
  .social-price-card { min-height: 610px; border-right: 0; border-bottom: 1px solid var(--line); }
  .social-price-card:last-child { border-bottom: 0; }
  .social-flow { grid-template-columns: 1fr; }
  .social-flow ol { grid-template-columns: repeat(2, 1fr); }
  .calc-intro { position: static; }
}

@media (max-width: 760px) {
  .site-header { width: calc(100% - 32px); min-height: 70px; }
  .brand-copy { display: none; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 20px; background: #111411; border: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 8px; }
  nav.open { display: flex; }
  nav a { padding: 10px; }
  .hero { min-height: 820px; align-items: flex-end; padding-bottom: 60px; }
  .hero-image { object-position: 62% center; opacity: .66; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,9,8,.98) 5%, rgba(7,9,8,.55) 70%, rgba(7,9,8,.8)); }
  .hero-content { width: calc(100% - 32px); margin-top: 100px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .button { width: 100%; }
  .hero-facts { margin-top: 45px; flex-direction: column; gap: 15px; }
  .hero-facts li { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding: 12px 0 0; }
  .statement, .section, .final-cta, footer { width: calc(100% - 32px); }
  .section { padding: 80px 0; }
  .section-heading.split { grid-template-columns: 1fr; gap: 25px; }
  .service-grid, .price-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(3), .price-card { border-right: 0; }
  .service-card.featured { min-height: 480px; }
  .popular-label { top: 0; }
  .price-card { min-height: 560px; }
  .price-card:last-child { border-bottom: 0; }
  .package-boundaries { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .addon-list div { grid-template-columns: 1fr; gap: 3px; }
  .price-switch { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
  .price-switch button { min-width: 0; padding: 11px 8px; font-size: .8rem; }
  .promotion { padding: 80px 16px; }
  .promotion-grid { grid-template-columns: 1fr; }
  .promotion-card { min-height: 570px; padding: 24px; }
  .promotion-card:first-child { border-right: 0; border-bottom: 1px solid #afb4a9; }
  .promotion-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .promotion-card h3 { margin-top: 55px; }
  .clients { padding-top: 90px; }
  .client-flow { grid-template-columns: 1fr; }
  .client-flow article { min-height: 220px; }
  .client-flow h3 { margin-top: 55px; }
  .socials { padding-top: 90px; }
  .social-flow ol { grid-template-columns: 1fr; }
  .social-flow li { min-height: auto; }
  .social-flow li span { margin-bottom: 25px; }
  .calculator { gap: 40px; }
  .calc-card { padding: 20px; }
  .calc-card label > span { flex-direction: column; gap: 4px; }
  .support { padding: 80px 16px; gap: 40px; }
  .support-options article { grid-template-columns: 1fr; }
  .support-options p { grid-column: auto; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-card + .contact-card { border-left: 1px solid var(--line); border-top: 0; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker div { animation: none; }
  .info-button, .info-tooltip, .package-details summary span { transition: none; }
}
