:root {
    --black: #111114;
    --black-soft: #19191e;

    --white: #ffffff;
    --off-white: #f6f6f4;

    --purple: #5a4fdc;
    --purple-dark: #483fb0;
    --purple-light: #eeecff;

    --text: #17171a;
    --body: #55555d;
    --muted: #888890;

    --border: #e3e3e5;

    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Manrope", sans-serif;

    --container: 1400px;
}


/* =========================================================
   BASE
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--body);

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;

    line-height: 1.65;
}

.container {
    width: 100%;
    max-width: var(--container);

    margin: 0 auto;

    padding-left: 35px;
    padding-right: 35px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .25s ease;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    margin-top: 0;

    color: var(--text);

    font-family: var(--font-heading);
    font-weight: 700;

    letter-spacing: -.045em;
}

h1 {
    font-size: clamp(56px, 6vw, 92px);
    line-height: .97;
}

h2 {
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1;
}

h3 {
    font-size: 28px;
    line-height: 1.1;
}

p {
    margin-top: 0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    background: rgba(255,255,255,.94);

    border-bottom: 1px solid var(--border);
}

.p4l-navbar {
    min-height: 84px;
}

.p4l-logo {
    color: var(--black);

    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;

    letter-spacing: -.06em;
}

.p4l-logo span {
    color: var(--purple);
}

.p4l-navbar .nav-link {
    color: var(--text);

    font-size: 14px;
    font-weight: 700;
}

.p4l-navbar .nav-link:hover {
    color: var(--purple);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 46px;
    padding: 11px 23px;

    border: 1px solid transparent;
    border-radius: 4px;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;

    transition: .25s ease;
}

.btn-primary {
    background: var(--purple);
    color: #fff;
}

.btn-primary:hover {
    background: var(--purple-dark);
    color: #fff;

    transform: translateY(-2px);
}

.btn-dark {
    background: var(--black);
    color: #fff;
}

.btn-dark:hover {
    background: var(--purple);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--black);
}

.btn-white:hover {
    background: var(--purple-light);
    color: var(--black);
}

.btn-large {
    min-height: 57px;
    padding: 14px 28px;
}

.btn-nav {
    min-height: 42px;
    padding: 9px 19px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 95px 0 110px;
    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, .62fr);

    align-items: center;

    gap: 90px;
}

.hero-content {
    max-width: 850px;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    color: var(--purple);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--purple);
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 34px;
}

.hero h1 span {
    color: var(--purple);
}

.hero-description {
    max-width: 660px;

    color: var(--body);

    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 30px;

    margin-top: 40px;
}

.hero-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 14px;
    font-weight: 800;
}

.hero-link:hover {
    color: var(--purple);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 45px;

    margin-top: 65px;
    padding-top: 27px;

    border-top: 1px solid var(--border);
}

.hero-meta div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.hero-meta strong {
    color: var(--text);

    font-family: var(--font-heading);
    font-size: 25px;
}

.hero-meta span {
    color: var(--muted);

    font-size: 12px;
}


/* HERO PHOTO */

.hero-visual {
    position: relative;

    min-height: 700px;
}

.hero-photo-frame {
    position: absolute;

    top: 0;
    right: 0;

    width: min(100%, 570px);
    height: 660px;

    overflow: hidden;

    background: var(--off-white);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-floating-card {
    position: absolute;

    left: -65px;
    bottom: 70px;

    display: flex;
    flex-direction: column;

    min-width: 205px;

    padding: 22px;

    background: #fff;

    border: 1px solid var(--border);

    box-shadow: 0 20px 60px rgba(0,0,0,.11);
}

.floating-label {
    color: var(--muted);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero-floating-card strong {
    margin-top: 7px;

    color: var(--purple);

    font-family: var(--font-heading);
    font-size: 36px;
}

.hero-floating-card > span:last-child {
    color: var(--body);
    font-size: 11px;
}

.hero-number {
    position: absolute;

    right: -30px;
    bottom: -5px;

    color: var(--purple-light);

    font-family: var(--font-heading);
    font-size: 160px;
    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   POSITIONING
========================================================= */

.positioning {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.positioning-inner {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: var(--muted);

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.positioning-inner i {
    width: 5px;
    height: 5px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--border);
}

.positioning-highlight {
    color: var(--purple);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 135px 0;
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--black);
}

.section-number {
    display: block;

    margin-bottom: 26px;

    color: var(--purple);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .14em;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 75px;
}

.section-top h2 {
    margin-bottom: 0;
}

.section-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 6px;

    border-bottom: 1px solid var(--text);

    color: var(--text);

    font-size: 13px;
    font-weight: 800;
}

.section-link:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.section-intro {
    max-width: 440px;

    margin: 0;

    color: var(--body);

    font-size: 15px;
}


/* =========================================================
   CASES
========================================================= */

.cases-list {
    display: flex;
    flex-direction: column;

    gap: 35px;
}

.case-large {
    display: grid;

    grid-template-columns: 1.08fr .92fr;

    min-height: 560px;

    background: var(--off-white);

    transition: .3s ease;
}

.case-large:hover {
    transform: translateY(-4px);
}

.case-reverse {
    grid-template-columns: .92fr 1.08fr;
}

.case-reverse .case-image {
    order: 2;
}

.case-reverse .case-content {
    order: 1;
}

.case-image {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    background: #e7e7e7;
}

.case-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.case-large:hover .case-image img {
    transform: scale(1.025);
}

.case-index {
    position: absolute;

    top: 28px;
    left: 30px;

    color: #fff;

    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.case-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 65px;
}

.case-category {
    margin-bottom: 30px;

    color: var(--purple);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.case-content h3 {
    max-width: 600px;

    margin-bottom: 23px;

    font-size: clamp(34px, 3vw, 52px);
}

.case-content p {
    max-width: 570px;

    color: var(--body);
    font-size: 16px;
}

.case-result {
    display: flex;
    align-items: baseline;

    gap: 13px;

    margin-top: auto;
    padding-top: 45px;
}

.case-result strong {
    color: var(--purple);

    font-family: var(--font-heading);
    font-size: 62px;

    line-height: 1;
}

.case-result span {
    color: var(--muted);
    font-size: 13px;
}

.case-more {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 35px;

    color: var(--text);

    font-size: 13px;
    font-weight: 800;
}

.case-more i {
    color: var(--purple);
}

.cases-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.cases-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.cases-cta-secondary:hover {
    color: #aaa3ff;
    border-color: #aaa3ff;
}


/* =========================================================
   SERVICES
========================================================= */

.section-dark h2 {
    color: #fff;
}

.section-top.light .section-number {
    color: #9d95ff;
}

.services-grid {
    border-top: 1px solid rgba(255,255,255,.14);
}

.service-item {
    display: grid;

    grid-template-columns: 100px 1fr 50px;

    align-items: start;

    gap: 35px;

    padding: 45px 0;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.service-number {
    color: #77777f;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.service-item h3 {
    margin-bottom: 12px;

    color: #fff;

    font-size: 36px;
}

.service-item p {
    max-width: 700px;

    margin-bottom: 0;

    color: #9999a1;
}

.service-item > i {
    color: #fff;

    font-size: 22px;

    transition: .25s ease;
}

.service-item:hover h3 {
    color: #aaa3ff;
}

.service-item:hover > i {
    color: #aaa3ff;

    transform: translate(4px, -4px);
}


/* =========================================================
   APPROACH
========================================================= */

.approach-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 120px;
}

.approach-title h2 {
    margin-bottom: 32px;
}

.approach-title h2 span {
    color: var(--purple);
}

.approach-title p {
    max-width: 500px;

    color: var(--body);

    font-size: 17px;
}

.approach-steps {
    border-top: 1px solid var(--border);
}

.approach-step {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 30px 0;

    border-bottom: 1px solid var(--border);
}

.approach-step > span {
    color: var(--purple);

    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.approach-step h3 {
    margin-bottom: 8px;
    font-size: 26px;
}

.approach-step p {
    max-width: 600px;

    margin-bottom: 0;

    color: var(--body);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: .82fr 1.18fr;

    align-items: center;

    gap: 120px;
}

.about-image {
    position: relative;

    height: 650px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-content h2 {
    margin-bottom: 35px;
}

.about-content h2 span {
    color: var(--purple);
}

.about-content p {
    max-width: 650px;

    color: var(--body);

    font-size: 16px;
}

.about-content .about-lead {
    margin-bottom: 27px;

    color: var(--text);

    font-size: 21px;
    line-height: 1.6;
}


/* =========================================================
   PRICING
========================================================= */

.pricing {
    background: var(--white);
}

.pricing-grid {
    border-top: 1px solid var(--border);
}

.price-item {
    display: grid;

    grid-template-columns: 100px 1fr 300px;

    align-items: center;

    gap: 40px;

    min-height: 190px;

    padding: 35px 0;

    border-bottom: 1px solid var(--border);
}

.price-number {
    color: var(--muted);

    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
}

.price-main h3 {
    margin-bottom: 12px;

    color: var(--text);

    font-size: 34px;
}

.price-main p {
    max-width: 650px;

    margin: 0;

    color: var(--body);

    font-size: 14px;
}

.price-value {
    display: flex;
    flex-direction: column;

    align-items: flex-end;
}

.price-value strong {
    color: var(--purple);

    font-family: var(--font-heading);
    font-size: 32px;

    line-height: 1.1;
}

.price-value span {
    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;
}

.price-featured {
    position: relative;

    padding-left: 25px;
    padding-right: 25px;

    background: var(--off-white);

    border-left: 3px solid var(--purple);
}

.price-badge {
    display: inline-block;

    margin-bottom: 12px;
    padding: 4px 9px;

    background: var(--purple-light);

    color: var(--purple);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.price-featured .price-main h3 {
    margin-bottom: 10px;
}

.pricing-note {
    max-width: 850px;

    margin: 25px 0 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    background: var(--off-white);
}

.faq-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 120px;
}

.faq-title h2 {
    margin-bottom: 30px;
}

.faq-title p {
    max-width: 350px;

    color: var(--body);

    font-size: 15px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 27px 0;

    cursor: pointer;

    list-style: none;

    color: var(--text);

    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    flex: 0 0 auto;

    color: var(--purple);

    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;

    transition: .25s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 750px;

    padding: 0 45px 28px 0;
}

.faq-answer p {
    margin: 0;

    color: var(--body);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    background: var(--purple);
    color: #fff;
}
.final-cta-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: center;
    padding: 135px 0;
}
.final-cta-content .section-number {
    color: rgba(255,255,255,.65);
}
.final-cta-content h2 {
    max-width: 1000px;
    margin-bottom: 32px;
    color: #fff;
}
.final-cta-content h2 span {
    color: #c9c5ff;
}
.final-cta-content p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}
.final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 42px;
}

/* Карточка аудита справа */
.final-cta-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    padding: 45px;
    backdrop-filter: blur(10px);
}
.final-cta-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    margin-bottom: 28px;
}
.final-cta-card-icon i {
    font-size: 28px;
    color: #fff;
}
.final-cta-card h4 {
    margin: 0 0 24px 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.final-cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}
.final-cta-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.5;
}
.final-cta-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9c5ff;
}
.final-cta-card-time {
    display: block;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 600;
}




/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 75px 0 25px;

    background: var(--black);

    color: #8c8c94;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    align-items: flex-start;
}

.footer-brand p {
    max-width: 390px;

    margin-top: 25px;

    font-size: 13px;
    line-height: 1.7;
}

.footer-brand .p4l-logo {
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-title {
    margin-bottom: 12px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.footer-column a {
    font-size: 13px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column i {
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 65px;
    padding-top: 23px;

    border-top: 1px solid rgba(255,255,255,.1);

    font-size: 11px;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-legal {
    display: inline-flex;
    gap: 24px;
}

/* =========================================================
SITE CONTACTS (блок перед футером)
========================================================= */
.site-contacts {
    padding: 135px 0;
}
.site-contacts-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.site-contacts-content h2 {
    margin-bottom: 22px;
    color: #fff;
}
.site-contacts-content h2 span {
    color: #aaa3ff;
}
.site-contacts-content p {
    max-width: 420px;
    margin-bottom: 0;
    color: #9999a1;
    font-size: 16px;
}
.site-contacts .section-number {
    color: #9d95ff;
}
.site-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.site-contact-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    transition: .25s ease;
}
.site-contact-item:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--purple);
    transform: translateY(-2px);
}
.site-contact-item i {
    font-size: 28px;
    color: var(--purple);
    flex: 0 0 auto;
}
.site-contact-label {
    display: block;
    color: #77777f;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 4px;
}
.site-contact-value {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

/* =========================================================
INNER PAGE HERO + LEGAL
========================================================= */
.page-hero {
    padding: 75px 0 65px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.breadcrumbs a:hover {
    color: var(--purple);
}
.breadcrumbs i {
    font-size: 10px;
    color: var(--muted);
}
.breadcrumbs span {
    color: var(--text);
}
.page-hero h1 {
    max-width: 950px;
    margin-bottom: 0;
    font-size: clamp(40px, 4.6vw, 68px);
}
.legal-body {
    padding: 85px 0 130px;
}
.legal-content {
    max-width: 880px;
}
.legal-content h2 {
    margin: 60px 0 22px;
    font-size: 26px;
    letter-spacing: -.03em;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p,
.legal-content li {
    margin-bottom: 14px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.75;
}
.legal-content ul {
    margin: 0 0 18px;
    padding-left: 20px;
}
.legal-content a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover {
    color: var(--purple-dark);
}

/* =========================================================
AUDIT LANDING
========================================================= */
.audit-hero {
    padding: 85px 0 95px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}
.audit-hero-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 90px;
    align-items: center;
}
.audit-hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(44px, 4.8vw, 76px);
}
.audit-hero h1 span {
    color: var(--purple);
}
.audit-hero-lead {
    max-width: 640px;
    margin-bottom: 32px;
    color: var(--body);
    font-size: 18px;
}
.audit-hero-points {
    list-style: none;
    margin: 0 0 38px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.audit-hero-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}
.audit-hero-points i {
    color: var(--purple);
    font-size: 18px;
    margin-top: 2px;
}
.audit-hero .hero-meta {
    margin-top: 55px;
}
.audit-hero-card {
    padding: 45px;
    background: var(--black);
}
.audit-hero-card .card-sub {
    display: block;
    margin-bottom: 10px;
    color: #77777f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.audit-hero-card h3 {
    margin-bottom: 26px;
    color: #fff;
    font-size: 24px;
}
.audit-hero-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.audit-hero-card li {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: #b9b9c2;
    font-size: 14px;
}
.audit-hero-card li:last-child {
    border-bottom: 0;
}
.audit-hero-card li i {
    color: #9d95ff;
    font-size: 16px;
    margin-top: 3px;
}
.audit-hero-card .card-note {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #77777f;
    font-size: 12px;
    line-height: 1.6;
}
/* CHECKLIST */
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
}
.check-item {
    display: flex;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.check-item i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--purple);
    font-size: 20px;
}
.check-item h3 {
    margin-bottom: 6px;
    font-size: 19px;
    letter-spacing: -.02em;
}
.check-item p {
    margin: 0;
    color: var(--body);
    font-size: 14px;
}
/* FIT / NO FIT */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}
.fit-card {
    padding: 45px;
    background: #fff;
    border: 1px solid var(--border);
}
.fit-card.no {
    background: var(--off-white);
}
.fit-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 24px;
}
.fit-card h3 i {
    color: var(--purple);
    font-size: 22px;
}
.fit-card.no h3 i {
    color: var(--muted);
}
.fit-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fit-card li {
    position: relative;
    padding-left: 26px;
    color: var(--body);
    font-size: 15px;
}
.fit-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
}
.fit-card.no li::before {
    background: var(--muted);
}
/* PROOF (dark) */
.audit-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.audit-proof-item strong {
    display: block;
    color: #aaa3ff;
    font-family: var(--font-heading);
    font-size: clamp(48px, 4vw, 68px);
    line-height: 1;
}
.audit-proof-item span {
    display: block;
    margin-top: 10px;
    color: #9999a1;
    font-size: 14px;
}
.audit-proof-item p {
    margin: 14px 0 0;
    color: #77777f;
    font-size: 13px;
}
/* LEAD FORM */
.audit-form-section {
    padding: 110px 0;
    background: var(--off-white);
}
.audit-form-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: start;
}
.audit-form-title h2 {
    margin-bottom: 28px;
}
.audit-form-title p {
    max-width: 430px;
    color: var(--body);
    font-size: 16px;
}
.audit-form-note {
    margin-top: 30px;
    padding: 22px 26px;
    background: #fff;
    border-left: 3px solid var(--purple);
    color: var(--body);
    font-size: 13px;
    line-height: 1.7;
}
.audit-form-card {
    padding: 50px;
    background: #fff;
    border: 1px solid var(--border);
}
.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-field.full {
    grid-column: 1 / -1;
}
.form-field label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.form-field input,
.form-field textarea {
    padding: 15px 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: #fff;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: .25s ease;
}
.form-field textarea {
    min-height: 110px;
    resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-light);
}
.form-field.field-error input {
    border-color: #d64545;
}
.form-alert {
    grid-column: 1 / -1;
    padding: 14px 18px;
    background: #fdecec;
    border: 1px solid #f3c1c1;
    border-radius: 4px;
    color: #a33333;
    font-size: 13px;
    font-weight: 600;
}
.form-consent {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--body);
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}
.form-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--purple);
}
.form-consent.field-error {
    color: #a33333;
}
.form-consent a {
    color: var(--purple);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hp-wrap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-submit-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 6px;
}
.form-hint {
    max-width: 320px;
    color: var(--muted);
    font-size: 12px;
}

/* SUCCESS-блок внутри формы */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 380px;
    padding: 40px 30px;
}
.form-success i {
    color: var(--purple);
    font-size: 56px;
    margin-bottom: 24px;
}
.form-success h3 {
    margin-bottom: 14px;
    font-size: 28px;
}
.form-success p {
    max-width: 460px;
    margin: 0 auto 26px;
    color: var(--body);
    font-size: 15px;
    line-height: 1.7;
}
.form-countdown {
    padding: 12px 22px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.form-countdown strong {
    color: var(--purple);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

/* =========================================================
ACCESS PAGE
========================================================= */
.access-success {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 55px;
    padding: 22px 26px;
    background: var(--purple-light);
    border: 1px solid #d8d3ff;
    border-radius: 4px;
    color: var(--purple-dark);
    font-size: 15px;
    font-weight: 600;
}
.access-success i {
    margin-top: 1px;
    font-size: 20px;
}
.access-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 90px;
    align-items: start;
}
.access-steps {
    border-top: 1px solid var(--border);
}
.access-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.access-step-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    color: var(--purple);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}
.access-step h3 {
    margin-bottom: 10px;
    font-size: 22px;
}
.access-step p {
    margin-bottom: 12px;
    color: var(--body);
    font-size: 15px;
}
.access-step ul {
    margin: 0;
    padding-left: 18px;
    color: var(--body);
    font-size: 14px;
}
.access-step li {
    margin-bottom: 6px;
}
.access-step strong {
    color: var(--text);
}
.access-aside {
    position: sticky;
    top: 110px;
    padding: 40px;
    background: var(--black);
}
.access-aside h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 22px;
}
.access-aside ul {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.access-aside li {
    display: flex;
    gap: 11px;
    color: #b9b9c2;
    font-size: 13px;
}
.access-aside li i {
    margin-top: 2px;
    color: #9d95ff;
}
.access-aside p {
    color: #9999a1;
    font-size: 14px;
}
.access-next {
    padding: 95px 0 120px;
    background: var(--off-white);
}
/* Скриншоты-подсказки в инструкции доступов */
.access-shot {
    margin: 26px 0 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
}
.access-shot img {
    width: 100%;
    height: auto;
}
.access-shot figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

/* =========================================================
CASES LIST PAGE
========================================================= */
.cases-hero-lead {
    max-width: 640px;
    margin: 26px 0 0;
    color: var(--body);
    font-size: 18px;
}
.cases-hero-meta {
    margin-top: 45px;
}
.cases-page {
    padding: 85px 0 135px;
}
.cases-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 55px;
}
.cases-filter button {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: #fff;
    color: var(--body);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}
.cases-filter button:hover {
    border-color: var(--text);
    color: var(--text);
}
.cases-filter button.active {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.case-card {
    display: flex;
    flex-direction: column;
    background: var(--off-white);
    transition: .3s ease;
}
.case-card:hover {
    transform: translateY(-4px);
}
.case-card.is-hidden {
    display: none;
}
.case-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #e7e7e7;
}
.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}
.case-card:hover .case-card-image img {
    transform: scale(1.04);
}
.case-card .case-index {
    top: 18px;
    left: 20px;
}
.case-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 35px;
}
.case-card .case-category {
    margin-bottom: 18px;
}
.case-card-body h3 {
    margin-bottom: 12px;
    font-size: 26px;
}
.case-card-body p {
    margin-bottom: 0;
    color: var(--body);
    font-size: 14px;
}
.case-card-result {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
}
.case-card-result strong {
    color: var(--purple);
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1;
}
.case-card-result span {
    color: var(--muted);
    font-size: 12px;
}
.case-card .case-more {
    margin-top: 22px;
}
/* CTA-полоса после витрины */
.cases-cta {
    padding: 95px 0;
    background: var(--black);
    text-align: center;
}
.cases-cta .section-number {
    color: #9d95ff;
}
.cases-cta h2 {
    margin-bottom: 22px;
    color: #fff;
}
.cases-cta p {
    max-width: 560px;
    margin: 0 auto 40px;
    color: #9999a1;
    font-size: 16px;
}
/* =========================================================
CASE DETAIL (заготовка)
========================================================= */
.case-detail-body {
    padding: 85px 0 130px;
}
.case-detail-result {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    padding: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.case-detail-result strong {
    color: var(--purple);
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1;
}
.case-detail-result span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}
.case-detail-image {
    margin-bottom: 60px;
}
.case-detail-image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}
.case-detail-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 70px;
}
.case-period {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.case-period i {
    color: var(--purple);
}
.case-metrics-section {
    border-bottom: 1px solid var(--border);
}
.case-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 45px 0;
}
.case-metrics div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.case-metrics strong {
    color: var(--purple);
    font-family: var(--font-heading);
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1;
}
.case-metrics span {
    color: var(--muted);
    font-size: 13px;
}
.case-detail-body {
    padding: 85px 0 130px;
}
.case-detail-image {
    margin-bottom: 70px;
}
.case-detail-image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}
.case-block {
    max-width: 980px;
    margin-bottom: 75px;
}
.case-block h2 {
    margin-bottom: 26px;
    font-size: clamp(32px, 3.2vw, 50px);
}
.case-block p {
    color: var(--body);
    font-size: 16px;
}
.case-table-wrap {
    overflow-x: auto;
}
.case-table {
    width: 100%;
    min-width: 760px;
    border: 1px solid var(--border);
    border-collapse: collapse;
    background: #fff;
}
.case-table th {
    padding: 14px 20px;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: left;
}
.case-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--body);
    font-size: 15px;
}
.case-table td:first-child {
    color: var(--text);
    font-weight: 700;
}
.case-table tr:last-child td {
    border-bottom: 0;
}
.case-table tr.total td {
    background: var(--off-white);
    color: var(--text);
    font-weight: 700;
}
.case-takeaway {
    max-width: 980px;
    padding: 40px 45px;
    background: var(--off-white);
    border-left: 3px solid var(--purple);
}
.case-takeaway p {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
}
.case-detail-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}
.case-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.case-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
/* =========================================================
SERVICES HUB + SERVICE PAGES
========================================================= */
.services-hub {
    padding: 85px 0 135px;
}
.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.service-hub-item {
    display: flex;
    flex-direction: column;
    padding: 45px;
    background: var(--off-white);
    transition: .3s ease;
}
.service-hub-item:hover {
    transform: translateY(-4px);
}
.service-hub-number {
    margin-bottom: 28px;
    color: #77777f;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}
.service-hub-item h3 {
    margin-bottom: 12px;
    font-size: 30px;
}
.service-hub-item p {
    margin-bottom: 30px;
    color: var(--body);
    font-size: 14px;
}
.service-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.service-hub-link i {
    color: var(--purple);
}
.service-hub-item:hover .service-hub-link {
    color: var(--purple);
}
.service-section {
    padding: 95px 0;
}
.service-cases {
    padding: 95px 0 135px;
    border-top: 1px solid var(--border);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    :root {
        --container: 1180px;
    }

    .hero-grid {
        gap: 60px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(420px, .65fr);
    }

    .approach-grid,
    .about-grid,
    .faq-grid {
        gap: 75px;
    }

}


@media (max-width: 991px) {

    .p4l-navbar {
        min-height: 72px;
    }

    .hero {
        padding: 65px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 850px;
    }

    .hero-visual {
        width: min(100%, 600px);

        min-height: 650px;

        margin: 20px auto 0;
    }

    .hero-photo-frame {
        width: 100%;
        height: 620px;
    }

    .hero-floating-card {
        left: -15px;
    }

    .section {
        padding: 95px 0;
    }

    .case-large,
    .case-reverse {
        grid-template-columns: 1fr;
    }

    .case-reverse .case-image,
    .case-reverse .case-content {
        order: initial;
    }

    .case-image {
        min-height: 430px;
    }

    .case-content {
        min-height: 450px;
    }

    .approach-grid,
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 95px 0;
    }
    .final-cta-card {
        padding: 35px;
    }

    .about-image {
        height: 560px;
        max-width: 650px;
    }

    .price-item {
        grid-template-columns: 60px 1fr 220px;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 50px;
    }
    .footer-brand {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .footer-column {
        flex: 1 1 calc(50% - 25px);
    }

    .site-contacts-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .site-contacts {
        padding: 95px 0;
    }

    .audit-hero-grid,
    .audit-form-grid,
    .access-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .check-grid,
    .fit-grid {
        grid-template-columns: 1fr;
    }
    .audit-proof-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .access-aside {
        position: static;
    }
    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cases-page {
        padding: 65px 0 95px;
    }
    .case-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .services-hub-grid {
        grid-template-columns: 1fr;
    }
    .services-hub {
        padding: 65px 0 95px;
    }
    .service-section {
        padding: 70px 0;
    }
    .service-cases {
        padding: 70px 0 95px;
    }

}


@media (max-width: 767px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: clamp(46px, 13vw, 68px);
    }

    h2 {
        font-size: 43px;
    }

    .hero {
        padding: 50px 0 65px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-meta {
        gap: 25px;
        margin-top: 45px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-photo-frame {
        height: 480px;
    }

    .hero-number {
        font-size: 100px;
    }

    .positioning-inner {
        min-height: auto;

        justify-content: center;
        flex-wrap: wrap;

        padding: 25px 0;
    }

    .positioning-inner i {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-top {
        align-items: flex-start;
        flex-direction: column;

        margin-bottom: 50px;
    }

    .case-image {
        min-height: 310px;
    }

    .case-content {
        min-height: auto;

        padding: 38px 28px;
    }

    .case-result {
        margin-top: 35px;
    }

    .case-result strong {
        font-size: 50px;
    }

    .service-item {
        grid-template-columns: 42px 1fr 25px;

        gap: 12px;

        padding: 32px 0;
    }

    .service-item h3 {
        font-size: 28px;
    }

    .service-item p {
        font-size: 14px;
    }

    .approach-step {
        grid-template-columns: 40px 1fr;

        gap: 15px;
    }

    .about-image {
        height: 450px;
    }

    .about-content .about-lead {
        font-size: 18px;
    }


    /* PRICING */

    .price-item {
        grid-template-columns: 40px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .price-main h3 {
        font-size: 28px;
    }

    .price-value {
        grid-column: 2;

        align-items: flex-start;

        margin-top: 5px;
    }

    .price-value strong {
        font-size: 28px;
    }

    .price-featured {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* FAQ */

    .faq-grid {
        gap: 45px;
    }

    .faq-item summary {
        font-size: 17px;
    }

    .faq-answer {
        padding-right: 20px;
    }


    /* CTA */

    .final-cta-inner {
        padding: 90px 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    .footer-column {
        flex: 1 1 100%;
    }
    .footer-bottom {
        flex-direction: column;
    }

    .site-contacts {
        padding: 80px 0;
    }

    .site-contact-item {
        padding: 22px 24px;
    }
    .site-contact-value {
        font-size: 17px;
    }
        .final-cta-inner {
        padding: 80px 0;
    }
    .final-cta-card {
        padding: 28px;
    }
    .final-cta-card h4 {
        font-size: 22px;
    }

    .page-hero {
     padding: 50px 0 45px;
    }
    .breadcrumbs {
        margin-bottom: 24px;
    }
    .legal-body {
        padding: 60px 0 85px;
    }
    .legal-content h2 {
        margin: 42px 0 16px;
        font-size: 22px;
    }

        .audit-hero {
        padding: 55px 0 65px;
    }
    .audit-hero-card,
    .fit-card,
    .audit-form-card {
        padding: 30px 26px;
    }
    .audit-form-section {
        padding: 80px 0;
    }
    .lead-form {
        grid-template-columns: 1fr;
    }
    .access-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .access-next {
        padding: 70px 0 85px;
    }
    .access-shot {
        margin-top: 20px;
        padding: 8px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
    .cases-page {
        padding: 50px 0 80px;
    }
    .cases-filter {
        margin-bottom: 35px;
    }
    .cases-cta {
        padding: 70px 0;
    }
    .case-detail-body {
        padding: 60px 0 85px;
    }
    .case-detail-result strong {
        font-size: 44px;
    }
    .case-detail-body {
        padding: 60px 0 85px;
    }
    .case-block {
        margin-bottom: 55px;
    }
    .case-takeaway {
        padding: 28px;
    }
    .case-takeaway p {
        font-size: 17px;
    }
    .case-detail-nav {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-photo-frame {
        height: 410px;
    }

    .hero-floating-card {
        left: 10px;
        bottom: 20px;
    }

    .hero-number {
        display: none;
    }

    .hero-meta {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .hero-meta div:last-child {
        grid-column: 1 / -1;
    }

    .final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .final-actions .btn {
        width: 100%;
    }

    .cases-cta-actions {
        flex-direction: column;
        gap: 20px;
    }

}