@charset "UTF-8";

/* Страница «Telegram Ads». Общее — в sw-base.css и sw-blocks.css. */

/* ============================================================
   SW BASE — общая основа новой системы страниц
   Переменные { margin: 0; padding: 0; box-sizing: border-box; }
@keyframes ctaShake {
    0%, 88%, 100% { transform: translateX(0) scale(1); }
    90% { transform: translateX(-2px) scale(1.02); }
    91% { transform: translateX(2px); }
    92% { transform: translateX(-2px); }
    93% { transform: translateX(2px); }
    94% { transform: translateX(-1px); }
    95% { transform: translateX(1px) scale(1.02); }
    96% { transform: translateX(0) scale(1); }
}
@keyframes marqueeRunRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes marqueeRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nichesRun    { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes nichesRunRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes incArrowBlink {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(3px); }
}
@keyframes incArrowPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(252,168,23,0.45), 0 0 0 0 rgba(252,168,23,0.5); }
    70%      { box-shadow: 0 4px 14px rgba(252,168,23,0.45), 0 0 0 10px rgba(252,168,23,0); }
}
@keyframes swShake {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-5px); }
    75%      { transform: translateX(5px); }
}
@keyframes swDrawCircle { to { stroke-dashoffset: 0; } }
@keyframes swDrawMark   { to { stroke-dashoffset: 0; } }
@keyframes swDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}
push('styles').
   ============================================================ */


h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
@keyframes logoFloat {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-3px); }
}
.hero { position: relative; padding: 30px 3% 80px; background: var(--bg); overflow: hidden; }
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    z-index: 1; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(252,168,23,0.1); border: 1px solid rgba(252,168,23,0.3);
    color: var(--orange); padding: 8px 18px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 24px;
    animation: heroTitleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-title {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(48px, 7vw, 108px); line-height: 0.95;
    text-transform: uppercase; letter-spacing: -1.5px;
    color: var(--orange); text-shadow: 0 0 60px rgba(252,168,23,0.14);
    margin-bottom: 20px;
    animation: heroTitleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroTitleIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-sub {
    font-size: clamp(16px, 1.4vw, 20px); color: var(--text-2);
    max-width: 640px; margin: 0 auto 40px; line-height: 1.6;
    animation: heroTitleIn 0.9s .1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badges {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    max-width: 900px; margin: 0 auto 40px;
    animation: heroTitleIn 0.9s .2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--line-2);
    padding: 14px 24px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase; color: var(--text);
    transition: all .25s;
}
.hero-badge:hover { border-color: var(--orange); background: rgba(252,168,23,0.06); transform: translateY(-2px); }
.hero-badge-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(252,168,23,0.12); color: var(--orange); font-size: 16px;
}
.hero-badge b { color: var(--orange); font-weight: 700; }
@keyframes trustShine {
    0%, 70%   { transform: translateX(-120%); }
    88%, 100% { transform: translateX(120%); }
}
.laptop-wrap { position: relative; max-width: 1300px; margin: 0 auto; padding: 20px 0; display: grid; grid-template-columns: 1fr 260px; gap: 40px; align-items: center; justify-content: center; }
.laptop-stage { position: relative; perspective: 2000px; }
.laptop-glow { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); width: 90%; height: 300px; background: radial-gradient(ellipse at center, rgba(252,168,23,0.22) 0%, transparent 70%); filter: blur(40px); z-index: 0; }
.laptop { position: relative; z-index: 2; width: 100%; aspect-ratio: 16/10; animation: laptopFloat 6s ease-in-out infinite; }
.laptop-hint { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); z-index: 5; background: rgba(31,32,38,0.92); border: 1px solid var(--orange); color: var(--orange); font-family: 'Oswald'; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; opacity: 0; transition: opacity .25s; pointer-events: none; white-space: nowrap; }
.laptop-stage:hover .laptop-hint { opacity: 1; }
@keyframes laptopFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.laptop-screen { position: relative; width: 100%; aspect-ratio: 16/10; background: #0a0a0a; border-radius: 20px 20px 8px 8px; padding: 22px 22px 44px; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 2px #1a1a1a; }
.laptop-screen::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #2a2a2a; }
.laptop-base { position: relative; z-index: 3; width: 108%; height: 20px; margin: -8px auto 0; background: linear-gradient(180deg, #2a2a2a, #0a0a0a); border-radius: 0 0 20px 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.browser { width: 100%; height: 100%; background: #fff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.browser-bar { background: #f0f0f0; padding: 10px 14px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e0e0e0; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; }
.browser-dots span:nth-child(1) {background:#ff5f56;}
.browser-dots span:nth-child(2) {background:#ffbd2e;}
.browser-dots span:nth-child(3) {background:#27c93f;}
.browser-url { flex: 1; background: #fff; border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #333; font-family: monospace; display: flex; align-items: center; gap: 8px; }
.browser-url-lock { color: #22c55e; font-size: 11px; }
.browser-body { flex: 1; position: relative; overflow: hidden; background: var(--bg); }
.sm-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease-in-out; display: flex; flex-direction: column; background: linear-gradient(160deg, #1F2026 0%, #26272e 100%); color: #fff; }
.sm-slide.active { opacity: 1; }
.sm-nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sm-nav-brand { display: flex; align-items: center; gap: 8px; font-family: 'Oswald'; font-weight: 700; font-size: 14px; }
.sm-nav-brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.sm-nav-logo { height: 30px; width: auto; display: block; }
.sm-nav-menu { display: flex; gap: 20px; font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.sm-nav-cta { background: var(--orange); color: #000; padding: 7px 16px; border-radius: 100px; font-family: 'Oswald'; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.sm-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 40px; }
.sm-hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-family: 'Oswald'; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.sm-hero-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.sm-hero h1 { font-family: 'Oswald'; font-weight: 700; font-size: 42px; line-height: 1; color: var(--orange); margin-bottom: 14px; letter-spacing: -0.5px; }
.sm-hero p { font-size: 13px; color: rgba(255,255,255,0.7); max-width: 420px; margin-bottom: 24px; line-height: 1.5; }
.sm-hero-cta { background: var(--orange); color: #000; padding: 13px 30px; border-radius: 100px; font-family: 'Oswald'; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 30px rgba(252,168,23,0.3); animation: ctaShake 4s ease-in-out infinite; }
.sm-hero-price { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.sm-hero-price b { color: var(--orange); font-family: 'Oswald'; font-size: 16px; font-weight: 700; }
.sm-hero-services { display: flex; gap: 10px; margin-top: 24px; }
.sm-hero-service { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 6px 16px; font-family: 'Oswald'; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }
.sm-included-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.sm-inc { display: inline-flex; align-items: center; gap: 6px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); border-radius: 100px; padding: 6px 14px; font-family: 'Oswald'; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.85); }
.sm-inc::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 11px; }
.sm-inc-accent { background: rgba(252,168,23,0.12); border-color: rgba(252,168,23,0.4); color: #fff; }
.sm-inc-accent::before { content: '★'; color: var(--orange); }
.sm-pains-screen { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px 40px; }
.sm-pains-eyebrow { display: inline-flex; align-items: center; gap: 6px; color: #ef4444; font-family: 'Oswald'; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.sm-pains-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #ef4444; }
.sm-pains-screen h2 { font-family: 'Oswald'; font-weight: 700; font-size: 28px; color: #fff; margin-bottom: 22px; line-height: 1.05; }
.sm-pains-screen h2 span { color: var(--orange); }
.sm-pains-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin-bottom: 24px; }
.sm-pain { display: flex; align-items: center; gap: 10px; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); border-radius: 10px; padding: 12px 16px; text-align: left; }
.sm-pain-x { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(239,68,68,0.15); color: #ef4444; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.sm-pain-t { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.3; }
.sm-pains-bridge { display: inline-flex; align-items: center; gap: 10px; font-family: 'Oswald'; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.sm-pains-bridge b { color: var(--orange); }
.sm-pains-bridge .arrow { color: var(--orange); font-size: 18px; }
.phone-col { display: flex; justify-content: center; animation: phoneFloat 6s ease-in-out infinite; animation-delay: -2s; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
.phone-mock { width: 230px; height: 460px; background: #0a0a0a; border-radius: 32px; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(252,168,23,0.15); position: relative; cursor: pointer; }
.phone-mock::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 70px; height: 18px; border-radius: 100px; background: #0a0a0a; z-index: 5; }
.phone-screen { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; position: relative; background: linear-gradient(160deg, #1F2026 0%, #26272e 100%); }
.phone-status { padding: 14px 20px 8px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #fff; position: relative; z-index: 6; }
.phone-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease-in-out; display: flex; flex-direction: column; padding: 44px 16px 16px; }
.phone-slide.active { opacity: 1; }
.phone-slide-offer { text-align: center; justify-content: center; }
.phone-slide-offer .eyebrow { color: var(--orange); font-family: 'Oswald'; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; }
.phone-slide-offer h1 { font-family: 'Oswald'; font-weight: 700; font-size: 24px; line-height: 1; color: var(--orange); margin: 10px 0; }
.phone-slide-offer p { font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 16px; line-height: 1.4; }
.phone-slide-offer .cta { display: inline-block; background: var(--orange); color: #000; padding: 10px 20px; border-radius: 100px; font-family: 'Oswald'; font-size: 10px; font-weight: 700; text-transform: uppercase; animation: ctaShake 4s ease-in-out infinite; }
.phone-offer-price { font-size: 10px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.phone-offer-price b { color: var(--orange); font-family: 'Oswald'; font-size: 13px; }
.phone-inc-row { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-bottom: 12px; }
.phone-inc { display: inline-flex; align-items: center; gap: 4px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); border-radius: 100px; padding: 4px 10px; font-family: 'Oswald'; font-size: 8px; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.phone-inc::before { content: '✓'; color: var(--green); font-weight: 700; }
.phone-inc-accent { background: rgba(252,168,23,0.12); border-color: rgba(252,168,23,0.4); color: #fff; }
.phone-inc-accent::before { content: '★'; color: var(--orange); }
.phone-slide-pains { justify-content: center; gap: 10px; }
.phone-slide-pains .eyebrow { color: #ef4444; font-family: 'Oswald'; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; }
.phone-slide-pains h2 { font-family: 'Oswald'; font-weight: 700; font-size: 17px; color: #fff; line-height: 1.05; margin-bottom: 10px; text-align: center; }
.phone-slide-pains h2 span { color: var(--orange); }
.phone-pain { display: flex; align-items: center; gap: 8px; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); border-radius: 8px; padding: 8px 10px; }
.phone-pain-x { flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; background: rgba(239,68,68,0.15); color: #ef4444; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 9px; }
.phone-pain-t { font-size: 9px; color: rgba(255,255,255,0.8); line-height: 1.25; }
.phone-pains-bridge { text-align: center; font-family: 'Oswald'; font-size: 9px; text-transform: uppercase; color: var(--orange); margin-top: 6px; }
.phone-pains-link { display: block; text-align: center; text-decoration: none; margin-top: 8px; background: var(--orange); color: #000; font-family: 'Oswald'; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 9px 12px; border-radius: 100px; cursor: pointer; animation: ctaShake 4s ease-in-out infinite; }
.adaptive-badge { position: absolute; right: 240px; top: 50%; transform: translateY(-50%); font-family: 'Oswald'; font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; background: rgba(31,32,38,0.9); border: 1px solid var(--orange); border-radius: 100px; animation: adaptivePulse 3s ease-in-out infinite; z-index: 4; }
@keyframes adaptivePulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; box-shadow: 0 0 20px rgba(252,168,23,0.4); } }
.pulse-strip {
    background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 32px 5%;
}
.pulse-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px; align-items: center;
}
.pulse-item { text-align: center; position: relative; }
.pulse-item + .pulse-item::before {
    content: ''; position: absolute; left: -12px; top: 20%; height: 60%;
    width: 1px; background: var(--line);
}
.pulse-item .live-dot {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--green); font-weight: 700; margin-bottom: 6px;
}
.pulse-item .live-dot span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: hv-pulse 1.6s infinite; }
.pulse-item .val { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 40px; color: var(--orange); line-height: 1; }
.pulse-item .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-3); font-weight: 600; margin-top: 6px; }
@media (max-width: 900px) {
.pulse-item + .pulse-item::before { display: none; }
}
.client-word {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-3); white-space: nowrap; transition: color .25s;
}
@media (max-width: 700px) {
.client-word { font-size: 13px; letter-spacing: 1.5px; }
}
.pricing { background: linear-gradient(180deg, #fef5da 0%, #fdf7e8 40%, #fff 100%); padding: 100px 5%; position: relative; color: #111; }
.pricing-container { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(40px, 5vw, 64px); text-transform: uppercase; color: #111; margin-bottom: 16px; letter-spacing: -0.5px; }
.pricing-title span { color: var(--orange); }
.pricing-sub { font-size: 17px; color: #555; max-width: 560px; margin: 0 auto; }
.pricing-tabs { display: flex; gap: 12px; margin-bottom: 32px; overflow-x: auto; padding-bottom: 8px; }
.pricing-tabs::-webkit-scrollbar { height: 4px; }
.pricing-tabs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
.pricing-tab {
    flex: 1; min-width: 260px; background: #fff;
    border: 2px solid transparent; border-radius: 16px;
    padding: 20px 24px 20px; cursor: pointer; text-align: left;
    transition: all .25s; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
}
.pricing-tab:hover {
    transform: translateY(-4px); box-shadow: 0 12px 40px rgba(252,168,23,0.2);
    border-color: rgba(252,168,23,0.3);
}
.pricing-tab.active {
    background: #fff; border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(252,168,23,0.25);
}
.pricing-tab::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(252,168,23,0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}
.pricing-tab:hover::before { transform: translateX(100%); }
.pricing-tab-hint {
    display: inline-flex; align-items: center; gap: 4px;
    position: absolute; top: 10px; right: 10px;
    background: rgba(252,168,23,0.12); color: var(--orange);
    padding: 3px 8px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-size: 9px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    opacity: 0.9;
    animation: hintPulse 2s ease-in-out infinite;
}
.pricing-tab.active .pricing-tab-hint {
    background: var(--orange); color: #000;
    animation: none; opacity: 1;
}
@keyframes hintPulse {
    0%,100% { transform: scale(1); opacity: 0.7; }
    50%     { transform: scale(1.08); opacity: 1; box-shadow: 0 0 0 4px rgba(252,168,23,0.15); }
}
.pricing-tabs-hint {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: 'Oswald', sans-serif; font-size: 12px;
    color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 24px; font-weight: 600;
    animation: hintPulse 2s ease-in-out infinite;
}
.pricing-tabs-hint::before, .pricing-tabs-hint::after {
    content: '↑'; font-size: 16px;
}
.pricing-tab-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; color: #111; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-tab-price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.pricing-tab-price-val { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px; color: var(--orange); line-height: 1; }
.pricing-tab-price-term { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.pricing-card { background: #fff; border-radius: 24px; padding: 40px 40px 34px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); }
.pricing-card-section { margin-bottom: 32px; }
.pricing-card-section:last-of-type { margin-bottom: 24px; }
.pricing-card-h { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: #111; margin-bottom: 12px; }
.pricing-card-h span { color: var(--orange); }
.pricing-card-p { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.suits-label { font-size: 13px; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.suits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-bottom: 8px; }
.suits-item { background: #faf7f0; border-left: 3px solid var(--orange); padding: 14px 18px; border-radius: 0 8px 8px 0; font-family: 'Oswald', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: #111; font-weight: 500; line-height: 1.4; }
.bullets { list-style: none; }
.bullets li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: #333; }
.bullets li::before { content: '+'; color: var(--orange); font-weight: 700; font-family: 'Oswald', sans-serif; font-size: 20px; line-height: 1; flex-shrink: 0; }
.included-pill {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid #ececec;
    padding: 11px 16px; border-radius: 12px;
    font-size: 13px; color: #333; line-height: 1.35;
}
.included-pill::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.limits { list-style: none; }
.limits li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: #333; }
.limits li::before { content: '✕'; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.summary { background: #fdf7e8; border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 0 12px 12px 0; font-size: 15px; line-height: 1.5; color: #333; }
.summary strong { color: var(--orange); font-weight: 700; }
.btn-orange { background: var(--orange); color: #000; padding: 16px 32px; border: none; border-radius: 100px; cursor: pointer; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; transition: all .25s; display: inline-flex; align-items: center; gap: 10px; }
.btn-orange:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(252,168,23,0.35); }
.btn-outline { background: transparent; color: var(--orange); padding: 16px 32px; border: 2px solid var(--orange); border-radius: 100px; cursor: pointer; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; transition: all .25s; display: inline-flex; align-items: center; gap: 10px; }
.btn-outline:hover { background: var(--orange); color: #000; }
.pricing-cta-block {
    margin-top: 28px; padding: 28px 30px;
    background: linear-gradient(135deg, #fdf7e8 0%, #faf3e3 100%);
    border: 1px solid rgba(252,168,23,0.28);
    border-radius: 20px; text-align: center;
}
.pricing-cta-head { margin-bottom: 18px; }
.pricing-cta-title {
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px;
    text-transform: uppercase; letter-spacing: 0.5px; color: #111; margin-bottom: 6px;
}
.pricing-cta-sub { font-size: 14px; color: #666; line-height: 1.5; }
.pricing-form {
    display: inline-flex; align-items: stretch; gap: 6px;
    background: #fff; border: 1px solid rgba(0,0,0,0.1);
    border-radius: 100px; padding: 6px; margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: border-color .25s, box-shadow .25s;
}
.pricing-form:focus-within { border-color: var(--orange); box-shadow: 0 8px 26px rgba(252,168,23,0.22); }
.pricing-form-input {
    background: transparent; border: none; outline: none;
    padding: 0 22px; min-width: 220px;
    font-family: 'Open Sans', sans-serif; font-size: 15px; color: #111;
}
.pricing-form-input::placeholder { color: #aaa; }
.pricing-form-btn {
    background: var(--orange); color: #000; border: none; cursor: pointer;
    padding: 16px 32px; border-radius: 100px; white-space: nowrap;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(252,168,23,0.3);
    transition: background .25s, transform .25s, box-shadow .25s;
}
.pricing-form-btn:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(252,168,23,0.4); }
.pricing-form-privacy { font-size: 12px; color: #999; }
.pricing-form-privacy a { color: #666; text-decoration: underline; text-underline-offset: 3px; }
.pricing-form-privacy a:hover { color: var(--orange); }
@media (max-width: 620px) {
.pricing-cta-block { padding: 22px 18px; }
.pricing-form { flex-direction: column; border-radius: 18px; width: 100%; }
.pricing-form-input { padding: 14px 18px; text-align: center; min-width: 0; }
}
.cmp-wrap { overflow-x: auto; margin-bottom: 34px; border-radius: 18px; border: 1px solid rgba(0,0,0,0.07); background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.cmp { width: 100%; border-collapse: collapse; min-width: 800px; font-size: 13px; }
.cmp th, .cmp td { padding: 14px 16px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.cmp thead th { background: #1F2026; color: #fff; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.cmp thead th.cmp-hot { background: var(--orange); color: #000; }
.cmp-corner { text-align: left !important; font-size: 11px !important; color: #8b8680 !important; letter-spacing: 2px !important; }
.cmp-row-lbl { text-align: left !important; font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #111; font-weight: 600; background: #faf7f0; white-space: nowrap; }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp tbody tr:hover td { background: #fffdf7; }
.cmp tbody tr:hover .cmp-row-lbl { background: #fdf3df; }
.cmp-price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; color: #111; white-space: nowrap; }
td.cmp-hot { background: rgba(252,168,23,0.06); }
.cmp-yes { color: #16a34a; font-weight: 700; }
.cmp-no { color: #c9c4bd; }
@media (max-width: 900px) {
.cmp-wrap::after { content: '\2190  \2192'; }
}
.cmp-th-sub { display: block; font-size: 9px; letter-spacing: 1px; font-weight: 400; text-transform: lowercase; color: rgba(255,255,255,0.45); margin-top: 4px; }
.cmp-hot .cmp-th-sub { color: rgba(0,0,0,0.55); }
.cmp-plat { font-size: 11px; color: #999; }
.pricing-tab-sub { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: #8b8680; margin: 6px 0 10px; line-height: 1.3; }
.tabs-panel .pricing-tab.active .pricing-tab-sub { color: var(--orange); }
.pc-sub { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); background: rgba(252,168,23,0.1); border: 1px solid rgba(252,168,23,0.3); padding: 5px 12px; border-radius: 100px; margin-bottom: 10px; }
.pc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid rgba(0,0,0,0.07); margin-bottom: 22px; }
.pc-top-left { flex: 1; min-width: 240px; }
.pc-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 30px; text-transform: uppercase; color: #111; letter-spacing: 0.5px; margin-bottom: 8px; }
.pc-short { font-size: 15px; color: #555; line-height: 1.55; max-width: 520px; }
.pc-top-right { text-align: right; flex-shrink: 0; }
.pc-price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 34px; color: var(--orange); line-height: 1; white-space: nowrap; }
.pc-term { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #888; margin-top: 8px; white-space: nowrap; }
.pc-fit { margin-bottom: 24px; }
.pc-fit-lbl, .pc-key-lbl { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 12px; }
.pc-fit-item { background: #faf7f0; border-left: 3px solid var(--orange); padding: 10px 16px; border-radius: 0 8px 8px 0; font-size: 13px; color: #333; line-height: 1.4; }
.pc-key { margin-bottom: 22px; }
.pc-key-item {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid #ececec;
    padding: 12px 18px; border-radius: 12px;
    font-size: 13px; color: #333; line-height: 1.35;
    transition: border-color .2s, box-shadow .2s;
}
.pc-key-item:hover { border-color: rgba(252,168,23,0.45); box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.pc-key-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pc-more-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; cursor: pointer;
    background: linear-gradient(135deg, rgba(252,168,23,0.14) 0%, rgba(252,168,23,0.07) 100%);
    border: 1.5px solid rgba(252,168,23,0.45);
    padding: 16px 24px; border-radius: 14px;
    font-family: 'Oswald', sans-serif; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase; color: #111;
    transition: background .25s, border-color .25s, box-shadow .25s;
    animation: ctaShake 5s ease-in-out infinite;
    position: relative;
}
.pc-more-btn:hover {
    background: linear-gradient(135deg, rgba(252,168,23,0.25) 0%, rgba(252,168,23,0.14) 100%);
    border-color: var(--orange);
    box-shadow: 0 8px 26px rgba(252,168,23,0.28);
}
.pc-more-btn::after {
    content: ''; position: absolute; inset: -2px; border-radius: 16px;
    border: 2px solid var(--orange); opacity: 0;
    animation: moreRing 5s ease-in-out infinite; pointer-events: none;
}
@keyframes moreRing {
    0%, 84%, 100% { opacity: 0; transform: scale(1); }
    88%           { opacity: 0.55; transform: scale(1); }
    96%           { opacity: 0; transform: scale(1.04); }
}
.pc-more-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; flex-shrink: 0;
    border-radius: 50%; background: var(--orange); color: #000;
    font-size: 14px; font-weight: 700;
    animation: arrowBounce 1.8s ease-in-out infinite;
    transition: transform .25s;
}
@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(3px); }
}
.pc-more-count {
    background: #1F2026; color: var(--orange);
    padding: 4px 12px; border-radius: 100px;
    font-size: 11px; letter-spacing: 1px; white-space: nowrap;
}
.pc-more-btn.is-open { animation: none; }
.pc-more-btn.is-open::after { animation: none; }
.pc-more-btn.is-open .pc-more-ico { transform: rotate(180deg); animation: none; }
@media (max-width: 620px) {
.pc-more-btn { flex-wrap: wrap; gap: 8px; font-size: 12px; padding: 14px 16px; }
}
.pc-details { border-top: 1px solid rgba(0,0,0,0.07); padding-top: 26px; margin-bottom: 24px; animation: pcFade .35s ease both; }
@keyframes pcFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.pc-block { margin-bottom: 28px; }
.pc-block:last-child { margin-bottom: 0; }
.pc-block-h { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; color: #111; margin-bottom: 12px; }
.pc-block-h-muted { color: #999; }
.pc-block-p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 14px; }
.pc-limits { list-style: none; }
.pc-limits li { position: relative; padding: 7px 0 7px 22px; font-size: 14px; color: #777; }
.pc-limits li::before { content: '—'; position: absolute; left: 0; color: #bbb; }
.pc-summary { background: #fdf7e8; border-left: 4px solid var(--orange); padding: 18px 22px; border-radius: 0 12px 12px 0; font-size: 15px; line-height: 1.55; color: #333; }
@media (max-width: 620px) {
.pc-top { flex-direction: column; gap: 14px; }
.pc-top-right { text-align: left; }
.pc-name { font-size: 24px; }
.pc-price { font-size: 28px; }
}
.pstep { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pstep-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: #1F2026; color: var(--orange);
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
}
.pstep-txt {
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px;
    letter-spacing: 1.5px; text-transform: uppercase; color: #111; white-space: nowrap;
}
.pstep-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0,0,0,0.12), transparent); }
.pstep-2 { margin-top: 46px; }
.tabs-panel {
    background: #1F2026; border-radius: 22px; padding: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    position: relative;
}
.tabs-panel .pricing-tabs { margin-bottom: 0; padding-bottom: 0; }
.tabs-panel .pricing-tabs::-webkit-scrollbar { height: 5px; }
.tabs-panel .pricing-tabs::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 4px; }
.tabs-panel .pricing-tabs::-webkit-scrollbar-thumb { background: rgba(252,168,23,0.5); border-radius: 4px; }
.tabs-panel .pricing-tab { background: #2f3038; border-color: transparent; box-shadow: none; }
.tabs-panel .pricing-tab:hover { background: #383943; border-color: rgba(252,168,23,0.35); box-shadow: none; }
.tabs-panel .pricing-tab.active { background: #2f3038; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,168,23,0.15); }
.tabs-panel .pricing-tab-title { color: #fff; }
.tabs-panel .pricing-tab-price-term { color: #8b8680; }
.tabs-panel .pricing-tab::before { display: none; }
.tabs-connector { position: relative; height: 26px; }
.tabs-connector::before {
    content: ''; position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
    border-left: 12px solid transparent; border-right: 12px solid transparent;
    border-top: 12px solid #1F2026;
}
.tabs-connector::after {
    content: ''; position: absolute; left: 50%; top: 14px;
    transform: translateX(-50%);
    width: 2px; height: 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), transparent);
}
@media (max-width: 700px) {
.pstep-txt { font-size: 13px; white-space: normal; }
.tabs-panel { padding: 14px; border-radius: 18px; }
}
.included-all { background: #fff; padding: 80px 5%; color: #111; }
.included-all-container { max-width: 1200px; margin: 0 auto; }
.included-all-header { text-align: center; margin-bottom: 40px; }
.included-all-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 48px); text-transform: uppercase; color: #111; margin-bottom: 12px; }
.included-all-title span { color: var(--orange); }
.included-all-sub { font-size: 15px; color: #666; }
.included-all-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.included-all-card { background: #faf7f0; border-radius: 20px; padding: 32px; text-align: left; transition: all .25s; }
.included-all-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.included-all-icon { width: 56px; height: 56px; border-radius: 14px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--orange); margin-bottom: 20px; box-shadow: 0 4px 12px rgba(252,168,23,0.15); }
.inc-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.inc-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.included-all-card h3 { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: #111; margin-bottom: 10px; letter-spacing: 0.5px; }
.included-all-card p { font-size: 14px; color: #555; line-height: 1.6; }
.seo { background: linear-gradient(180deg, #fdf8ec 0%, #faf5e8 100%); padding: 80px 5%; }
.seo-inner { max-width: 1200px; margin: 0 auto; }
.seo-head { text-align: center; margin-bottom: 44px; }
.seo-eyebrow {
    display: inline-block; margin-bottom: 16px; padding: 7px 17px; border-radius: 100px;
    background: rgba(252,168,23,0.14); border: 1px solid rgba(252,168,23,0.35);
    font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: #b47a08;
}
.seo-title {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(27px, 3.3vw, 44px); text-transform: uppercase;
    color: #111; line-height: 1.15; margin-bottom: 14px;
}
.seo-title span { color: var(--orange); }
.seo-sub { font-size: 15px; color: #555; max-width: 660px; margin: 0 auto; line-height: 1.65; }
.seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.seo-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px; padding: 26px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.04);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.seo-card:hover { border-color: rgba(252,168,23,0.5); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.08); }
.seo-step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; margin-bottom: 15px;
    background: #1F2026; color: var(--orange);
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px;
}
.seo-card h3 {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px;
    color: #111; letter-spacing: 0.3px; margin-bottom: 9px; line-height: 1.3;
}
.seo-card p { font-size: 13.5px; color: #555; line-height: 1.6; }
.seo-note {
    max-width: 760px; margin: 34px auto 0; padding: 18px 24px;
    background: rgba(255,255,255,0.7); border-left: 3px solid var(--orange);
    border-radius: 0 12px 12px 0;
    font-size: 13.5px; color: #555; line-height: 1.6; text-align: left;
}
@media (max-width: 1000px) {
.seo-grid { grid-template-columns: repeat(2, 1fr); }
}
.niches { background: var(--bg); padding: 66px 0 70px; overflow: hidden; }
.niches-head { text-align: center; padding: 0 5%; margin-bottom: 34px; }
.niches-title {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(26px, 3.2vw, 42px); text-transform: uppercase;
    color: #fff; margin-bottom: 10px;
}
.niches-title span { color: var(--orange); }
.niches-sub { font-size: 15px; color: var(--text-2); max-width: 620px; margin: 0 auto; line-height: 1.6; }
.niches-strip {
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(252,168,23,0.75);
    border-bottom: 1px solid rgba(252,168,23,0.75);
    background: linear-gradient(180deg, #fdf8ec 0%, #f7f0e0 100%);
    padding: 15px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.niches-strip-2 { margin-top: 10px; }
.niches-track { display: flex; align-items: center; width: max-content; animation: nichesRun 90s linear infinite; }
.niches-track-rev { animation: nichesRunRev 104s linear infinite; }
.niches-strip:hover .niches-track { animation-play-state: paused; }
.niche {
    flex-shrink: 0; padding: 0 4px; white-space: nowrap;
    font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 15px;
    color: #3a3630; transition: color .2s;
}
.niche:hover { color: #b47a08; }
.niche-dot { flex-shrink: 0; padding: 0 16px; color: var(--orange); font-size: 9px; }
@media (max-width: 760px) {
.niches { padding: 40px 0 44px; }
.niches-head { padding: 0 16px; margin-bottom: 22px; }
.niches-title { font-size: 24px; }
.niches-sub { font-size: 14px; }
.niches-strip { padding: 12px 0; }
.niches-strip-2 { display: none; }
.niche { font-size: 13px; }
.niche-dot { padding: 0 11px; font-size: 7px; }
.niches-track { animation-duration: 62s; }
}
.safe { background: var(--bg-2); padding: 80px 5%; }
.safe-inner { max-width: 1200px; margin: 0 auto; }
.safe-head { text-align: center; margin-bottom: 44px; }
.safe-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(28px, 3.4vw, 46px); text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.safe-title span { color: var(--orange); }
.safe-sub { font-size: 15px; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.safe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.safe-card {
    background: var(--bg-3); border: 1px solid var(--line);
    border-radius: 18px; padding: 26px;
    transition: border-color .25s, transform .25s;
}
.safe-card:hover { border-color: rgba(252,168,23,0.45); transform: translateY(-4px); }
.safe-num {
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 40px;
    color: var(--orange); line-height: 1; margin-bottom: 14px;
}
.safe-ico {
    width: 48px; height: 48px; border-radius: 13px; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(252,168,23,0.12); border: 1px solid rgba(252,168,23,0.28);
    font-size: 21px;
}
.safe-card h3 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; color: #fff; letter-spacing: 0.3px; margin-bottom: 9px; line-height: 1.3; }
.safe-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
@media (max-width: 1000px) {
.safe-grid { grid-template-columns: 1fr 1fr; }
}
.cta-spark {
    position: absolute; width: 4px; height: 4px; border-radius: 50%;
    background: var(--orange); box-shadow: 0 0 12px var(--orange);
    animation: sparkFloat 8s linear infinite;
    opacity: 0;
}
@keyframes sparkFloat {
    0%   { opacity: 0; transform: translate(0, 0); }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { opacity: 0; transform: translate(var(--tx, 100px), var(--ty, -100px)); }
}
.final-form-input {
    background: transparent; border: none; outline: none;
    padding: 0 24px; min-width: 230px;
    font-family: 'Open Sans', sans-serif; font-size: 15px; color: #fff;
}
.final-form-input::placeholder { color: var(--text-3); }
.final-form-btn {
    background: var(--orange); color: #000; border: none; cursor: pointer;
    padding: 18px 36px; border-radius: 100px; white-space: nowrap;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: background .25s, transform .25s;
}
.final-form-btn:hover { background: var(--orange-2); transform: translateY(-2px); }
@media (max-width: 620px) {
.final-form-input { padding: 14px 20px; text-align: center; min-width: 0; }
}
.cta-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 22px auto 24px; max-width: 260px; }
.cta-divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.18); }
.cta-divider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.cta-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    max-width: 940px; margin: 34px auto 0; text-align: left;
}
.cta-step {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 22px;
    transition: border-color .25s, transform .25s, background .25s;
}
.cta-step:hover { border-color: rgba(252,168,23,0.45); background: rgba(252,168,23,0.05); transform: translateY(-3px); }
.cta-step-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cta-step-ico {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    border: 1px solid rgba(252,168,23,0.45); background: rgba(252,168,23,0.1);
    color: var(--orange); font-size: 17px;
}
.cta-step-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px; color: #fff; letter-spacing: 0.4px; line-height: 1.25; }
.cta-step p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.cta-steps { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 860px) {
.cta-steps { grid-template-columns: 1fr; gap: 10px; }
}
@keyframes hv-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }
@media (max-width: 1000px) {
.laptop-wrap { grid-template-columns: 1fr; gap: 30px; padding: 20px 0; justify-items: center; }
.laptop-stage { grid-column: 1; width: 100%; }
.phone-col { grid-column: 1; }
.adaptive-badge { display: none; }
}
@media (max-width: 900px) {
.hero { padding: 30px 5% 60px; }
.hero-title { font-size: 56px; letter-spacing: -1px; }
.laptop-wrap { padding: 30px 0; }
.laptop-float-card { display: none; }
.pricing { padding: 60px 5%; }
.pricing-tabs { flex-direction: column; }
.pricing-tab { min-width: 100%; }
.pricing-card { padding: 24px; }
}
.cf-n {
    background: rgba(255,255,255,0.08); color: var(--text-3);
    padding: 1px 7px; border-radius: 100px; font-size: 10px; line-height: 1.6;
}
.inc-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.inc-more { display: none; }
.inc-more-ico { transition: transform .25s; }
.inc-toggle:checked ~ .inc-row .inc-more .inc-more-ico { transform: rotate(180deg); }
.tier-prompt { display: none; }
.tier-radio { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.pricing-card { display: none; }
.pc-more-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.pc-details { display: none; }
.pc-more-toggle:checked ~ .pc-details { display: block; }
.pc-more-toggle:checked ~ .pc-more-btn { animation: none; }
.pc-more-toggle:checked ~ .pc-more-btn::after { animation: none; }
.pc-more-toggle:checked ~ .pc-more-btn .pc-more-ico { transform: rotate(180deg); animation: none; }
.pc-more-toggle:checked ~ .pc-more-btn .pc-more-count { display: none; }
.pricing-tab { user-select: none; }
#tier-start:checked ~ .pricing-cards .pricing-card[data-tier="start"], #tier-none:checked  ~ .pricing-cards .pricing-card[data-tier="start"] { display: block; animation: pcFade .35s ease both; }
#tier-start:checked ~ .tabs-panel .pricing-tab[for="tier-start"], #tier-none:checked  ~ .tabs-panel .pricing-tab[for="tier-start"] { background: #2f3038; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,168,23,0.15); }
#tier-start:checked ~ .tabs-panel .pricing-tab[for="tier-start"] .pricing-tab-sub { color: var(--orange); }
#tier-start:checked ~ .tabs-panel .pricing-tab[for="tier-start"] .pricing-tab-hint { background: var(--orange); color: #000; animation: none; opacity: 1; }
#tier-custom:checked ~ .pricing-cards .pricing-card[data-tier="custom"] { display: block; animation: pcFade .35s ease both; }
#tier-custom:checked ~ .tabs-panel .pricing-tab[for="tier-custom"] { background: #2f3038; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,168,23,0.15); }
#tier-custom:checked ~ .tabs-panel .pricing-tab[for="tier-custom"] .pricing-tab-sub { color: var(--orange); }
#tier-custom:checked ~ .tabs-panel .pricing-tab[for="tier-custom"] .pricing-tab-hint { background: var(--orange); color: #000; animation: none; opacity: 1; }
#tier-corporate:checked ~ .pricing-cards .pricing-card[data-tier="corporate"] { display: block; animation: pcFade .35s ease both; }
#tier-corporate:checked ~ .tabs-panel .pricing-tab[for="tier-corporate"] { background: #2f3038; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,168,23,0.15); }
#tier-corporate:checked ~ .tabs-panel .pricing-tab[for="tier-corporate"] .pricing-tab-sub { color: var(--orange); }
#tier-corporate:checked ~ .tabs-panel .pricing-tab[for="tier-corporate"] .pricing-tab-hint { background: var(--orange); color: #000; animation: none; opacity: 1; }
#tier-commerce:checked ~ .pricing-cards .pricing-card[data-tier="commerce"] { display: block; animation: pcFade .35s ease both; }
#tier-commerce:checked ~ .tabs-panel .pricing-tab[for="tier-commerce"] { background: #2f3038; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,168,23,0.15); }
#tier-commerce:checked ~ .tabs-panel .pricing-tab[for="tier-commerce"] .pricing-tab-sub { color: var(--orange); }
#tier-commerce:checked ~ .tabs-panel .pricing-tab[for="tier-commerce"] .pricing-tab-hint { background: var(--orange); color: #000; animation: none; opacity: 1; }
#tier-premium:checked ~ .pricing-cards .pricing-card[data-tier="premium"] { display: block; animation: pcFade .35s ease both; }
#tier-premium:checked ~ .tabs-panel .pricing-tab[for="tier-premium"] { background: #2f3038; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,168,23,0.15); }
#tier-premium:checked ~ .tabs-panel .pricing-tab[for="tier-premium"] .pricing-tab-sub { color: var(--orange); }
#tier-premium:checked ~ .tabs-panel .pricing-tab[for="tier-premium"] .pricing-tab-hint { background: var(--orange); color: #000; animation: none; opacity: 1; }
@media (max-width: 760px) {
.hero { padding: 26px 16px 44px; }
.hero-eyebrow { font-size: 10px; padding: 6px 14px; margin-bottom: 16px; }
.hero-title { font-size: 34px; letter-spacing: -0.5px; margin-bottom: 14px; }
.hero-sub { font-size: 14px; margin-bottom: 24px; }
.laptop-stage { display: none; }
.laptop-wrap { grid-template-columns: 1fr; padding: 0; gap: 0; }
.phone-col { grid-column: 1; animation: none; }
.phone-mock { width: 240px; height: 480px; }
.adaptive-badge { display: none; }
.pulse-strip { padding: 24px 16px; }
.pulse-inner { grid-template-columns: 1fr 1fr; gap: 18px 10px; }
.pulse-item .val { font-size: 30px; }
.pulse-item .lbl { font-size: 10px; }
.pulse-item .live-dot { font-size: 9px; }
.pricing { padding: 44px 16px; }
.pricing-title { font-size: 30px; }
.pricing-sub { font-size: 14px; }
.pricing-header { margin-bottom: 28px; }
.pstep { gap: 10px; margin-bottom: 14px; }
.pstep-num { width: 28px; height: 28px; font-size: 12px; }
.pstep-txt { font-size: 12px; letter-spacing: 1px; }
.pstep-2 { margin-top: 32px; }
.cmp { min-width: 560px; font-size: 12px; }
.cmp th, .cmp td { padding: 10px 10px; }
.cmp thead th { font-size: 11px; letter-spacing: 1px; }
.cmp-th-sub { font-size: 8px; }
.cmp-row-lbl {
        position: sticky; left: 0; z-index: 2;
        font-size: 10px; padding: 10px 8px !important;
        box-shadow: 6px 0 10px -6px rgba(0,0,0,0.18);
    }
.cmp-price { font-size: 13px; }
.cmp-plat { font-size: 9px; }
.tabs-panel { padding: 10px; border-radius: 16px; }
.pricing-tabs { gap: 8px; }
.pricing-tab { min-width: 190px; padding: 30px 14px 14px; border-radius: 13px; }
.pricing-tab-title { font-size: 13px; margin-bottom: 5px; }
.pricing-tab-sub { font-size: 8px; margin: 4px 0 7px; }
.pricing-tab-price-val { font-size: 18px; }
.pricing-tab-price-term { font-size: 9px; }
.pricing-tab-hint { font-size: 8px; padding: 2px 7px; top: 8px; right: 8px; }
.tabs-connector { height: 18px; }
.pricing-card { padding: 22px 16px 24px; border-radius: 18px; }
.pc-name { font-size: 21px; }
.pc-sub { font-size: 10px; padding: 4px 10px; }
.pc-short { font-size: 14px; }
.pc-price { font-size: 26px; }
.pc-term { font-size: 10px; }
.pc-fit-lbl, .pc-key-lbl { font-size: 10px; margin-bottom: 10px; }
.pc-fit-item, .pc-key-item, .included-pill { font-size: 13px; padding: 11px 14px; }
.pc-more-btn { font-size: 11px; padding: 13px 14px; letter-spacing: 0.5px; }
.pc-more-count { font-size: 10px; padding: 3px 9px; }
.pc-summary { font-size: 14px; padding: 15px 16px; }
.pc-block-h { font-size: 14px; }
.pricing-cta-title { font-size: 18px; }
.pricing-cta-sub { font-size: 13px; }
.included-all { padding: 44px 16px; }
.included-all-title { font-size: 26px; }
.included-all-card { padding: 22px; border-radius: 16px; }
.included-all-icon { width: 46px; height: 46px; font-size: 20px; margin-bottom: 14px; }
.included-all-card h3 { font-size: 17px; }
.included-all-card p { font-size: 13px; }
.seo { padding: 44px 16px; }
.seo-head { margin-bottom: 26px; }
.seo-title { font-size: 24px; }
.seo-sub { font-size: 14px; }
.seo-eyebrow { font-size: 10px; padding: 6px 14px; margin-bottom: 12px; }
.seo-note { margin-top: 22px; padding: 15px 18px; font-size: 13px; }
#tier-none:checked ~ .pricing-cards .pricing-card, #tier-none:checked ~ .pricing-cards .pricing-card[data-tier] { display: none !important; }
#tier-none:checked ~ .pricing-cta-block { display: none !important; }
#tier-none:checked ~ .tabs-panel .pricing-tab[for="tier-start"] { background: #2f3038; border-color: transparent; box-shadow: none; }
#tier-none:checked ~ .tier-prompt { display: flex; }
.tier-prompt {
        flex-direction: column; align-items: center; justify-content: center; gap: 10px;
        border: 1.5px dashed rgba(252,168,23,0.5); border-radius: 16px;
        background: linear-gradient(180deg, rgba(252,168,23,0.10), rgba(252,168,23,0.03));
        padding: 22px 18px; margin-top: 4px;
        font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px;
        letter-spacing: 1.2px; text-transform: uppercase; color: #111;
        text-align: center; line-height: 1.45;
    }
.tier-prompt-ico {
        display: flex; align-items: center; justify-content: center;
        width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
        background: var(--orange); color: #000; font-size: 17px; font-weight: 700;
        box-shadow: 0 4px 16px rgba(252,168,23,0.5);
        animation: promptBounce 1.6s ease-in-out infinite;
    }
.tier-prompt-sub {
        display: inline-block; margin-top: 6px;
        font-size: 11px; font-weight: 400; letter-spacing: 1px;
        color: #b47a08; text-transform: uppercase;
    }
.safe { padding: 40px 16px; }
.safe-head { margin-bottom: 22px; }
.safe-title { font-size: 24px; }
.safe-sub { font-size: 14px; }
.safe-grid, .seo-grid { grid-template-columns: 1fr; gap: 10px; }
.safe-card, .seo-card {
        display: flex; flex-wrap: wrap; align-items: center;
        gap: 10px; padding: 12px 14px; border-radius: 14px;
    }
.safe-ico, .seo-step { width: 40px; height: 40px; margin: 0; flex-shrink: 0; border-radius: 11px; font-size: 17px; }
.safe-num { font-size: 22px; margin: 0; flex-shrink: 0; min-width: 46px; }
.safe-card h3, .seo-card h3 { flex: 1 1 0; min-width: 0; font-size: 13px; margin: 0; line-height: 1.25; }
.pstep:not(.pstep-2) { display: none; }
.cmp-wrap { display: none; }
.pstep-2 { margin-top: 0; }
.pstep-2 .pstep-num { display: none; }
.pstep-2 .pstep-txt { font-size: 13px; }
.phone-slide-offer { display: none !important; }
.phone-slide-pains { display: flex !important; opacity: 1 !important; }
.included-all-grid { gap: 10px; }
.included-all-card {
        display: flex; flex-wrap: wrap; align-items: center;
        gap: 10px; padding: 12px 14px; border-radius: 14px; flex-wrap: wrap;
    }
.included-all-icon { width: 40px; height: 40px; font-size: 17px; margin: 0; border-radius: 11px; flex-shrink: 0; }
.included-all-card h3 { flex: 1 1 0; min-width: 0; font-size: 13px; margin: 0; letter-spacing: 0.2px; line-height: 1.25; }
.inc-row { order: 3; width: auto; margin: 0; gap: 8px; flex-wrap: nowrap; }
.inc-more {
        margin: 0; padding: 0; width: 40px; height: 40px;
        justify-content: center; border-radius: 50%; flex-shrink: 0;
        background: var(--orange); border: none; color: #000;
        box-shadow: 0 4px 14px rgba(252,168,23,0.45);
        animation: incArrowPulse 1.8s ease-in-out infinite;
    }
.inc-more:hover { background: var(--orange-2); }
.inc-more-txt { display: none; }
.inc-more-ico { font-size: 19px; font-weight: 700; color: #000; animation: incArrowBlink 1.5s ease-in-out infinite; }
.inc-toggle:checked ~ .inc-row .inc-more { animation: none; background: #1F2026; color: var(--orange); box-shadow: none; border: 1.5px solid var(--orange); }
.inc-toggle:checked ~ .inc-row .inc-more .inc-more-ico { animation: none; opacity: 1; color: var(--orange); }
.inc-text { order: 4; width: 100%; margin: 4px 0 0; }
.inc-text { display: none; font-size: 13px; margin-top: 12px; }
.inc-toggle:checked ~ .inc-text { display: block; }
.inc-more {
        display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
        margin-top: 10px; padding: 8px 16px; border-radius: 100px;
        border: 1px dashed rgba(0,0,0,0.2); background: transparent;
        font-family: 'Oswald', sans-serif; font-size: 11px;
        letter-spacing: 1px; text-transform: uppercase; color: #666;
        user-select: none; transition: all .2s;
    }
.inc-more:hover { border-color: var(--orange); color: var(--orange); }
.inc-more-ico { color: var(--orange); font-size: 13px; }
.safe { padding: 44px 16px; }
.safe-head { margin-bottom: 26px; }
.safe-title { font-size: 26px; }
.safe-sub { font-size: 13px; }
.safe-grid { grid-template-columns: 1fr; gap: 10px; }
.safe-card { padding: 18px; border-radius: 15px; }
.safe-num { font-size: 32px; margin-bottom: 10px; }
.safe-ico { width: 42px; height: 42px; font-size: 18px; margin-bottom: 10px; }
.safe-card h3 { font-size: 15px; }
.safe-card p { font-size: 13px; }
.rev-card { padding: 20px; min-height: 0; }
.rev-text { font-size: 13px; }
.rev-actions { gap: 14px; margin-top: 24px; }
.rev-btn-main { width: 100%; text-align: center; padding: 15px 20px; }
.cta-divider { margin: 16px auto 18px; max-width: 200px; }
.cta-steps { margin-top: 24px; padding-bottom: 22px; margin-bottom: 22px; }
.cta-step { padding: 16px; border-radius: 14px; }
.cta-step-ico { width: 36px; height: 36px; font-size: 15px; }
.cta-step-name { font-size: 14px; }
.cta-step p { font-size: 13px; }
.pricing-tabs-hint { font-size: 10px; letter-spacing: 1px; margin-bottom: 16px; }
.inc-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.rev-dots { margin-top: 20px; }
}
@media (max-width: 400px) {
.hero-title { font-size: 29px; }
.phone-mock { width: 210px; height: 420px; }
.pulse-inner { grid-template-columns: 1fr; gap: 16px; }
.pricing-tab { min-width: 165px; }
.cmp { min-width: 500px; }
}
@keyframes giftPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0.5); }
    60%      { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 14px rgba(255,255,255,0); }
}
/* ============ АКЦИЯ ============ */
.promo {
    position: relative; overflow: hidden; padding: 46px 5%;
    background: linear-gradient(100deg, #fca817 0%, #f39c0c 55%, #e08c05 100%);
}
.promo-glow {
    position: absolute; inset: -60% -10% auto; height: 220%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.32), transparent 62%);
    pointer-events: none;
}
.promo-inner {
    position: relative; z-index: 2;
    max-width: 900px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 0;
}
.promo-badge {
    padding: 7px 18px; border-radius: 100px; margin-bottom: 16px;
    background: #1F2026; color: var(--orange);
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 11px;
    letter-spacing: 2.5px; text-transform: uppercase;
}
.promo-title {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(24px, 3.2vw, 40px); line-height: 1.15;
    text-transform: uppercase; color: #1a1206;
    letter-spacing: 0.3px; margin-bottom: 10px; max-width: 760px;
}
.promo-sub {
    font-size: 15px; color: rgba(26,18,6,0.75); line-height: 1.5;
    max-width: 560px; margin-bottom: 26px;
}
.promo-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; flex-wrap: wrap;
}
.promo-timer-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.promo-timer-lbl {
    font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: rgba(26,18,6,0.6);
}
.promo-timer { display: flex; align-items: center; gap: 6px; }
.promo-unit {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(31,32,38,0.92); border-radius: 11px;
    padding: 9px 13px; min-width: 60px;
}
.promo-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px; color: #fff; line-height: 1; }
.promo-lbl { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.promo-sep { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 20px; color: rgba(26,18,6,0.35); }
.promo-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: #1F2026; color: #fff; text-decoration: none;
    padding: 17px 34px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
    letter-spacing: 1.8px; text-transform: uppercase; white-space: nowrap;
    box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    transition: transform .25s, box-shadow .25s, background .25s;
    animation: promoPulse 2.6s ease-in-out infinite;
}
.promo-btn:hover { background: #000; transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,0.38); }
@keyframes promoPulse {
    0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,0.28), 0 0 0 0 rgba(255,255,255,0.45); }
    60%      { box-shadow: 0 10px 28px rgba(0,0,0,0.28), 0 0 0 16px rgba(255,255,255,0); }
}
@media (max-width: 760px) {
.promo { padding: 32px 16px; }
.promo-badge { font-size: 10px; padding: 6px 15px; margin-bottom: 13px; }
.promo-title { font-size: 22px; margin-bottom: 8px; }
.promo-sub { font-size: 13.5px; margin-bottom: 20px; }
.promo-bottom { flex-direction: column; gap: 18px; width: 100%; }
.promo-unit { padding: 7px 9px; min-width: 50px; }
.promo-num { font-size: 20px; }
.promo-btn { width: 100%; padding: 15px 20px; }
}
/* --- подсказка на табе тарифа: текст в разметке, а не в content --- */
.pricing-tab-hint { gap: 5px; }
.hint-ico { font-size: 9px; line-height: 1; }
.hint-ico::before { content: '\2193'; }
/* стрелка вниз */
.hint-open { display: none; }
.pricing-tab.active .hint-idle, #tier-start:checked    ~ .tabs-panel .pricing-tab[for="tier-start"]    .hint-idle, #tier-custom:checked   ~ .tabs-panel .pricing-tab[for="tier-custom"]   .hint-idle, #tier-corporate:checked ~ .tabs-panel .pricing-tab[for="tier-corporate"] .hint-idle, #tier-commerce:checked ~ .tabs-panel .pricing-tab[for="tier-commerce"] .hint-idle, #tier-premium:checked  ~ .tabs-panel .pricing-tab[for="tier-premium"]  .hint-idle { display: none; }
.pricing-tab.active .hint-open, #tier-start:checked    ~ .tabs-panel .pricing-tab[for="tier-start"]    .hint-open, #tier-custom:checked   ~ .tabs-panel .pricing-tab[for="tier-custom"]   .hint-open, #tier-corporate:checked ~ .tabs-panel .pricing-tab[for="tier-corporate"] .hint-open, #tier-commerce:checked ~ .tabs-panel .pricing-tab[for="tier-commerce"] .hint-open, #tier-premium:checked  ~ .tabs-panel .pricing-tab[for="tier-premium"]  .hint-open { display: inline; }
.pricing-tab.active .hint-ico::before, #tier-start:checked    ~ .tabs-panel .pricing-tab[for="tier-start"]    .hint-ico::before, #tier-custom:checked   ~ .tabs-panel .pricing-tab[for="tier-custom"]   .hint-ico::before, #tier-corporate:checked ~ .tabs-panel .pricing-tab[for="tier-corporate"] .hint-ico::before, #tier-commerce:checked ~ .tabs-panel .pricing-tab[for="tier-commerce"] .hint-ico::before, #tier-premium:checked  ~ .tabs-panel .pricing-tab[for="tier-premium"]  .hint-ico::before { content: '\2713'; }
/* ============ ПРОСМОТР PDF-КЕЙСА ============ */
.pdfv {
    position: fixed; inset: 0; z-index: 220;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    background: rgba(8,8,10,0.82); backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s;
}
/* рейтинг Google — справа от заголовка блока «Нам доверяют» */
.clients-head-row { display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap; text-align: left; }
@media (min-width: 761px) {
/* заполнение по столбикам: сверху вниз, поэтому display: block */
    .footer-col ul.footer-services { display: block; column-count: 2; column-gap: 26px; }
}
/* оформление технической страницы-образца */
.tpl-ph { padding: 46px 20px; }
.tpl-ph-in { max-width: 1100px; margin: 0 auto; padding: 34px 26px;
    border: 2px dashed rgba(251,176,59,0.38); border-radius: 20px;
    background: rgba(251,176,59,0.04); text-align: center; }
.tpl-ph-tag { display: inline-block; margin-bottom: 12px; padding: 5px 14px;
    border: 1px solid rgba(251,176,59,0.5); border-radius: 999px;
    font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.6px;
    text-transform: uppercase; color: var(--orange); }
.tpl-ph-in h3 { margin: 0 0 8px; font-family: 'Oswald', sans-serif;
    font-size: 22px; letter-spacing: .5px; text-transform: uppercase; color: #fff; }
.tpl-ph-in p { margin: 0; font-size: 14px; color: var(--text-2); }
.tpl-caps { padding: 34px 20px 4px; }
.tpl-caps-in { max-width: 1100px; margin: 0 auto; }
@media (max-width: 760px) {
.tpl-ph { padding: 30px 16px; }
.tpl-ph-in { padding: 24px 18px; border-radius: 16px; }
.tpl-ph-in h3 { font-size: 18px; }
}
/* лента команды и капсула — перенесено с главной */
.trust-bar {
    display: inline-flex; align-items: stretch; gap: 4px;
    margin-bottom: 36px; padding: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line-2);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
    animation: heroTitleIn 0.9s .25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* --- команда: одна бегущая лента --- */
.tm { padding: 92px 0 96px; background: var(--bg-2); overflow: hidden; }
.trust-dots { display: none; }
@keyframes heroTitleIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes trustShine {
    0%, 70%   { transform: translateX(-120%); }
    88%, 100% { transform: translateX(120%); }
}
@keyframes tmRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px) {
.trust-dots { display: flex; justify-content: center; gap: 5px; margin: -10px 0 22px; }
.trust-dots i { width: 5px; height: 5px; border-radius: 50%;
        background: rgba(255,255,255,0.18); transition: background .3s, width .3s; }
.trust-dots i.on { width: 15px; border-radius: 100px; background: var(--orange); }
}
/* ноутбук с карточкой услуги — перенесено с главной */
.laptop-wrap { position: relative; max-width: 1300px; margin: 0 auto; padding: 20px 0; display: grid; grid-template-columns: 1fr 260px; gap: 40px; align-items: center; justify-content: center; }
.laptop-stage { position: relative; perspective: 2000px; }
.laptop-glow { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); width: 90%; height: 300px; background: radial-gradient(ellipse at center, rgba(252,168,23,0.22) 0%, transparent 70%); filter: blur(40px); z-index: 0; }
.laptop { position: relative; z-index: 2; width: 100%; aspect-ratio: 16/10; animation: laptopFloat 6s ease-in-out infinite; }
.laptop-hint { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); z-index: 5; background: rgba(31,32,38,0.92); border: 1px solid var(--orange); color: var(--orange); font-family: 'Oswald'; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; opacity: 0; transition: opacity .25s; pointer-events: none; white-space: nowrap; }
.laptop-stage:hover .laptop-hint { opacity: 1; }
.laptop-screen { position: relative; width: 100%; aspect-ratio: 16/10; background: #0a0a0a; border-radius: 20px 20px 8px 8px; padding: 22px 22px 44px; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 2px #1a1a1a; }
.laptop-screen::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #2a2a2a; }
.laptop-base { position: relative; z-index: 3; width: 108%; height: 20px; margin: -8px auto 0; background: linear-gradient(180deg, #2a2a2a, #0a0a0a); border-radius: 0 0 20px 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.browser { width: 100%; height: 100%; background: #fff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.browser-bar { background: #f0f0f0; padding: 10px 14px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e0e0e0; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; }
.browser-dots span:nth-child(1) {background:#ff5f56;}
.browser-dots span:nth-child(2) {background:#ffbd2e;}
.browser-dots span:nth-child(3) {background:#27c93f;}
.browser-url { flex: 1; background: #fff; border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #333; font-family: monospace; display: flex; align-items: center; gap: 8px; }
.browser-url-lock { color: #22c55e; font-size: 11px; }
.browser-body { flex: 1; position: relative; overflow: hidden; background: var(--bg); }
.phone-col { display: flex; justify-content: center; animation: phoneFloat 6s ease-in-out infinite; animation-delay: -2s; }
.phone-mock { width: 230px; height: 460px; background: #0a0a0a; border-radius: 32px; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(252,168,23,0.15); position: relative; cursor: pointer; }
.phone-mock::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 70px; height: 18px; border-radius: 100px; background: #0a0a0a; z-index: 5; }
.adaptive-badge { position: absolute; right: 240px; top: 50%; transform: translateY(-50%); font-family: 'Oswald'; font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; background: rgba(31,32,38,0.9); border: 1px solid var(--orange); border-radius: 100px; animation: adaptivePulse 3s ease-in-out infinite; z-index: 4; }
/* --- карточки каналов вокруг ноутбука --- */
.chan-field { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.chan {
    position: absolute; display: flex; align-items: center; gap: 12px;
    padding: 13px 18px 13px 14px; border-radius: 16px; min-width: 208px;
    background: rgba(20,21,26,0.94); border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 18px 46px rgba(0,0,0,0.55); backdrop-filter: blur(10px);
    opacity: 0; transform: translateY(16px) scale(.94);
    animation: chanIn .7s cubic-bezier(0.16,1,0.3,1) forwards,
               chanFloat 7s ease-in-out infinite;
}
.chan::before { content: ''; position: absolute; inset: -1px; border-radius: 16px; padding: 1px;
    background: linear-gradient(140deg, var(--cc), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: .55; pointer-events: none; }
.chan-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; display: flex;
    align-items: center; justify-content: center; position: relative; }
.chan-ico svg { width: 19px; height: 19px; }
.chan-ico::after { content: ''; position: absolute; inset: -6px; border-radius: 16px;
    background: radial-gradient(circle, var(--cc), transparent 70%); opacity: .28; }
.chan-name { display: flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif;
    font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-2); }
.chan-live { width: 5px; height: 5px; border-radius: 50%; background: #43d17a;
    box-shadow: 0 0 0 0 rgba(67,209,122,.6); animation: chanPulse 2.6s ease-out infinite; }
.chan-val { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 19px; line-height: 1.1;
    color: #fff; margin-top: 3px; }
.chan-val small { font-size: 12px; font-weight: 400; color: var(--text-2); margin-left: 5px; }
.chan-1 { top: 4%;  left: -3%;  animation-delay: .25s, 1s; }
.chan-2 { top: 28%; right: -4%; animation-delay: .55s, 2.4s; }
.chan-3 { bottom: 24%; left: -5%; animation-delay: .85s, 3.8s; }
.chan-4 { bottom: 3%; right: -1%; animation-delay: 1.15s, 5.2s; }
/* --- телефон: те же слайды --- */
.hp2 { position: relative; height: 100%; padding: 14px 13px 16px; display: flex; flex-direction: column; }
.hp2-stage { position: relative; flex: 1; margin-top: 8px; }
.hp2-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; gap: 10px; opacity: 0; transition: opacity .5s ease; }
.hp2-slide.is-on { opacity: 1; }
.hp2-badge { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center;
    justify-content: center; }
.hp2-badge svg { width: 30px; height: 30px; }
.hp2-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.12;
    text-transform: uppercase; color: #fff; padding: 0 6px; }
.hp2-metric { font-size: 10px; color: var(--orange); font-family: 'Oswald', sans-serif; }
.hp2-foot { margin-top: auto; text-align: center; padding: 9px; border-radius: 9px;
    background: var(--orange); color: #000; font-family: 'Oswald', sans-serif; font-size: 9.5px;
    letter-spacing: .8px; text-transform: uppercase; }
@keyframes laptopFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
@keyframes adaptivePulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; box-shadow: 0 0 20px rgba(252,168,23,0.4); } }
@keyframes chanIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes chanPulse { 70% { box-shadow: 0 0 0 6px rgba(67,209,122,0); } 100% { box-shadow: 0 0 0 0 rgba(67,209,122,0); } }
@media (max-width: 1000px) {
.laptop-wrap { grid-template-columns: 1fr; gap: 30px; padding: 20px 0; justify-items: center; }
.laptop-stage { grid-column: 1; width: 100%; }
.phone-col { grid-column: 1; }
.adaptive-badge { display: none; }
}
@media (max-width: 900px) {
.laptop-wrap { padding: 30px 0; }
.laptop-float-card { display: none; }
.laptop-stage, .adaptive-badge { display: none; }
.laptop-wrap { grid-template-columns: 1fr; justify-items: center; padding: 18px 0 8px; }
.phone-col { grid-column: 1; }
.phone-mock { width: 268px; height: 536px; }
.chan-field { display: none; }
}
@media (max-width: 760px) {
.laptop-stage { display: none; }
.laptop-wrap { grid-template-columns: 1fr; padding: 0; gap: 0; }
.phone-col { grid-column: 1; animation: none; }
.phone-mock { width: 240px; height: 480px; }
.adaptive-badge { display: none; }
}
@media (max-width: 400px) {
.phone-mock { width: 210px; height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
.chan { animation: none; opacity: 1; transform: none; }
.chan-live { animation: none; }
}
@media (min-width: 901px) {
.laptop-wrap { grid-template-columns: 1fr; max-width: 1060px; }
.phone-col, .adaptive-badge { display: none; }
}
/* экран ноутбука: полный набор правил */
.laptop-wrap { position: relative; max-width: 1300px; margin: 0 auto; padding: 20px 0; display: grid; grid-template-columns: 1fr 260px; gap: 40px; align-items: center; justify-content: center; }
.laptop-stage { position: relative; perspective: 2000px; }
.laptop-glow { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); width: 90%; height: 300px; background: radial-gradient(ellipse at center, rgba(252,168,23,0.22) 0%, transparent 70%); filter: blur(40px); z-index: 0; }
.laptop { position: relative; z-index: 2; width: 100%; aspect-ratio: 16/10; animation: laptopFloat 6s ease-in-out infinite; }
.laptop-hint { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); z-index: 5; background: rgba(31,32,38,0.92); border: 1px solid var(--orange); color: var(--orange); font-family: 'Oswald'; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; opacity: 0; transition: opacity .25s; pointer-events: none; white-space: nowrap; }
.laptop-stage:hover .laptop-hint { opacity: 1; }
.laptop-screen { position: relative; width: 100%; aspect-ratio: 16/10; background: #0a0a0a; border-radius: 20px 20px 8px 8px; padding: 22px 22px 44px; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 2px #1a1a1a; }
.laptop-screen::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #2a2a2a; }
.laptop-base { position: relative; z-index: 3; width: 108%; height: 20px; margin: -8px auto 0; background: linear-gradient(180deg, #2a2a2a, #0a0a0a); border-radius: 0 0 20px 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.browser { width: 100%; height: 100%; background: #fff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.browser-bar { background: #f0f0f0; padding: 10px 14px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e0e0e0; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 12px; height: 12px; border-radius: 50%; }
.browser-dots span:nth-child(1) {background:#ff5f56;}
.browser-dots span:nth-child(2) {background:#ffbd2e;}
.browser-dots span:nth-child(3) {background:#27c93f;}
.browser-url { flex: 1; background: #fff; border-radius: 6px; padding: 6px 14px; font-size: 12px; color: #333; font-family: monospace; display: flex; align-items: center; gap: 8px; }
.browser-url-lock { color: #22c55e; font-size: 11px; }
.browser-body { flex: 1; position: relative; overflow: hidden; background: var(--bg); }
.phone-col { display: flex; justify-content: center; animation: phoneFloat 6s ease-in-out infinite; animation-delay: -2s; }
.phone-mock { width: 230px; height: 460px; background: #0a0a0a; border-radius: 32px; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(252,168,23,0.15); position: relative; cursor: pointer; }
.phone-mock::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 70px; height: 18px; border-radius: 100px; background: #0a0a0a; z-index: 5; }
.phone-screen { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; position: relative; background: linear-gradient(160deg, #1F2026 0%, #26272e 100%); }
.phone-status { padding: 14px 20px 8px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #fff; position: relative; z-index: 6; }
.adaptive-badge { position: absolute; right: 240px; top: 50%; transform: translateY(-50%); font-family: 'Oswald'; font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; background: rgba(31,32,38,0.9); border: 1px solid var(--orange); border-radius: 100px; animation: adaptivePulse 3s ease-in-out infinite; z-index: 4; }
.rot-line.is-on { opacity: 1; transform: translateY(0); position: relative; }
/* --- карточки каналов вокруг ноутбука --- */
.chan-field { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.chan {
    position: absolute; display: flex; align-items: center; gap: 12px;
    padding: 13px 18px 13px 14px; border-radius: 16px; min-width: 208px;
    background: rgba(20,21,26,0.94); border: 1px solid rgba(255,255,255,0.13);
    box-shadow: 0 18px 46px rgba(0,0,0,0.55); backdrop-filter: blur(10px);
    opacity: 0; transform: translateY(16px) scale(.94);
    animation: chanIn .7s cubic-bezier(0.16,1,0.3,1) forwards,
               chanFloat 7s ease-in-out infinite;
}
.chan::before { content: ''; position: absolute; inset: -1px; border-radius: 16px; padding: 1px;
    background: linear-gradient(140deg, var(--cc), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: .55; pointer-events: none; }
.chan-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px; display: flex;
    align-items: center; justify-content: center; position: relative; }
.chan-ico svg { width: 19px; height: 19px; }
.chan-ico::after { content: ''; position: absolute; inset: -6px; border-radius: 16px;
    background: radial-gradient(circle, var(--cc), transparent 70%); opacity: .28; }
.chan-name { display: flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif;
    font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-2); }
.chan-live { width: 5px; height: 5px; border-radius: 50%; background: #43d17a;
    box-shadow: 0 0 0 0 rgba(67,209,122,.6); animation: chanPulse 2.6s ease-out infinite; }
.chan-val { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 19px; line-height: 1.1;
    color: #fff; margin-top: 3px; }
.chan-val small { font-size: 12px; font-weight: 400; color: var(--text-2); margin-left: 5px; }
.chan-1 { top: 4%;  left: -3%;  animation-delay: .25s, 1s; }
.chan-2 { top: 28%; right: -4%; animation-delay: .55s, 2.4s; }
.chan-3 { bottom: 24%; left: -5%; animation-delay: .85s, 3.8s; }
.chan-4 { bottom: 3%; right: -1%; animation-delay: 1.15s, 5.2s; }
.calc-chip.is-on { background: var(--orange); border-color: var(--orange); color: #000; font-weight: 600; }
/* --- кнопки внутри экрана ноутбука --- */
.hs-cta { display: flex; align-items: center; gap: 12px; margin-top: 16px;
    padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.hs-b1, .hs-b2 { display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    padding: 13px 26px; border-radius: 100px; font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none;
    border: 1px solid transparent; transition: transform .22s, background .22s, border-color .22s; }
.hs-b1 { background: var(--orange); color: #000; box-shadow: 0 10px 30px rgba(252,168,23,0.26); }
.hs-b1:hover { background: var(--orange-2); transform: translateY(-2px); }
.hs-b2 { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.18); }
.hs-b2:hover { border-color: rgba(252,168,23,0.55); color: var(--orange); transform: translateY(-2px); }
/* --- экран ноутбука: слайды услуг --- */
.hs { position: relative; height: 100%; padding: 26px 40px 22px; display: flex; flex-direction: column; }
.hs-top { display: flex; align-items: center; justify-content: space-between; }
.hs-eyebrow { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2.4px;
    text-transform: uppercase; color: var(--orange); }
.hs-counter { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--text-2); }
.hs-counter b { color: #fff; }
.hs-stage { position: relative; flex: 1; }
.hs-slide { position: absolute; inset: 0; display: flex; align-items: center; gap: 34px;
    opacity: 0; transform: translateY(14px); pointer-events: none;
    transition: opacity .55s ease, transform .55s cubic-bezier(0.16,1,0.3,1); }
.hs-slide.is-on { opacity: 1; transform: translateY(0); }
.hs-badge { flex-shrink: 0; width: 124px; height: 124px; border-radius: 30px; display: flex;
    align-items: center; justify-content: center; position: relative; }
.hs-badge::after { content: ''; position: absolute; inset: -14px; border-radius: 38px;
    background: radial-gradient(circle, var(--bc) 0%, transparent 68%); opacity: .3; }
.hs-badge svg { width: 60px; height: 60px; position: relative; z-index: 1; }
.hs-body { display: block; }
.hs-name { display: block; font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05;
    text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.hs-text { display: block; font-size: 14.5px; line-height: 1.65; color: var(--text-2); max-width: 460px; }
.hs-metric { display: inline-flex; align-items: baseline; gap: 8px; margin: 20px 10px 0 0;
    padding: 9px 18px; border-radius: 100px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12); }
.hs-metric b { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--orange); }
.hs-metric span { font-size: 12.5px; color: var(--text-2); }
.hs-dots { display: flex; gap: 5px; margin-top: 18px; }
.hs-dot { width: 16px; height: 3px; border-radius: 100px; background: rgba(255,255,255,0.14);
    transition: background .35s, width .35s; }
.hs-dot.is-on { width: 30px; background: var(--orange); }
/* --- телефон: те же слайды --- */
.hp2 { position: relative; height: 100%; padding: 14px 13px 16px; display: flex; flex-direction: column; }
.hp2-stage { position: relative; flex: 1; margin-top: 8px; }
.hp2-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; gap: 10px; opacity: 0; transition: opacity .5s ease; }
.hp2-slide.is-on { opacity: 1; }
.hp2-badge { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center;
    justify-content: center; }
.hp2-badge svg { width: 30px; height: 30px; }
.hp2-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.12;
    text-transform: uppercase; color: #fff; padding: 0 6px; }
.hp2-metric { font-size: 10px; color: var(--orange); font-family: 'Oswald', sans-serif; }
.hp2-foot { margin-top: auto; text-align: center; padding: 9px; border-radius: 9px;
    background: var(--orange); color: #000; font-family: 'Oswald', sans-serif; font-size: 9.5px;
    letter-spacing: .8px; text-transform: uppercase; }
.calc-chip.is-on { background: var(--cc, var(--orange)); border-color: var(--cc, var(--orange));
    color: #0d0e12; font-weight: 600; box-shadow: 0 8px 24px -6px var(--cc, var(--orange)); }
@keyframes laptopFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
@keyframes adaptivePulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; box-shadow: 0 0 20px rgba(252,168,23,0.4); } }
@keyframes chanIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes chanPulse { 70% { box-shadow: 0 0 0 6px rgba(67,209,122,0); } 100% { box-shadow: 0 0 0 0 rgba(67,209,122,0); } }
@media (max-width: 760px) {
.laptop-stage { display: none; }
.laptop-wrap { grid-template-columns: 1fr; padding: 0; gap: 0; }
.phone-col { grid-column: 1; animation: none; }
.phone-mock { width: 240px; height: 480px; }
.adaptive-badge { display: none; }
}
@media (max-width: 1000px) {
.laptop-wrap { grid-template-columns: 1fr; gap: 30px; padding: 20px 0; justify-items: center; }
.laptop-stage { grid-column: 1; width: 100%; }
.phone-col { grid-column: 1; }
.adaptive-badge { display: none; }
}
@media (max-width: 900px) {
.laptop-wrap { padding: 30px 0; }
.laptop-stage, .adaptive-badge { display: none; }
.laptop-wrap { grid-template-columns: 1fr; justify-items: center; padding: 18px 0 8px; }
.phone-col { grid-column: 1; }
.phone-mock { width: 268px; height: 536px; }
.hs-cta { flex-direction: column; gap: 8px; }
.hs-b1, .hs-b2 { width: 100%; justify-content: center; font-size: 11px; padding: 11px 16px; }
.chan-field { display: none; }
}
@media (max-width: 400px) {
.phone-mock { width: 210px; height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
.chan { animation: none; opacity: 1; transform: none; }
.chan-live { animation: none; }
.hs-slide { transition: none; }
}
@media (min-width: 901px) {
.laptop-wrap { grid-template-columns: 1fr; max-width: 1060px; }
.phone-col, .adaptive-badge { display: none; }
}
/* дополнительные элементы блока «Разберём задачу» */
/* --- три шага в финальном блоке на телефоне: одна кнопка на все --- */
.cta-tgl { display: none; }
.cta-hit { display: none; }
.cta-hit { display: inline-flex; align-items: center; gap: 9px; margin: 2px auto 26px;
        padding: 9px 18px 9px 20px; border-radius: 100px; cursor: pointer;
        background: rgba(252,168,23,0.12); border: 1px solid rgba(252,168,23,0.34);
        font-family: 'Oswald', sans-serif; font-size: 11.5px; letter-spacing: 1.4px;
        text-transform: uppercase; color: var(--orange);
        animation: abHint 3.4s ease-in-out infinite; }
.cta-hit i { width: 7px; height: 7px; margin-top: -3px;
        border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
        transform: rotate(45deg); transition: transform .3s; }
.cta-tgl:checked ~ .cta-hit { animation: none; }
.cta-tgl:checked ~ .cta-hit i { transform: rotate(-135deg); margin-top: 2px; }
.cta-tgl:checked ~ .cta-steps { display: grid; margin-bottom: 26px; }
.cta-tgl:checked ~ .cta-hit { margin-bottom: 0; }
/* ===== Telegram Ads ===== */


/* ============================================================
   Telegram Ads — разделы страницы.
   Общее (шапка, ниши, акция, форма)
   берётся из sw-base.css и sw-blocks.css, здесь только своё.
   ============================================================ */

.tga-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.tga-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.tga-title {
    margin: 14px 0 12px; font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 40px; line-height: 1.1; letter-spacing: .5px; text-transform: uppercase;
    color: #fff;
}
.tga-title span { color: var(--orange); }
.tga-sub { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-2); }
/* ===== дашборд в первом экране ===== */
.tga-dash {
    max-width: 560px; margin: 26px auto 0; padding: 18px;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border: 1px solid var(--line-2); border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.tga-dash-top {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    font-family: 'Oswald', sans-serif; font-size: 10.5px; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.tga-live i {
    width: 7px; height: 7px; border-radius: 50%; background: var(--green);
    animation: tgaPulse 1.8s ease-in-out infinite;
}
@keyframes tgaPulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.tga-dash-name { margin-left: auto; }
.tga-chart {
    display: flex; align-items: flex-end; gap: 8px; height: 96px;
    margin: 16px 0 14px; padding: 0 2px;
}
.tga-bar {
    position: relative; flex: 1; height: var(--h); border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(252,168,23,0.55), rgba(252,168,23,0.12));
    animation: tgaGrow .9s cubic-bezier(0.16,1,0.3,1) both;
}
.tga-bar.is-hot { background: linear-gradient(180deg, var(--orange), rgba(252,168,23,0.25)); }
.tga-bar span {
    position: absolute; left: 0; right: 0; bottom: -18px; text-align: center;
    font-size: 9.5px; color: var(--text-3);
}
@keyframes tgaGrow { from { height: 0; } }
/* ===== что делаем ===== */
.tga-what, .tga-steps, .tga-why, .tga-cases, .tga-plans { padding: 78px 0; }
.tga-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tga-card {
    padding: 26px 22px; background: var(--bg-2);
    border: 1px solid var(--line); border-radius: 18px;
    transition: transform .25s, border-color .25s;
}
.tga-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tga-card-hot { border-color: rgba(252,168,23,0.4); background: linear-gradient(180deg, rgba(252,168,23,0.07), var(--bg-2)); }
.tga-num {
    display: inline-block; margin-bottom: 12px;
    font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1.6px;
    color: var(--orange);
}
.tga-card h3, .tga-step h3, .tga-why-card h3 {
    margin: 0 0 10px; font-family: 'Oswald', sans-serif; font-size: 18px;
    line-height: 1.25; color: #fff;
}
.tga-card p, .tga-step p, .tga-why-card p {
    margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-2);
}
/* ===== процесс ===== */
.tga-steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tga-step {
    position: relative; padding: 24px 20px; background: var(--bg-2);
    border: 1px solid var(--line); border-radius: 16px;
}
.tga-step-hot { border-color: rgba(252,168,23,0.4); }
.tga-step-n {
    display: block; margin-bottom: 12px;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 30px;
    line-height: 1; color: rgba(252,168,23,0.35);
}
.tga-why-card {
    padding: 26px 22px; background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border: 1px solid var(--line); border-radius: 18px;
}
.tga-case {
    display: flex; flex-direction: column; padding: 22px 20px;
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px;
    transition: transform .25s, border-color .25s;
}
.tga-case:hover { transform: translateY(-4px); border-color: rgba(252,168,23,0.4); }
.tga-case-niche {
    font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.3px;
    text-transform: uppercase; color: var(--orange);
}
.tga-case-name {
    margin: 8px 0 12px; font-family: 'Oswald', sans-serif; font-size: 18px;
    line-height: 1.2; color: #fff;
}
.tga-case-txt { margin: 0 0 18px; font-size: 13px; line-height: 1.55; color: var(--text-2); }
.tga-case-nums {
    display: flex; gap: 14px; margin-top: auto; padding-top: 16px;
    border-top: 1px solid var(--line);
}
/* ===== тарифы ===== */
.tga-plans-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.tga-plan {
    position: relative; display: flex; flex-direction: column;
    padding: 30px 26px; background: var(--bg-2);
    border: 1px solid var(--line); border-radius: 20px;
}
.tga-plan-hot {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(252,168,23,0.08), var(--bg-2));
    box-shadow: 0 18px 50px rgba(252,168,23,0.12);
}
.tga-plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 5px 14px; background: var(--orange); border-radius: 999px;
    font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.2px;
    text-transform: uppercase; color: #15161a; white-space: nowrap;
}
.tga-plan-note { font-size: 12px; color: var(--text-3); }
.tga-plan-name {
    margin: 6px 0 18px; font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 28px; letter-spacing: .5px; text-transform: uppercase; color: #fff;
}
.tga-plan-list { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tga-plan-list li {
    position: relative; padding-left: 24px; font-size: 13.5px; line-height: 1.5; color: var(--text-2);
}
.tga-plan-list li::before {
    content: ''; position: absolute; left: 4px; top: 7px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.tga-plan-foot { margin-top: auto; }
.tga-plan-price {
    display: block; font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 32px; line-height: 1; color: #fff;
}
.tga-plan-price small { font-size: 15px; color: var(--text-2); }
.tga-plan-once { display: block; margin: 4px 0 16px; font-size: 11.5px; color: var(--text-3); }
.tga-plan-btn {
    width: 100%; padding: 13px 20px; border: 0; border-radius: 999px; cursor: pointer;
    background: var(--bg-3); color: #fff;
    font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1.3px;
    text-transform: uppercase; transition: background .2s, color .2s;
}
.tga-plan-btn:hover { background: var(--orange); color: #15161a; }
.tga-plan-hot .tga-plan-btn { background: var(--orange); color: #15161a; }
.tga-plan-hot .tga-plan-btn:hover { background: var(--orange-2); }
@media (max-width: 1100px) {
.tga-steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
.tga-title { font-size: 30px; }
}
@media (max-width: 760px) {
.tga-what, .tga-steps, .tga-why, .tga-cases, .tga-plans { padding: 52px 0; }
.tga-head { margin-bottom: 30px; }
.tga-title { font-size: 26px; }
.tga-sub { font-size: 14px; }
.tga-dash { padding: 14px; border-radius: 16px; }
.tga-plan { padding: 24px 20px; }
}
/* ===== живой дашборд на экране ноутбука ===== */
.tga-dash { position: relative; }
.tga-metric { display: flex; align-items: center; gap: 10px; }
.tga-metric b {
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 40px;
    line-height: 1; letter-spacing: .5px; color: #fff;
    transition: transform .2s, color .2s;
}
.tga-metric b.bump { transform: translateY(-3px); color: var(--orange); }
.tga-metric i {
    padding: 4px 10px; border-radius: 999px; font-style: normal;
    background: rgba(34,197,94,0.15); color: var(--green);
    font-size: 11.5px; font-weight: 600;
}
.tga-metric-lbl { display: block; margin-top: 6px; font-size: 11px; color: var(--text-3); }
.tga-chart {
    display: flex; align-items: flex-end; gap: 7px; height: 74px; margin: 16px 0 12px;
    padding: 10px; background: rgba(255,255,255,0.03); border-radius: 12px;
}
.tga-bar {
    flex: 1; height: var(--h); border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, rgba(252,168,23,0.5), rgba(252,168,23,0.12));
    animation: tgaGrow 1s cubic-bezier(0.16,1,0.3,1) both;
}
.tga-bar.is-hot { background: linear-gradient(180deg, var(--orange), rgba(252,168,23,0.3)); }
.tga-bar:nth-child(2) { animation-delay: .06s; }
.tga-bar:nth-child(3) { animation-delay: .12s; }
.tga-bar:nth-child(4) { animation-delay: .18s; }
.tga-bar:nth-child(5) { animation-delay: .24s; }
.tga-bar:nth-child(6) { animation-delay: .30s; }
.tga-bar:nth-child(7) { animation-delay: .36s; }
@keyframes tgaGrow { from { height: 0; opacity: .4; } }
.tga-spark {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    background: rgba(255,255,255,0.03); border-radius: 12px;
}
.tga-spark svg { flex: 1; height: 30px; }
.tga-spark polyline {
    fill: none; stroke: var(--orange); stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 260; stroke-dashoffset: 260;
    animation: tgaDraw 1.6s .3s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes tgaDraw { to { stroke-dashoffset: 0; } }
.tga-spark-lbl {
    font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-spark-val {
    font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--orange);
}
.tga-foot {
    display: flex; gap: 18px; margin-top: 12px;
    font-size: 10.5px; color: var(--text-3);
}
.tga-foot b { color: var(--text-2); font-weight: 600; }
.tga-toast {
    position: absolute; left: 10px; bottom: -16px;
    display: flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 999px;
    background: var(--bg-3); border: 1px solid var(--line-2);
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
    font-size: 11px; color: var(--text-2); white-space: nowrap;
    transition: opacity .35s, transform .35s;
}
.tga-toast b { color: #fff; font-weight: 600; }
.tga-toast.is-out { opacity: 0; transform: translateY(6px); }
.tga-toast-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--green);
    animation: tgaPulse 1.8s ease-in-out infinite;
}
.tga-chip {
    position: absolute; padding: 7px 13px; border-radius: 999px;
    background: var(--bg-3); border: 1px solid var(--line-2);
    box-shadow: 0 10px 26px rgba(0,0,0,.4);
    font-family: 'Oswald', sans-serif; font-size: 10.5px; letter-spacing: .8px;
    color: var(--orange); white-space: nowrap;
    animation: tgaFloat 5s ease-in-out infinite;
}
.tga-chip-1 { top: -14px; left: -18px; }
.tga-chip-2 { right: -22px; bottom: 26px; animation-delay: 1.4s; }
@keyframes tgaFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 760px) {
.tga-metric b { font-size: 30px; }
.tga-chart { height: 56px; }
.tga-chip-1 { left: -6px; }
.tga-chip-2 { right: -6px; }
.tga-toast { font-size: 10px; padding: 7px 11px; }
}
/* ===== раздел аналитики ===== */
.tga-analytics { padding: 78px 0; }
.tga-an-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 20px; align-items: start; }
.tga-an-card {
    padding: 24px; background: var(--bg-2);
    border: 1px solid var(--line); border-radius: 20px;
}
.tga-an-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.tga-an-top h3 {
    margin: 0; font-family: 'Oswald', sans-serif; font-size: 17px; color: #fff;
}
.tga-an-note { display: block; margin-top: 4px; font-size: 11px; color: var(--text-3); }
.tga-an-right { margin-left: auto; text-transform: uppercase; letter-spacing: 1px; font-size: 9.5px; }
.tga-tabs { display: flex; gap: 4px; margin-left: auto; padding: 3px; background: rgba(255,255,255,0.05); border-radius: 999px; }
.tga-tabs button {
    padding: 6px 13px; border: 0; border-radius: 999px; cursor: pointer;
    background: transparent; color: var(--text-3);
    font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .6px;
    transition: background .2s, color .2s;
}
.tga-tabs button.on { background: var(--bg-3); color: #fff; }
.tga-graph { position: relative; }
.tga-graph svg { display: block; width: 100%; height: 210px; }
.tga-graph polyline {
    fill: none; stroke: var(--orange); stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 1400; stroke-dashoffset: 1400;
    animation: tgaDraw2 1.5s .2s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes tgaDraw2 { to { stroke-dashoffset: 0; } }
.tga-graph circle { fill: var(--bg); stroke: var(--orange); stroke-width: 3; }
.tga-graph path { opacity: 0; animation: tgaFade 1s 1s forwards; }
@keyframes tgaFade { to { opacity: 1; } }
.tga-tip {
    position: absolute; padding: 8px 12px; border-radius: 10px;
    background: var(--bg-3); border: 1px solid var(--line-2);
    box-shadow: 0 10px 26px rgba(0,0,0,.45);
    font-size: 11px; color: var(--text-2); pointer-events: none; white-space: nowrap;
    transition: left .3s, top .3s;
}
.tga-tip b { display: block; color: var(--orange); font-size: 12.5px; }
.tga-days { display: flex; justify-content: space-between; margin-top: 6px; }
.tga-days span { font-size: 10.5px; color: var(--text-3); }
.tga-an-kpi { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.tga-an-kpi div {
    display: flex; flex-direction: column; gap: 3px; padding: 13px 12px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px;
}
.tga-an-kpi span {
    font-family: 'Oswald', sans-serif; font-size: 9.5px; letter-spacing: 1.1px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-an-kpi b { font-family: 'Oswald', sans-serif; font-size: 22px; color: #fff; }
.tga-an-kpi b small { font-size: 12px; color: var(--text-2); }
.tga-an-kpi i { font-style: normal; font-size: 10.5px; font-weight: 600; }
.tga-an-kpi i.up { color: var(--green); }
.tga-an-kpi i.down { color: var(--green); }
.tga-ch-list { display: flex; flex-direction: column; gap: 14px; }
.tga-ch { display: grid; grid-template-columns: 26px 1fr auto; gap: 8px 10px; align-items: center; }
.tga-ch-ico {
    width: 26px; height: 26px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(252,168,23,0.14); color: var(--orange);
    font-family: 'Oswald', sans-serif; font-size: 12px;
}
.tga-ch-name { font-size: 13px; color: var(--text-2); }
.tga-ch-num { font-size: 11.5px; color: var(--text-3); }
.tga-ch-bar {
    grid-column: 2 / -1; height: 5px; border-radius: 999px;
    background: rgba(255,255,255,0.06); overflow: hidden;
}
.tga-ch-bar i {
    display: block; height: 100%; width: var(--w); border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    animation: tgaWidth 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes tgaWidth { from { width: 0; } }
.tga-act { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.tga-act-ttl {
    display: block; margin-bottom: 12px;
    font-family: 'Oswald', sans-serif; font-size: 9.5px; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-act-row {
    display: flex; align-items: center; gap: 9px; padding: 7px 0;
    font-size: 12px; color: var(--text-2);
}
.tga-act-row i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
.tga-act-row span { margin-left: auto; font-size: 10.5px; color: var(--text-3); }
@media (max-width: 1000px) {
.tga-an-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
.tga-analytics { padding: 52px 0; }
.tga-an-card { padding: 18px; }
.tga-an-top { flex-wrap: wrap; }
.tga-tabs { margin-left: 0; }
.tga-an-kpi { grid-template-columns: repeat(2, 1fr); }
.tga-graph svg { height: 170px; }
}
/* правая карточка аналитики: чуть плотнее левой */
.tga-an-side { align-self: stretch; }
/* мини-график в карточке процесса: рисуется при появлении */
.tga-step-spark {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
}
.tga-step-lbl {
    font-family: 'Oswald', sans-serif; font-size: 9.5px; letter-spacing: 1.1px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-step-spark svg { flex: 1; height: 26px; }
.tga-step-spark polyline {
    fill: none; stroke: var(--orange); stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 120; stroke-dashoffset: 120;
}
.tga-step-spark.is-in polyline { animation: tgaDraw3 1.3s cubic-bezier(0.16,1,0.3,1) forwards; }
.tga-step-spark.is-down polyline { stroke: var(--green); }
@keyframes tgaDraw3 { to { stroke-dashoffset: 0; } }
.tga-step-val {
    font-family: 'Oswald', sans-serif; font-size: 14px; color: var(--orange);
}
.tga-step-spark.is-down .tga-step-val { color: var(--green); }
/* ===== почему возвращаются: текст слева, отчёт справа ===== */
.tga-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tga-title-left { text-align: left; font-size: 36px; }
.tga-sub-left { text-align: left; margin-bottom: 26px; }
.tga-why-left .eyebrow { margin-bottom: 14px; }
.tga-why-card {
    display: flex; gap: 14px; padding: 20px;
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px;
    margin-bottom: 14px; transition: border-color .25s, transform .25s;
}
.tga-why-card:hover { border-color: var(--line-2); transform: translateX(3px); }
.tga-why-ico {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(252,168,23,0.13); color: var(--orange); font-size: 18px;
}
/* карточка отчёта */
.tga-report {
    padding: 26px; background: linear-gradient(180deg, var(--bg-2), var(--bg));
    border: 1px solid var(--line-2); border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.tga-report-top { display: flex; align-items: center; margin-bottom: 20px; }
.tga-report-top h3 { margin: 0; font-family: 'Oswald', sans-serif; font-size: 17px; color: #fff; }
.tga-report-top .tga-live { margin-left: auto; }
.tga-plan-box {
    display: flex; align-items: center; gap: 18px; padding: 18px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 16px;
    margin-bottom: 18px;
}
.tga-ring { position: relative; flex: 0 0 auto; width: 92px; height: 92px; }
.tga-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.tga-ring circle { fill: none; stroke-width: 8; }
.tga-ring-bg { stroke: rgba(255,255,255,0.07); }
.tga-ring-fg {
    stroke: var(--orange); stroke-linecap: round;
    stroke-dasharray: 327; stroke-dashoffset: 327;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16,1,0.3,1);
}
.tga-ring-num {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1px;
}
.tga-ring-num b { font-family: 'Oswald', sans-serif; font-size: 24px; color: #fff; line-height: 1; }
.tga-ring-num small {
    font-family: 'Oswald', sans-serif; font-size: 8.5px; letter-spacing: 1.1px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-plan-txt b { display: block; margin-bottom: 6px; font-size: 14px; color: #fff; }
.tga-plan-txt span { font-size: 12.5px; line-height: 1.5; color: var(--text-2); }
.tga-rep-list { display: flex; flex-direction: column; gap: 8px; }
.tga-rep-row {
    display: flex; align-items: center; padding: 13px 16px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px;
    opacity: 0; transform: translateY(8px);
}
.tga-report.is-in .tga-rep-row { animation: tgaRowIn .5s cubic-bezier(0.16,1,0.3,1) forwards; }
.tga-report.is-in .tga-rep-row:nth-child(2) { animation-delay: .07s; }
.tga-report.is-in .tga-rep-row:nth-child(3) { animation-delay: .14s; }
.tga-report.is-in .tga-rep-row:nth-child(4) { animation-delay: .21s; }
.tga-report.is-in .tga-rep-row:nth-child(5) { animation-delay: .28s; }
.tga-report.is-in .tga-rep-row:nth-child(6) { animation-delay: .35s; }
@keyframes tgaRowIn { to { opacity: 1; transform: translateY(0); } }
.tga-rep-row span { font-size: 13px; color: var(--text-2); }
.tga-rep-row b {
    margin-left: auto; font-family: 'Oswald', sans-serif; font-size: 14.5px; color: #fff;
}
.tga-rep-row b.up { color: var(--green); }
@media (max-width: 1000px) {
.tga-why-grid { grid-template-columns: 1fr; gap: 28px; }
.tga-title-left { font-size: 30px; }
}
@media (max-width: 760px) {
.tga-title-left { font-size: 26px; }
.tga-report { padding: 20px; }
.tga-plan-box { flex-direction: column; text-align: center; }
}
/* ===== кейсы: лента со скриншотами объявлений ===== */
.tga-cases-rail {
    display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px 20px 18px; margin: 0 auto; max-width: 1240px;
    scrollbar-width: thin; scrollbar-color: var(--bg-3) transparent;
}
.tga-cases-rail::-webkit-scrollbar { height: 6px; }
.tga-cases-rail::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 999px; }
.tga-cases-rail .tga-case {
    flex: 0 0 560px; scroll-snap-align: center;
    display: grid; grid-template-columns: 200px 1fr; gap: 18px;
    padding: 20px; background: var(--bg-2);
    border: 1px solid var(--line); border-radius: 18px;
    transition: border-color .25s, transform .25s;
}
.tga-cases-rail .tga-case:hover { border-color: rgba(252,168,23,0.4); transform: translateY(-3px); }
.tga-case-shot {
    border-radius: 12px; overflow: hidden; background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.tga-case-shot img { display: block; width: 100%; height: auto; }
.tga-case-body { display: flex; flex-direction: column; }
.tga-case-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tga-tag {
    padding: 4px 10px; border-radius: 999px;
    background: rgba(252,168,23,0.13); color: var(--orange);
    font-family: 'Oswald', sans-serif; font-size: 9.5px; letter-spacing: 1.1px;
    text-transform: uppercase;
}
.tga-tag-2 { background: rgba(255,255,255,0.06); color: var(--text-2); }
.tga-cases-nav { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.tga-arrow {
    width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
    background: var(--bg-2); border: 1px solid var(--line-2); color: var(--text-2);
    font-size: 20px; line-height: 1; transition: background .2s, color .2s, border-color .2s;
}
.tga-arrow:hover { background: var(--orange); border-color: var(--orange); color: #15161a; }
@media (max-width: 760px) {
.tga-cases-rail { gap: 12px; padding: 4px 16px 16px; }
.tga-cases-rail .tga-case { flex-basis: 84vw; grid-template-columns: 1fr; }
.tga-case-shot { max-width: 220px; }
}
/* «Бесплатно» рядом с заголовком разбора */
.cta-free {
    display: inline-block; vertical-align: middle; margin-left: 12px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4);
    color: var(--green) !important;
    font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1.2px;
    text-transform: uppercase;
}
@media (max-width: 760px) {
.cta-free { display: block; margin: 12px auto 0; width: max-content; font-size: 10.5px; }
}
/* ===== вспышка при изменении значения ===== */
.tga-flash { animation: tgaFlash .7s ease-out; }
@keyframes tgaFlash {
    0%   { color: var(--orange); text-shadow: 0 0 14px rgba(252,168,23,0.55); }
    100% { color: inherit; text-shadow: none; }
}
/* новая строка в ленте активности выезжает сверху */
.tga-act-list { display: flex; flex-direction: column; }
.tga-act-row.is-new { animation: tgaActIn .5s cubic-bezier(0.16,1,0.3,1); }
@keyframes tgaActIn {
    from { opacity: 0; transform: translateY(-8px); max-height: 0; }
    to   { opacity: 1; transform: translateY(0); max-height: 40px; }
}
/* столбцы графика плавно меняют высоту */
.tga-dash .tga-bar { transition: height .8s cubic-bezier(0.16,1,0.3,1); }
/* полоски каналов подрагивают при пересчёте */
.tga-ch-bar i { transition: width 1s cubic-bezier(0.16,1,0.3,1); }
/* карточки отодвинуты за пределы ноутбука: экран должен читаться */
.chan-1 { top: -2%; left: -15%; }
.chan-2 { top: 22%; right: -16%; }
.chan-3 { bottom: 20%; left: -16%; }
.chan-4 { bottom: -2%; right: -13%; }
@media (max-width: 1240px) {
.chan-1 { left: -8%; }
.chan-2 { right: -8%; }
.chan-3 { left: -9%; }
.chan-4 { right: -6%; }
}
@media (max-width: 1000px) {
.chan-field { display: none; }
}
/* ===== дашборд разворачивается на весь экран ноутбука ===== */
.browser-body { padding: 0; }
.browser-body .tga-dash {
    max-width: none; margin: 0; padding: 22px 24px;
    background: transparent; border: 0; box-shadow: none;
}
.browser-body .tga-dash-top { margin-bottom: 14px; font-size: 10px; }
.browser-body .tga-metric b { font-size: 46px; letter-spacing: 1px; }
.browser-body .tga-metric i { font-size: 12.5px; padding: 5px 12px; }
.browser-body .tga-metric-lbl {
    margin-top: 10px;
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 15px; letter-spacing: 1.4px; text-transform: uppercase;
    color: #fff;
}
/* столбцы крупнее, ярче и с подписями дней */
.browser-body .tga-chart {
    height: 132px; gap: 10px; margin: 20px 0 26px; padding: 14px 14px 24px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 14px;
}
.browser-body .tga-bar {
    border-radius: 7px 7px 0 0;
    background: linear-gradient(180deg, var(--orange), rgba(252,168,23,0.18));
    box-shadow: 0 0 18px rgba(252,168,23,0.18);
}
.browser-body .tga-bar.is-hot {
    background: linear-gradient(180deg, #ffd071, var(--orange));
    box-shadow: 0 0 26px rgba(252,168,23,0.45);
}
.browser-body .tga-bar::after {
    content: attr(data-d); position: absolute; left: 0; right: 0; bottom: -19px;
    text-align: center; font-size: 10px; color: var(--text-3);
}
.browser-body .tga-spark { padding: 14px 16px; border-radius: 14px; }
.browser-body .tga-spark svg { height: 42px; }
.browser-body .tga-spark-val { font-size: 20px; }
.browser-body .tga-spark-lbl { font-size: 11px; }
.browser-body .tga-foot { margin-top: 16px; font-size: 12px; gap: 26px; }
.browser-body .tga-foot b { color: #fff; }
.browser-body .tga-chip { display: none; }
@media (max-width: 760px) {
.browser-body .tga-dash { padding: 14px; }
.browser-body .tga-metric b { font-size: 30px; }
.browser-body .tga-chart { height: 92px; gap: 6px; }
.browser-body .tga-spark svg { height: 30px; }
}
/* ===== двенадцать услуг: перенесено с главной ===== */
.phone-slide-offer .eyebrow { color: var(--orange); font-family: 'Oswald'; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; }
.phone-slide-pains .eyebrow { color: #ef4444; font-family: 'Oswald'; font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; }
/* воздух вокруг лент логотипов.
   Селекторы структурные: :first-of-type здесь не работает —
   первым элементом секции идёт заголовок { margin-top: 46px; }
.niches-sub {
    font-size: 17px; line-height: 1.65; color: var(--text-2);
    max-width: 780px; margin-left: auto; margin-right: auto;
}
@media (max-width: 760px) {
.niches-sub { font-size: 14.5px; line-height: 1.6; }
}
/* «подробнее» — кнопкой { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 15px; border-radius: 100px; white-space: nowrap;
    background: rgba(252,168,23,0.12); border: 1px solid rgba(252,168,23,0.34);
    color: var(--orange); transition: background .25s, border-color .25s, color .25s; }
/* задержки { animation-delay: 1.1s; }
/* --- единая ширина содержимого ---
   Раньше блоки шли по 1540, 1400, 1280, 1240 — на широком мониторе край
   страницы «ходил». Сводим к одному значению. Узкие блоки (форма, акция, .calcsec-inner, .dash-inner, .eff-inner, .about-inner, .pick-box, .pulse-inner { max-width: 1440px; }
/* --- описание услуги на телефоне ---
   Карточка целиком ссылка { display: none; }
@media (max-width: 900px) {
/* сам текст: скрыт { display: block; position: static; opacity: 1; padding: 0; background: none;
        max-height: 0; overflow: hidden; transition: max-height .32s ease; pointer-events: auto; }
}
@keyframes srvShine { 0%, 62% { transform: translateX(-120%); } 82%, 100% { transform: translateX(120%); } }
/* вторая половина описания: тем же размером, но янтарным —
   акцент есть, а строка остаётся единой */
.hero-guarantee {
    display: inline; margin: 0;
    font-family: inherit; font-size: inherit; letter-spacing: normal;
    text-transform: none; font-weight: 600;
    color: var(--orange);
}
.hero .hero-guarantee { white-space: normal; }
/* ===== цифры кейса кольцами ===== */
.tga-case-nums { display: flex; gap: 10px; justify-content: space-between; }
.tga-ring3 {
    position: relative; flex: 1; display: flex; flex-direction: column;
    align-items: center; min-width: 0;
}
.tga-ring3 svg { width: 72px; height: 72px; transform: rotate(-90deg); }
.tga-ring3 circle { fill: none; stroke-width: 6; }
.tga-ring3-bg { stroke: rgba(255,255,255,0.07); }
.tga-ring3-fg {
    stroke: var(--c); stroke-linecap: round;
    stroke-dasharray: 188; stroke-dashoffset: 188;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16,1,0.3,1);
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--c) 45%, transparent));
}
.tga-ring3-num {
    position: absolute; top: 26px; left: 0; right: 0; text-align: center;
    font-family: 'Oswald', sans-serif; font-size: 14px; color: #fff;
}
.tga-ring3-lbl {
    margin-top: 6px;
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 12px; letter-spacing: 1.1px; text-transform: uppercase;
    color: #fff;
}
@media (max-width: 760px) {
.tga-ring3 svg { width: 62px; height: 62px; }
.tga-ring3-num { top: 22px; font-size: 12.5px; }
}
/* ===== карточки «что делаем»: иконка и появление ===== */
.tga-card { position: relative; opacity: 0; transform: translateY(14px); }
.tga-card.is-in { animation: tgaCardIn .6s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes tgaCardIn { to { opacity: 1; transform: translateY(0); } }
.tga-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tga-card-ico {
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(252,168,23,0.12); border: 1px solid rgba(252,168,23,0.25);
    color: var(--orange);
    transition: transform .3s cubic-bezier(0.16,1,0.3,1), background .3s;
}
.tga-card-ico svg { width: 22px; height: 22px; }
.tga-card:hover .tga-card-ico { transform: translateY(-3px) rotate(-6deg); background: rgba(252,168,23,0.2); }
.tga-card .tga-num { margin: 0; }
/* тонкая линия под номером — растёт при появлении */
.tga-card-line {
    display: block; height: 2px; width: 0; margin: 12px 0 0;
    border-radius: 999px; background: linear-gradient(90deg, var(--orange), transparent);
}
.tga-card.is-in .tga-card-line { animation: tgaLine 1s .3s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes tgaLine { to { width: 68px; } }
/* вторая строка заголовка белая, как на главной */
.hero .hero-title span { display: block; color: #fff; }
@media (max-width: 760px) {
.tga-ring3-lbl { font-size: 10.5px; letter-spacing: .8px; }
}
/* подписи под кольцами: правило весомее прежнего .tga-case-nums span */
.tga-case-nums .tga-ring3 .tga-ring3-lbl {
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 12px; letter-spacing: 1.1px; text-transform: uppercase;
    color: #fff;
}
@media (max-width: 760px) {
.tga-case-nums .tga-ring3 .tga-ring3-lbl { font-size: 10.5px; letter-spacing: .8px; }
}
/* описание первого экрана: крупнее и светлее, чтобы читалось весомее.
   Без капслока — 86 знаков прописными разбирались бы по буквам. */
.hero .hero-sub { font-size: clamp(16px, 1.45vw, 21px); color: #f0ece9; }
@media (max-width: 760px) {
.browser-body .tga-metric-lbl { font-size: 12px; letter-spacing: 1px; }
}
/* ===== быстрая форма на экране ноутбука =====
   Первая возможность оставить телефон, не долистывая страницу.
   Классы phone-input и submit-phone общие: маска, проверка и отправка
   подхватываются теми же скриптами, что и форма внизу страницы. */
.tga-quick {
    display: grid; grid-template-columns: 1fr auto; gap: 12px;
    max-width: 620px; margin: 34px auto 0; padding: 0;
    border-top: 0;
}
.tga-quick-lead {
    grid-column: 1 / -1; margin-bottom: 4px;
    font-family: 'Oswald', sans-serif; font-weight: 500;
    font-size: 14px; letter-spacing: .8px; text-transform: uppercase;
    color: var(--text-2);
}
.tga-quick-lead b { color: var(--orange); font-weight: 700; }
.tga-quick-input {
    padding: 15px 20px; border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 2px solid var(--orange);
    color: #fff; font-size: 15px; outline: none;
    animation: tgaBlink 2.6s ease-in-out infinite;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
@keyframes tgaBlink {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252,168,23,0); }
    50%      { box-shadow: 0 0 0 5px rgba(252,168,23,0.16); }
}
.tga-quick-input:focus { animation: none; }
.tga-quick-input::placeholder { color: var(--text-3); }
.tga-quick-input:focus {
    border-color: var(--orange); background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 4px rgba(252,168,23,0.12);
}
.tga-quick-btn {
    padding: 14px 26px; border: 0; border-radius: 999px; cursor: pointer;
    background: var(--orange); color: #15161a;
    font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1.2px;
    text-transform: uppercase; white-space: nowrap;
    transition: background .2s, transform .2s;
}
.tga-quick-btn:hover { background: var(--orange-2); transform: translateY(-2px); }
.tga-quick-note {
    grid-column: 1 / -1; font-size: 10.5px; line-height: 1.4; color: var(--text-3);
}
.tga-quick-note a { color: var(--text-2); text-decoration: underline; }
@media (max-width: 760px) {
.tga-quick { grid-template-columns: 1fr; gap: 8px; margin-top: 14px; padding-top: 14px; }
.tga-quick-input, .tga-quick-btn { padding: 11px 16px; font-size: 13px; }
}
/* ===== графика в карточках «что делаем» ===== */
.tga-viz { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.tga-viz-legend {
    display: flex; justify-content: space-between; gap: 10px; margin-top: 12px;
    font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: .9px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-viz-legend .hot { color: var(--orange); }
.tga-viz-legend .was { text-decoration: line-through; }
/* 01: две строки — тест и масштаб */
.tga-row2 {
    display: grid; grid-template-columns: 78px 1fr 38px; gap: 10px;
    align-items: center; margin-bottom: 10px;
}
.tga-row2:last-child { margin-bottom: 0; }
.tga-row2-lbl {
    font-family: 'Oswald', sans-serif; font-size: 10.5px; letter-spacing: .9px;
    text-transform: uppercase; color: var(--text-3);
}
.tga-row2-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.tga-row2-bar i { display: block; height: 100%; width: 0; border-radius: 999px; }
.tga-row2-bar .test { background: rgba(252,168,23,0.45); }
.tga-row2-bar .main { background: var(--orange); }
.tga-row2-val {
    text-align: right; font-family: 'Oswald', sans-serif; font-size: 12.5px; color: #fff;
}
.tga-card.is-in .tga-row2-bar .test { animation: tgaBar10 .8s .35s cubic-bezier(0.16,1,0.3,1) forwards; }
.tga-card.is-in .tga-row2-bar .main { animation: tgaBar90 1s .6s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes tgaBar10 { to { width: 10%; } }
@keyframes tgaBar90 { to { width: 90%; } }
/* 02: варианты креативов */
.tga-chips { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; }
.tga-chips i {
    height: 30px; border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-style: normal;
    opacity: 0; transform: scale(.7);
}
.tga-chips i.on { background: var(--orange); color: #15161a; box-shadow: 0 0 14px rgba(252,168,23,0.35); }
.tga-chips i.off { background: rgba(255,255,255,0.05); color: var(--text-3); }
.tga-card.is-in .tga-chips i { animation: tgaChip .45s cubic-bezier(0.16,1,0.3,1) forwards; }
.tga-card.is-in .tga-chips i:nth-child(1) { animation-delay: .30s; }
.tga-card.is-in .tga-chips i:nth-child(2) { animation-delay: .36s; }
.tga-card.is-in .tga-chips i:nth-child(3) { animation-delay: .42s; }
.tga-card.is-in .tga-chips i:nth-child(4) { animation-delay: .48s; }
.tga-card.is-in .tga-chips i:nth-child(5) { animation-delay: .54s; }
.tga-card.is-in .tga-chips i:nth-child(6) { animation-delay: .60s; }
.tga-card.is-in .tga-chips i:nth-child(7) { animation-delay: .66s; }
.tga-card.is-in .tga-chips i:nth-child(8) { animation-delay: .72s; }
@keyframes tgaChip { to { opacity: 1; transform: scale(1); } }
/* 03: падение цены клика */
.tga-fall { display: flex; align-items: flex-end; gap: 7px; height: 58px; }
.tga-fall span {
    flex: 1; height: 0; border-radius: 4px 4px 0 0;
    background: rgba(255,255,255,0.10);
}
.tga-fall .last { background: var(--orange); box-shadow: 0 0 16px rgba(252,168,23,0.4); }
.tga-card.is-in .tga-fall span { animation: tgaFall .7s cubic-bezier(0.16,1,0.3,1) forwards; }
.tga-card.is-in .tga-fall span:nth-child(1) { animation-delay: .30s; }
.tga-card.is-in .tga-fall span:nth-child(2) { animation-delay: .38s; }
.tga-card.is-in .tga-fall span:nth-child(3) { animation-delay: .46s; }
.tga-card.is-in .tga-fall span:nth-child(4) { animation-delay: .54s; }
.tga-card.is-in .tga-fall span:nth-child(5) { animation-delay: .62s; }
.tga-card.is-in .tga-fall span:nth-child(6) { animation-delay: .70s; }
.tga-card.is-in .tga-fall span:nth-child(7) { animation-delay: .78s; }
@keyframes tgaFall { to { height: var(--h); } }
@media (max-width: 760px) {
.tga-chips i { height: 24px; font-size: 11px; }
.tga-fall { height: 46px; }
.tga-row2 { grid-template-columns: 66px 1fr 34px; }
}
@media (max-width: 760px) {
.tga-quick-lead { font-size: 12px; letter-spacing: .5px; }
}
/* уведомление в дашборде: стоит ниже строки с ценой клика, и под него оставлено место, чтобы ничего не перекрывалось */
.browser-body .tga-dash { padding-bottom: 68px; }
.browser-body .tga-toast {
    left: 24px; bottom: 16px; top: auto;
    padding: 11px 17px; font-size: 13px;
}
.browser-body .tga-toast b { font-size: 13.5px; }
.browser-body .tga-toast-dot { width: 9px; height: 9px; }
@media (max-width: 760px) {
.browser-body .tga-dash { padding-bottom: 54px; }
.browser-body .tga-toast { left: 12px; bottom: 12px; font-size: 11px; padding: 8px 12px; }
}

/* ===== Телефон и планшет: карточки друг под другом =====
   Правило было потеряно при переносе стилей — карточки «Что делаем»
   и тарифы оставались в три колонки и сжимались до нечитаемости. */
@media (max-width: 1100px) {
    .tga-plans-row { grid-template-columns: repeat(2, 1fr); }
    .tga-plans-row .tga-plan:last-child { grid-column: span 2; }
}
@media (max-width: 900px) {
    .tga-cards { grid-template-columns: 1fr; }
    .tga-plans-row { grid-template-columns: 1fr; }
    .tga-plans-row .tga-plan:last-child { grid-column: auto; }
    .tga-steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .tga-steps-row { grid-template-columns: 1fr; }
    .tga-cards, .tga-plans-row { gap: 14px; }
}


/* ===== Полоса цифр на телефоне: слайдер =====
   В столбик четыре пункта занимали целый экран. Теперь показывается
   один, остальные сменяются сами. Точки внизу показывают, сколько их. */
@media (max-width: 760px) {
    .pulse-inner {
        display: block; position: relative;
        overflow: hidden; padding-bottom: 26px;
    }
    .pulse-track {
        display: flex; width: 100%;
        transition: transform .55s cubic-bezier(0.16,1,0.3,1);
    }
    .pulse-item {
        flex: 0 0 100%; width: 100%; padding: 6px 0;
    }
    .pulse-item + .pulse-item::before { display: none; }
    .pulse-dots {
        position: absolute; left: 0; right: 0; bottom: 4px;
        display: flex; justify-content: center; gap: 7px;
    }
    .pulse-dots i {
        width: 6px; height: 6px; border-radius: 50%;
        background: rgba(255,255,255,0.18); transition: background .3s, width .3s;
    }
    .pulse-dots i.on { width: 18px; border-radius: 999px; background: var(--orange); }
}
@media (min-width: 761px) {
    /* то же самое для полосы цифр: обычная сетка вместо display: contents */
    .pulse-track {
        display: grid; width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px; align-items: center;
        transform: none !important;
    }
    .pulse-dots { display: none; }
}


/* ===== Отчёт кампании: только на широком экране =====
   На телефоне кольцо и шесть строк сжимались до нечитаемости
   и растягивали раздел. Смысл несут текст и три карточки слева —
   их достаточно. */
@media (max-width: 760px) {
    .tga-report { display: none; }
    .tga-why-grid { gap: 0; }
}



/* ===== Капсула на телефоне: слайдер =====
   В столбик четыре пункта занимали пол-экрана. Показываем один,
   остальные сменяются сами — в такт с полосой цифр ниже. */
@media (max-width: 760px) {
    .trust-bar {
        display: block; width: 100%; max-width: 420px;
        border-radius: 18px; padding: 10px 6px 22px;
        position: relative; overflow: hidden;
    }
    .trust-track {
        display: flex; width: 100%;
        transition: transform .55s cubic-bezier(0.16,1,0.3,1);
    }
    .trust-item {
        flex: 0 0 100%; width: 100%;
        justify-content: center; padding: 8px 14px;
    }
    .trust-sep { display: none; }
    .trust-dots {
        position: absolute; left: 0; right: 0; bottom: 8px;
        display: flex; justify-content: center; gap: 7px;
    }
    .trust-dots i {
        width: 6px; height: 6px; border-radius: 50%;
        background: rgba(255,255,255,0.18); transition: background .3s, width .3s;
    }
    .trust-dots i.on { width: 18px; border-radius: 999px; background: var(--orange); }
}
@media (min-width: 761px) {
    /* На широком экране дорожка — обычная строка. Раньше здесь стоял
       display: contents, и в части браузеров пункты вставали столбиком. */
    .trust-track {
        display: flex; align-items: stretch; gap: 4px;
        width: auto; transform: none !important;
    }
    .trust-dots { display: none; }
}


/* точкам слайдера нужно своё место, иначе они налезают на подпись */
@media (max-width: 760px) {
    .trust-bar { padding-bottom: 30px; }
    .trust-dots { bottom: 10px; }
    .pulse-inner { padding-bottom: 32px; }
    .pulse-dots { bottom: 8px; }
}


/* описания анимаций, потерянные при переносе стилей */
@keyframes abHint {
    0%, 82%, 100% { box-shadow: 0 0 0 0 rgba(252,168,23,0); }
    88% { box-shadow: 0 0 0 6px rgba(252,168,23,0.18); }
}


/* ===== Экран ноутбука: дашборд и форма =====
   Форма стоит нижней полосой, поэтому дашборд сжат: число, график
   и линия CTR уменьшены, отступы плотнее. Иначе форма не помещалась.
   Отступы полосы по бокам — 40 px, как у блока .hs на главной. */
.browser-body { display: flex; flex-direction: column; }

.browser-body .tga-dash {
    flex: 1 1 auto; min-height: 0; overflow: hidden;
    padding: 16px 24px 10px;
}
.browser-body .tga-dash-top { margin-bottom: 8px; font-size: 9.5px; }
.browser-body .tga-metric b { font-size: 34px; }
.browser-body .tga-metric i { font-size: 11px; padding: 3px 9px; }
.browser-body .tga-metric-lbl { margin-top: 5px; font-size: 13px; }
.browser-body .tga-chart {
    height: 78px; gap: 7px; margin: 12px 0 12px; padding: 10px 12px 18px;
}
.browser-body .tga-bar::after { bottom: -16px; font-size: 9px; }
.browser-body .tga-spark { padding: 8px 12px; }
.browser-body .tga-spark svg { height: 26px; }
.browser-body .tga-spark-val { font-size: 15px; }
.browser-body .tga-spark-lbl { font-size: 10px; }
.browser-body .tga-foot { margin-top: 8px; font-size: 11px; gap: 20px; }
/* всплывающие уведомления: стоят под графиком, в своей полосе.
   Дашборду добавлен отступ снизу, чтобы они ни на что не налезали. */
.browser-body .tga-dash { padding-bottom: 52px; }
.browser-body .tga-toast {
    display: inline-flex; top: auto; bottom: 10px; left: 24px;
    padding: 8px 14px; font-size: 12px;
}
.browser-body .tga-toast b { font-size: 12.5px; }

.browser-body .hs-cta { flex: 0 0 auto; margin: 0; padding: 12px 40px 16px; }

@media (max-width: 1100px) {
    .browser-body .tga-metric b { font-size: 28px; }
    .browser-body .tga-chart { height: 64px; }
    .browser-body .tga-spark svg { height: 22px; }
}
@media (max-width: 760px) {
    .browser-body .tga-dash { padding: 12px 14px 8px; }
    .browser-body .hs-cta { padding: 10px 18px 12px; }
    .browser-body .tga-chart { height: 54px; }
}


/* уведомления подняты почти под сам график */
.browser-body .tga-toast { bottom: 78px; }
@media (max-width: 1100px) { .browser-body .tga-toast { bottom: 64px; } }
@media (max-width: 760px)  { .browser-body .tga-toast { bottom: 52px; } }



/* ===== Капсула на телефоне: убираем пустоту, отодвигаем точки =====
   Пункт стоял по центру высокой оболочки, сверху и снизу оставалось
   пустое место, а точки налезали на подпись. Оболочка теперь по
   содержимому, точкам отведена своя полоска внизу. */
@media (max-width: 760px) {
    .trust-bar {
        min-height: 0; height: auto;
        padding: 10px 10px 22px;
        border-radius: 16px;
    }
    .trust-track { align-items: center; }
    .trust-item {
        min-height: 0; height: auto;
        padding: 0 8px; gap: 12px;
    }
    .trust-txt { justify-content: center; }
    .trust-dots { bottom: 7px; gap: 8px; }
    .trust-dots i { width: 6px; height: 6px; }
    .trust-dots i.on { width: 20px; }
}


/* ===== Точки слайдеров: в обычном потоке, а не поверх текста =====
   Раньше они выставлялись поверх содержимого и при малейшем сдвиге
   налезали на подпись. Теперь стоят под ней обычной строкой —
   наехать физически не могут. */
@media (max-width: 760px) {
    .trust-bar { padding: 10px 10px 12px; }
    .trust-dots {
        position: static; margin-top: 12px;
        display: flex; justify-content: center; gap: 8px;
    }
    .pulse-inner { padding-bottom: 0; }
    .pulse-dots {
        position: static; margin-top: 14px;
        display: flex; justify-content: center; gap: 8px;
    }
}


/* точки ближе к тексту, снизу лишнего места не остаётся */
@media (max-width: 760px) {
    .trust-bar { padding: 9px 10px 9px; }
    .trust-dots { margin-top: 8px; }
    .pulse-strip { padding: 16px 16px 14px; }
    .pulse-dots { margin-top: 10px; }
}


/* ===== Макет телефона: высота меньше на пятую часть =====
   Ширина прежняя, 268 px. Высота 536 → 429. Правило идёт после
   всех остальных, поэтому действует на всех мобильных ширинах. */
@media (max-width: 900px) {
    .phone-mock { height: 429px; }
}


/* ===== Капсула: ниже на пятую часть, срезано снизу =====
   Было около 70 px: 9 сверху + значок 38 + 8 + точки 6 + 9 снизу.
   Стало около 56: убрали нижний отступ и придвинули точки. */
@media (max-width: 760px) {
    .trust-bar { padding: 9px 10px 3px; }
    .trust-dots { margin-top: 4px; }
    .trust-dots i { width: 5px; height: 5px; }
    .trust-dots i.on { width: 17px; }
}


/* ===== Текст в макете телефона: крупнее на пятую часть =====
   Название 17 → 20, цифра 10 → 12, кнопка 9,5 → 11,4,
   подпись сверху 10 → 12, строка состояния 10 → 12. */
@media (max-width: 900px) {
    .hp2 .hs-eyebrow { font-size: 12px; }
    .hp2-name { font-size: 20px; }
    .hp2-metric { font-size: 12px; }
    .hp2-foot { font-size: 11.4px; }
    .phone-status { font-size: 12px; }
}


/* янтарная строка под названием: 12 → 15,6 → 18,7
   Считая от исходных 10 px, стала почти вдвое крупнее. */
@media (max-width: 900px) {
    .hp2-metric { font-size: 18.7px; }
}


/* название услуги в телефоне: 20 → 24, чтобы не проигрывало
   янтарной строке под ним */
@media (max-width: 900px) {
    .hp2-name { font-size: 24px; }
}
