@charset "UTF-8";
/* ============================================================
   Стили страницы «Разработка сайтов».
   Подключается только на ней, через @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; cursor: pointer; }






.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; }
}








.clients { background: var(--bg); padding: 70px 0 74px; overflow: hidden; }






.clients-head { text-align: center; padding: 0 5%; margin-bottom: 40px; }






.clients-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(28px, 3.4vw, 46px); text-transform: uppercase; color: #fff; margin-bottom: 10px; }






.clients-title span { color: var(--orange); }






.clients-sub { font-size: 15px; color: var(--text-2); }







.marquee {
    position: relative; width: 100%; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}






.marquee-track { display: flex; width: max-content; animation: marqueeRun 78s linear infinite; }






.marquee-2 { margin-top: 12px; }






.marquee-track-rev { animation: marqueeRunRev 92s linear infinite; }






.marquee:hover .marquee-track { animation-play-state: paused; }







.client-item {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    height: 78px; min-width: 190px; margin: 0 10px; padding: 0 26px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color .25s, background .25s, transform .25s;
}






.client-item:hover { border-color: rgba(252,168,23,0.5); background: rgba(252,168,23,0.06); transform: translateY(-3px); }







.client-item img {
    max-height: 42px; max-width: 150px; width: auto; object-fit: contain;
    opacity: 0.62; transition: opacity .25s, transform .25s;
}






.client-item:hover img { opacity: 1; transform: scale(1.04); }







.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;
}






.client-item:hover .client-word { color: var(--orange); }
@media (max-width: 700px){






    .client-item { height: 64px; min-width: 150px; padding: 0 18px; margin: 0 7px; }






    .client-word { font-size: 13px; letter-spacing: 1.5px; }






    .marquee-track { animation-duration: 34s; }
}










.grate-wrap { text-align: center; position: relative; z-index: 2; }






.grate {
    display: inline-flex; align-items: center; gap: 14px;
    margin: 44px auto 0; padding: 14px 24px 14px 18px;
    background: #16171c; border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px; text-decoration: none;
    box-shadow: 0 16px 44px rgba(0,0,0,0.5);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}






.grate:hover { border-color: rgba(252,168,23,0.55); transform: translateY(-3px); box-shadow: 0 22px 54px rgba(252,168,23,0.2); }






.grate-logo {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px; background: #fff; flex-shrink: 0;
}






.grate-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 30px; color: #fff; line-height: 1; }






.grate-stars { color: var(--orange); font-size: 19px; letter-spacing: 3px; }






.grate-count { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); white-space: nowrap; }






.grate-arrow { color: var(--orange); font-size: 18px; transition: transform .25s; }






.grate:hover .grate-arrow { transform: translateX(4px); }
@media (max-width: 620px){






    .grate { gap: 9px; padding: 11px 15px 11px 12px; margin-top: 30px; border-radius: 15px; }






    .grate-logo { width: 32px; height: 32px; }






    .grate-num { font-size: 22px; }






    .grate-stars { font-size: 13px; letter-spacing: 1.5px; }






    .grate-arrow { font-size: 15px; }






    .grate-count { font-size: 10px; letter-spacing: 1px; }
}









.grate { text-decoration: none; }






.grate-arrow { transition: transform .3s; }










.rv-panel { margin-top: 30px; }



















.rv-scroll {
    display: flex; gap: 16px; overflow-x: auto; padding: 4px 5% 18px;
    scroll-snap-type: x mandatory; scrollbar-width: thin;
}






.rv-scroll::-webkit-scrollbar { height: 6px; }






.rv-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }






.rv-scroll::-webkit-scrollbar-thumb { background: rgba(252,168,23,0.5); border-radius: 4px; }






.rv-card {
    flex: 0 0 330px; scroll-snap-align: start;
    background: var(--bg-3); border: 1px solid var(--line);
    border-radius: 18px; padding: 22px;
    display: flex; flex-direction: column;
    transition: border-color .25s, transform .25s;
}






.rv-card:hover { border-color: rgba(252,168,23,0.45); transform: translateY(-3px); }






.rv-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }






.rv-ava {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--orange), #d68a0a); color: #000;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px;
}






.rv-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; color: #fff; letter-spacing: 0.3px; }






.rv-date { font-size: 11px; color: var(--text-3); margin-top: 2px; }






.rv-stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }






.rv-text { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }







.rv-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }






.rv-btn-main {
    background: var(--orange); color: #000; text-decoration: none;
    padding: 15px 30px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(252,168,23,0.3);
    transition: transform .25s, box-shadow .25s, background .25s;
}






.rv-btn-main:hover { background: var(--orange-2); transform: translateY(-3px); box-shadow: 0 18px 42px rgba(252,168,23,0.42); }






.rv-btn-alt {
    color: var(--text-2); text-decoration: none;
    font-family: 'Oswald', sans-serif; font-size: 13px;
    letter-spacing: 1.5px; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 3px;
    transition: color .25s, border-color .25s;
}






.rv-btn-alt:hover { color: var(--orange); border-color: var(--orange); }
@media (max-width: 620px){






    .rv-panel { margin-top: 22px; }






    .rv-scroll { gap: 12px; padding: 4px 16px 16px; }






    .rv-card { flex: 0 0 84vw; padding: 18px; border-radius: 15px; }






    .rv-text { font-size: 13px; }






    .rv-actions { gap: 14px; }






    .rv-btn-main { width: 100%; text-align: center; padding: 14px 20px; }
}








.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; }






.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }






.step-item { background: #faf7f0; padding: 16px; border-radius: 12px; display: flex; align-items: center; gap: 12px; }






.step-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; color: var(--orange); }






.step-text { font-size: 13px; color: #333; line-height: 1.4; }






.included-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }






.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; }
@media (max-width: 1000px){






    .pc-key-list, .pc-fit-row, .included-pills, .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){






    .pc-key-list, .pc-fit-row, .included-pills, .steps-grid { grid-template-columns: 1fr; }
}








.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-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }






.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-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }






.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; }










.card-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }






.card-more { display: none; }








.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; }
}








.cases { background: var(--bg-3); padding: 100px 5%; }






.cases-container { max-width: 1400px; margin: 0 auto; }






.cases-header { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }






.cases-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(40px, 5vw, 64px); text-transform: uppercase; color: #fff; margin-bottom: 16px; }






.cases-title span { color: var(--orange); }






.cases-sub { font-size: 16px; color: var(--text-2); line-height: 1.6; }






.cases-filters {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 32px;
}






.cases-filter {
    background: transparent; border: 1px solid var(--line-2);
    color: var(--text-2); padding: 8px 18px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1.2px;
    text-transform: uppercase; cursor: pointer; transition: all .25s;
}






.cases-filter:hover { border-color: var(--orange); color: var(--text); }






.cases-filter.active { background: var(--orange); color: #000; border-color: var(--orange); }






.cases-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}






.case-card {
    background: var(--bg-2); border-radius: 20px; overflow: hidden;
    border: 1px solid var(--line);
    transition: all .3s; cursor: pointer;
    text-decoration: none; color: inherit; display: flex; flex-direction: column;
    opacity: 1; transform: none;
}






.case-card.in-view { transition: all .5s cubic-bezier(0.16, 1, 0.3, 1); }






.case-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }






.case-preview {
    aspect-ratio: 5/3; position: relative;
    overflow: hidden; background: #f0f0f0;
}






.case-preview img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform .5s;
}






.case-card:hover .case-preview img { transform: scale(1.05); }






.case-preview-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
    display: flex; align-items: flex-end;
    padding: 16px;
    opacity: 0; transition: opacity .3s;
}






.case-card:hover .case-preview-overlay { opacity: 1; }






.case-preview-view-pdf {
    color: #fff; font-family: 'Oswald', sans-serif; font-size: 12px;
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
}






.case-preview-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: rgba(31,32,38,0.9); backdrop-filter: blur(10px);
    color: var(--orange); padding: 4px 10px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid rgba(252,168,23,0.3);
}






.case-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }






.case-title-txt {
    font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700;
    color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px;
    line-height: 1.3; flex: 1;
}






.case-meta {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; color: var(--text-3);
    padding-top: 12px; border-top: 1px solid var(--line);
    text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}






.case-meta-arrow { margin-left: auto; color: var(--orange); font-size: 14px; }






.cases-more-btn {
    display: block; margin: 40px auto 0;
    background: transparent; border: 1px solid var(--line-2); color: var(--text);
    padding: 16px 40px; border-radius: 100px;
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 12px;
    letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all .25s;
}






.cases-more-btn:hover { border-color: var(--orange); color: var(--orange); }










.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; }
}










.team { background: linear-gradient(180deg, #faf5e8 0%, #fdf8ec 100%); padding: 78px 5%; }






.team-inner { max-width: 1280px; margin: 0 auto; }






.team-head { margin-bottom: 34px; }






.team-title {
    font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: clamp(26px, 3.2vw, 42px); text-transform: uppercase;
    color: #111; line-height: 1.15; margin-bottom: 10px;
}






.team-title span { color: var(--orange); }






.team-sub { font-size: 15px; color: #555; line-height: 1.6; max-width: 620px; }







.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }






.team-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px; padding: 28px 26px;
    min-height: 168px; display: flex; flex-direction: column; justify-content: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}






.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(0,0,0,0.08); border-color: rgba(252,168,23,0.4); }






.team-card-accent {
    background: linear-gradient(135deg, #22242c 0%, #1F2026 100%);
    border-color: transparent;
}






.team-card-accent:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.35); border-color: rgba(252,168,23,0.5); }






.team-role {
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 21px;
    color: #111; letter-spacing: 0.3px; margin-bottom: 12px; line-height: 1.2;
}






.team-card-accent .team-role { color: var(--orange); }






.team-card p { font-size: 14px; color: #555; line-height: 1.6; }






.team-card-accent p { color: rgba(255,255,255,0.75); }
@media (max-width: 1050px){





 .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px){





 .team { display: none; }
}








.faq-all-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }






.faq-all-btn {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    width: 100%; cursor: pointer; user-select: none;
    background: linear-gradient(135deg, rgba(252,168,23,0.14), rgba(252,168,23,0.06));
    border: 1.5px solid rgba(252,168,23,0.45);
    padding: 18px 26px; border-radius: 16px; margin-bottom: 4px;
    font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
    letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
    transition: background .25s, border-color .25s, box-shadow .25s;
}






.faq-all-btn:hover { background: linear-gradient(135deg, rgba(252,168,23,0.24), rgba(252,168,23,0.12)); border-color: var(--orange); box-shadow: 0 8px 26px rgba(252,168,23,0.2); }






.faq-all-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: 18px; font-weight: 700;
    animation: incArrowBlink 1.5s ease-in-out infinite; transition: transform .25s;
}






.faq-all-count { background: #1F2026; color: var(--orange); padding: 4px 12px; border-radius: 100px; font-size: 12px; letter-spacing: 1px; }






.faq-list { display: none; }






.faq-all-toggle:checked ~ .faq-list { display: flex; }






.faq-all-toggle:checked ~ .faq-all-btn { margin-bottom: 18px; }






.faq-all-toggle:checked ~ .faq-all-btn .faq-all-ico { transform: rotate(180deg); animation: none; }













.faq-all-toggle:checked ~ .faq-all-btn .faq-all-count { display: none; }







.faq { background: var(--bg); padding: 80px 5%; }






.faq-inner { max-width: 880px; margin: 0 auto; }






.faq-head { text-align: center; margin-bottom: 40px; }






.faq-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(28px, 3.4vw, 46px); text-transform: uppercase; color: #fff; margin-bottom: 12px; }






.faq-title span { color: var(--orange); }






.faq-sub { font-size: 15px; color: var(--text-2); }






.faq-list { flex-direction: column; gap: 10px; }






.faq-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .25s; }






.faq-item:hover { border-color: rgba(255,255,255,0.16); }






.faq-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }






.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 20px 24px; cursor: pointer; user-select: none;
}






.faq-q-txt { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 16px; color: #fff; letter-spacing: 0.3px; line-height: 1.35; }






.faq-q-ico {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(252,168,23,0.12); border: 1px solid rgba(252,168,23,0.3);
    color: var(--orange); font-size: 18px; font-weight: 700; line-height: 1;
    transition: transform .3s, background .25s;
}






.faq-q:hover .faq-q-ico { background: rgba(252,168,23,0.22); }






.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }






.faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--text-2); line-height: 1.7; }






.faq-toggle:checked ~ .faq-a { max-height: 340px; }






.faq-toggle:checked ~ .faq-q .faq-q-ico { transform: rotate(45deg); background: var(--orange); color: #000; border-color: var(--orange); }






.faq-toggle:checked ~ .faq-q .faq-q-txt { color: var(--orange); }








.final-cta { padding: 80px 5%; background: var(--bg); }






.final-cta-inner {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(135deg, #1a1b21 0%, #26272e 100%);
    border-radius: 32px; padding: 80px 60px;
    text-align: center; position: relative; overflow: hidden;
    border: 1px solid var(--line);
}






.final-cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(252,168,23,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(252,168,23,0.1) 0%, transparent 40%);
    pointer-events: none;
}






.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-cta-title { position: relative; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(40px, 5vw, 68px); text-transform: uppercase; color: var(--orange); margin-bottom: 20px; line-height: 1; }






.final-cta-p b { color: var(--orange); }






.final-cta-p { position: relative; font-size: 17px; color: var(--text-2); max-width: 860px; margin: 0 auto 40px; line-height: 1.6; }






.final-cta-btns { position: relative; display: flex; flex-direction: column; gap: 14px; max-width: 400px; margin: 0 auto; }






.final-cta-btns .btn-orange, .final-cta-btns .btn-outline { justify-content: center; padding: 20px 32px; }







.final-cta-form {
    position: relative; display: inline-flex; align-items: stretch; gap: 6px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--line-2);
    border-radius: 100px; padding: 6px; margin-bottom: 14px;
    transition: border-color .25s;
}






.final-cta-form:focus-within { border-color: var(--orange); }






.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); }






.final-cta-privacy { position: relative; font-size: 12px; color: var(--text-3); margin-bottom: 34px; }






.final-cta-privacy a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }






.final-cta-call {
    position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
    padding-top: 28px; border-top: 1px solid var(--line);
}






.final-cta-call-lbl {
    font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-3);
}






.final-cta-call-nums { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }






.final-cta-call-nums a {
    color: #fff; text-decoration: none;
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 22px;
    letter-spacing: 0.5px; transition: color .2s; white-space: nowrap;
}






.final-cta-call-nums a:hover { color: var(--orange); }
@media (max-width: 620px){






    .final-cta-form { flex-direction: column; border-radius: 20px; width: 100%; }






    .final-form-input { padding: 14px 20px; text-align: center; min-width: 0; }






    .final-cta-call-nums { flex-direction: column; gap: 10px; }
}









.final-cta-title span { color: var(--orange); }






.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; }






    .final-cta-inner { padding: 60px 24px; }






    .cases-grid { grid-template-columns: 1fr; }
}










.cases-prompt { display: none; }






.case-radio { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }






.cases-filter { user-select: none; display: inline-flex; align-items: center; gap: 7px; }






.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;
}






.cases-filter:hover .cf-n { background: rgba(252,168,23,0.2); color: var(--orange); }








#cat-landing:checked ~ .cases-grid .case-card:not([data-cat="landing"]),
#cat-ecom:checked    ~ .cases-grid .case-card:not([data-cat="ecom"]),
#cat-corp:checked    ~ .cases-grid .case-card:not([data-cat="corp"]) { display: none; }








#cat-all:checked     ~ .cases-filters .cases-filter[for="cat-all"],
#cat-landing:checked ~ .cases-filters .cases-filter[for="cat-landing"],
#cat-ecom:checked    ~ .cases-filters .cases-filter[for="cat-ecom"],
#cat-corp:checked    ~ .cases-filters .cases-filter[for="cat-corp"] {
    background: var(--orange); color: #000; border-color: var(--orange);
}






#cat-all:checked     ~ .cases-filters .cases-filter[for="cat-all"] .cf-n,
#cat-landing:checked ~ .cases-filters .cases-filter[for="cat-landing"] .cf-n,
#cat-ecom:checked    ~ .cases-filters .cases-filter[for="cat-ecom"] .cf-n,
#cat-corp:checked    ~ .cases-filters .cases-filter[for="cat-corp"] .cf-n {
    background: rgba(0,0,0,0.18); color: #000;
}









.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: 1000px){






    .pc-key-list, .pc-fit-row, .included-pills, .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){






    .pc-key-list, .pc-fit-row, .included-pills, .steps-grid { grid-template-columns: 1fr; }
}
@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; }







    
    .clients { padding: 44px 0 48px; }






    .clients-head { padding: 0 16px; margin-bottom: 24px; }






    .clients-title { font-size: 26px; }






    .clients-sub { font-size: 13px; }







    
    .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; }







    
    .cases { padding: 44px 16px; }






    .cases-title { font-size: 30px; }






    .cases-sub { font-size: 13px; }






    .cases-header { margin-bottom: 24px; }






    .cases-filters { gap: 6px; margin-bottom: 20px; }






    .cases-filter { font-size: 10px; padding: 7px 14px; }






    .cases-grid { gap: 16px; }






    .case-title-txt { font-size: 14px; }








    
    .cases-filters { gap: 8px; }






    .cases-filter { font-size: 11px; padding: 9px 14px; }







    
    .cases-grid { grid-template-columns: 1fr; gap: 10px; }






    .case-card { flex-direction: row; align-items: center; gap: 12px; padding: 10px; border-radius: 14px; }






    .case-preview { width: 104px; flex-shrink: 0; aspect-ratio: 5/3; border-radius: 10px; }






    .case-preview-overlay { display: none; }






    .case-preview-badge { font-size: 8px; padding: 2px 6px; top: 5px; left: 5px; }






    .case-body { padding: 0; flex: 1; min-width: 0; }






    .case-title-txt { font-size: 13px; line-height: 1.35; margin-bottom: 6px; }






    .case-meta { padding-top: 0; border-top: none; font-size: 10px; }









    
    .faq-all-btn { padding: 15px 20px; font-size: 13px; gap: 12px; border-radius: 14px; }






    .faq-all-ico { width: 30px; height: 30px; font-size: 16px; }






    .faq-all-count { padding: 3px 10px; font-size: 11px; }







    
    #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;
    }







    
    #cat-none:checked ~ .cases-grid { display: none; }






    #cat-none:checked ~ .cases-prompt { display: flex; }






    .cases-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: 8px;
        font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px;
        letter-spacing: 1.2px; text-transform: uppercase; color: #fff;
        text-align: center; line-height: 1.45;
    }






    .cases-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;
    }






    .cases-prompt-sub {
        display: inline-block; margin-top: 6px;
        font-size: 11px; font-weight: 400; letter-spacing: 1px;
        color: var(--orange); text-transform: uppercase;
    }






    @keyframes promptBounce {
        0%, 100% { transform: translateY(0); box-shadow: 0 4px 16px rgba(252,168,23,0.5), 0 0 0 0 rgba(252,168,23,0.45); }
        50%      { transform: translateY(-5px); }
        70%      { box-shadow: 0 4px 16px rgba(252,168,23,0.5), 0 0 0 12px rgba(252,168,23,0); }
    }







    
    .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; }






    .card-text { display: none; order: 4; width: 100%; margin: 4px 0 0; font-size: 13px; }






    .card-toggle:checked ~ .card-text { display: block; }






    .card-more {
        display: flex; align-items: center; justify-content: center;
        order: 3; width: 40px; height: 40px; flex-shrink: 0; cursor: pointer;
        background: var(--orange); border: none; border-radius: 50%; color: #000;
        box-shadow: 0 4px 14px rgba(252,168,23,0.45);
        animation: incArrowPulse 1.8s ease-in-out infinite;
        user-select: none;
    }






    .card-more-ico { font-size: 19px; font-weight: 700; color: #000; animation: incArrowBlink 1.5s ease-in-out infinite; transition: transform .25s; }






    .card-toggle:checked ~ .card-more { animation: none; background: transparent; border: 1.5px solid var(--orange); box-shadow: none; }






    .card-toggle:checked ~ .card-more .card-more-ico { animation: none; color: var(--orange); transform: rotate(180deg); }







    
    .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; }






    .marquee-2 { display: none; }






    .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; }







    .faq { padding: 44px 16px; }






    .faq-head { margin-bottom: 24px; }






    .faq-title { font-size: 26px; }






    .faq-sub { font-size: 13px; }






    .faq-q { padding: 16px 16px; gap: 12px; }






    .faq-q-txt { font-size: 14px; }






    .faq-q-ico { width: 27px; height: 27px; font-size: 16px; }






    .faq-a p { padding: 0 16px 18px; font-size: 13.5px; }






    .faq-toggle:checked ~ .faq-a { max-height: 460px; }







    
    .reviews { padding: 44px 16px; }






    .reviews-title { font-size: 28px; }






    .reviews-sub { font-size: 13px; }






    .reviews-top { margin-bottom: 24px; }






    .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; }







    
    .final-cta { padding: 44px 16px; }






    .final-cta-inner { padding: 38px 18px; border-radius: 22px; }






    .final-cta-title { font-size: 27px; }






    .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; }






    .final-cta-p b { color: #fff; font-weight: 600; }






.final-cta-p { font-size: 14px; margin-bottom: 26px; }






    .final-cta-call-nums a { font-size: 19px; }







    
    .pricing-tabs-hint { font-size: 10px; letter-spacing: 1px; margin-bottom: 16px; }






    .cases-more-btn { padding: 14px 26px; font-size: 11px; width: 100%; }






    .case-preview-badge { font-size: 9px; padding: 3px 8px; }






    .inc-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }






    .rev-dots { margin-top: 20px; }






    .marquee-track { animation-duration: 30s; }






    .client-item { height: 58px; min-width: 132px; padding: 0 16px; margin: 0 6px; }






    .client-item img { max-height: 32px; max-width: 108px; }






    .steps-grid { gap: 10px; }






    .step-item { padding: 13px; }






    .step-text { font-size: 12px; }






    .step-num { width: 30px; height: 30px; font-size: 13px; }
}
@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;
}
.pdfv.is-open { opacity: 1; visibility: visible; }
.pdfv-box {
    display: flex; flex-direction: column;
    width: 100%; max-width: 1080px; height: 100%; max-height: 92vh;
    background: var(--bg-2); border: 1px solid var(--line-2);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    transform: translateY(18px) scale(.985);
    transition: transform .32s cubic-bezier(0.16,1,0.3,1);
}
.pdfv.is-open .pdfv-box { transform: translateY(0) scale(1); }

.pdfv-head {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 14px 16px 14px 22px; flex-shrink: 0;
    background: var(--bg-3); border-bottom: 1px solid var(--line);
}
.pdfv-title {
    font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 15px;
    color: #fff; letter-spacing: 0.3px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pdfv-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pdfv-act {
    padding: 9px 16px; border-radius: 100px; text-decoration: none; white-space: nowrap;
    border: 1px solid var(--line-2); color: var(--text-2);
    font-family: 'Oswald', sans-serif; font-size: 11px;
    letter-spacing: 1.2px; text-transform: uppercase;
    transition: border-color .2s, color .2s, background .2s;
}
.pdfv-act:hover { border-color: var(--orange); color: var(--orange); }
.pdfv-act-dl { background: var(--orange); border-color: var(--orange); color: #000; font-weight: 700; }
.pdfv-act-dl:hover { background: var(--orange-2); border-color: var(--orange-2); color: #000; }
.pdfv-close {
    width: 38px; height: 38px; border-radius: 50%; cursor: pointer; flex-shrink: 0;
    background: rgba(255,255,255,0.06); border: 1px solid var(--line);
    color: var(--text-2); font-size: 21px; line-height: 1;
    transition: background .2s, color .2s;
}
.pdfv-close:hover { background: var(--orange); border-color: var(--orange); color: #000; }

.pdfv-body { position: relative; flex: 1; min-height: 0; background: #3a3b42; }
.pdfv-frame { width: 100%; height: 100%; border: 0; display: block; }
.pdfv-loading {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-3);
}
.pdfv.is-ready .pdfv-loading { display: none; }

@media (max-width: 900px) {
    .pdfv { padding: 12px; }
    .pdfv-box { max-height: 96vh; border-radius: 14px; }
    .pdfv-head { padding: 11px 11px 11px 16px; gap: 10px; }
    .pdfv-title { font-size: 13px; }
    .pdfv-act { padding: 8px 12px; font-size: 10px; }
    .pdfv-act:not(.pdfv-act-dl) { display: none; }
}
