/* BWClients Partners — Luxury Fintech Aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --p-dark: #07070c;
    --p-dark-2: #0d0d14;
    --p-dark-3: #14141e;
    --p-surface: #1a1a28;
    --p-surface-glass: rgba(26,26,40,.65);
    --p-border: rgba(255,255,255,.06);
    --p-border-hover: rgba(0,212,170,.25);
    --p-text: #e4e6ea;
    --p-text-secondary: #8b919c;
    --p-text-muted: #4e5562;
    --p-accent: #00d4aa;
    --p-accent-glow: rgba(0,212,170,.12);
    --p-accent-dark: #00b894;
    --p-accent-soft: rgba(0,212,170,.06);
    --p-white: #fff;
    --p-light-bg: #f5f6f8;
    --p-light-text: #111827;
    --p-light-secondary: #5b6577;
    --p-radius: 18px;
    --p-radius-sm: 12px;
    --p-font-display: 'Bricolage Grotesque', Georgia, serif;
    --p-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--p-font-body);
    background: var(--p-dark);
    color: var(--p-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.p-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ═══════════════════════════════
   NOISE TEXTURE OVERLAY
   ═══════════════════════════════ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .028;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════
   HEADER
   ═══════════════════════════════ */
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .4s, backdrop-filter .4s, padding .4s;
}
.p-header--scrolled {
    background: rgba(7,7,12,.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--p-border);
    padding: 12px 0;
}
.p-header .p-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--p-white);
    font-family: var(--p-font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}
.p-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.p-nav-link {
    padding: 9px 20px;
    color: var(--p-text-secondary);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    border-radius: 10px;
    transition: color .2s, background .2s;
}
.p-nav-link:hover { color: var(--p-white); }
.p-nav-link--cta {
    background: var(--p-accent);
    color: var(--p-dark);
    font-weight: 600;
}
.p-nav-link--cta:hover { background: var(--p-accent-dark); color: var(--p-dark); }

/* ═══════════════════════════════
   HERO — editorial asymmetric
   ═══════════════════════════════ */
.p-hero {
    position: relative;
    padding: 170px 0 110px;
    text-align: center;
    overflow: hidden;
}

/* Animated gradient orbs */
.p-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 55%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse at center, rgba(0,212,170,.1) 0%, rgba(0,212,170,.03) 40%, transparent 70%);
    animation: orbFloat 12s ease-in-out infinite alternate;
    pointer-events: none;
}
.p-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0,100,212,.06) 0%, transparent 70%);
    animation: orbFloat 15s ease-in-out 3s infinite alternate-reverse;
    pointer-events: none;
}

.p-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px 7px 10px;
    background: var(--p-surface-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--p-border);
    border-radius: 100px;
    font-size: .8125rem;
    color: var(--p-accent);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeUp .7s cubic-bezier(.22,1,.36,1);
}
.p-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--p-accent);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0,212,170,.5);
}
.p-hero h1 {
    font-family: var(--p-font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .1s both;
}
.p-hero h1 span {
    background: linear-gradient(135deg, var(--p-accent) 0%, #00f5c8 50%, #00b8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.p-hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--p-text-secondary);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .2s both;
}
.p-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 40px;
    background: var(--p-accent);
    color: var(--p-dark);
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: var(--p-font-display);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .3s both;
    position: relative;
}
.p-hero__cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--p-accent), #00f5c8, #00b8ff);
    z-index: -1;
    opacity: 0;
    transition: opacity .3s;
    filter: blur(12px);
}
.p-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,212,170,.35);
}
.p-hero__cta:hover::after { opacity: .5; }

.p-hero__stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 72px;
    animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .45s both;
}
.p-hero__stat-value {
    font-family: var(--p-font-display);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--p-white);
    display: block;
    letter-spacing: -0.02em;
}
.p-hero__stat-label {
    font-size: .8125rem;
    color: var(--p-text-muted);
    font-weight: 400;
    margin-top: 2px;
}

/* Geometric accent line between hero & content */
.p-hero + .p-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--p-accent) 30%, rgba(0,184,255,.4) 70%, transparent 95%);
    opacity: .35;
}

/* ═══════════════════════════════
   SECTIONS
   ═══════════════════════════════ */
.p-section {
    position: relative;
    padding: 104px 0;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.p-section.visible {
    opacity: 1;
    transform: none;
}
.p-section--light {
    background: var(--p-light-bg);
    color: var(--p-light-text);
}
.p-section--dark {
    background: var(--p-dark-2);
}
.p-section__header {
    text-align: center;
    margin-bottom: 60px;
}
.p-section__title {
    font-family: var(--p-font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    line-height: 1.15;
}
.p-section__sub {
    font-size: 1rem;
    color: var(--p-text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.p-section--light .p-section__sub { color: var(--p-light-secondary); }

/* ═══════════════════════════════
   STEPS — glass cards with connecting line
   ═══════════════════════════════ */
.p-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
/* Connecting line behind steps */
.p-steps::before {
    content: '';
    position: absolute;
    top: 56px;
    left: calc(16.67% + 12px);
    right: calc(16.67% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--p-accent), rgba(0,184,255,.4), var(--p-accent));
    opacity: .2;
    z-index: 0;
}
.p-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 44px 28px 36px;
    background: var(--p-white);
    border-radius: var(--p-radius);
    box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 8px 32px rgba(0,0,0,.03);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.p-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.p-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--p-accent), #00f5c8);
    color: var(--p-dark);
    font-family: var(--p-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 15px;
    margin-bottom: 22px;
}
.p-step__title {
    font-family: var(--p-font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--p-light-text);
    letter-spacing: -0.01em;
}
.p-step__text {
    font-size: .9rem;
    color: var(--p-light-secondary);
    line-height: 1.65;
}

/* ═══════════════════════════════
   LEVELS — glass morphism cards
   ═══════════════════════════════ */
.p-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.p-level {
    padding: 44px 36px;
    border-radius: var(--p-radius);
    border: 1px solid var(--p-border);
    background: var(--p-surface-glass);
    backdrop-filter: blur(16px);
    transition: border-color .35s, transform .35s cubic-bezier(.22,1,.36,1);
}
.p-level:hover { border-color: var(--p-border-hover); transform: translateY(-4px); }
.p-level--featured {
    background: linear-gradient(160deg, rgba(0,212,170,.1) 0%, rgba(0,212,170,.02) 60%, rgba(0,100,255,.03) 100%);
    border-color: rgba(0,212,170,.25);
    position: relative;
    transform: scale(1.02);
}
.p-level--featured:hover { transform: scale(1.02) translateY(-4px); }
.p-level--featured::before {
    content: 'Популярный';
    position: absolute;
    top: -13px;
    left: 36px;
    padding: 5px 16px;
    background: linear-gradient(135deg, var(--p-accent), #00f5c8);
    color: var(--p-dark);
    font-family: var(--p-font-display);
    font-size: .75rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.p-level__title {
    font-family: var(--p-font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.p-level__desc {
    font-size: .875rem;
    color: var(--p-text-secondary);
    margin-bottom: 28px;
}
.p-level__list {
    list-style: none;
    margin-bottom: 32px;
}
.p-level__list li {
    padding: 9px 0;
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--p-text-secondary);
}
.p-level__list li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--p-accent);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 9L7.5 12.75L14.25 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 9L7.5 12.75L14.25 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.p-level__btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: var(--p-radius-sm);
    font-family: var(--p-font-display);
    font-weight: 600;
    font-size: .9375rem;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
}
.p-level__btn--outline {
    background: transparent;
    border: 1.5px solid var(--p-border);
    color: var(--p-text);
}
.p-level__btn--outline:hover { border-color: var(--p-accent); color: var(--p-accent); }
.p-level__btn--primary {
    background: linear-gradient(135deg, var(--p-accent), #00f5c8);
    color: var(--p-dark);
}
.p-level__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,212,170,.35); }

/* ═══════════════════════════════
   CALCULATOR — premium feel
   ═══════════════════════════════ */
.p-calc {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.p-calc__slider-wrap {
    margin-bottom: 36px;
}
.p-calc__label {
    font-size: .9rem;
    color: var(--p-light-secondary);
    margin-bottom: 14px;
}
.p-calc__value {
    font-family: var(--p-font-display);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--p-light-text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.p-calc__value span { color: var(--p-accent); }
.p-calc__slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--p-accent) 0%, var(--p-accent) var(--fill, 20%), #dce0e5 var(--fill, 20%));
    border-radius: 4px;
    outline: none;
    margin: 20px 0;
    cursor: pointer;
}
.p-calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background: var(--p-white);
    border: 3px solid var(--p-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,212,170,.35);
    transition: transform .2s, box-shadow .2s;
}
.p-calc__slider::-webkit-slider-thumb:hover {
    transform: scale(1.18);
    box-shadow: 0 4px 18px rgba(0,212,170,.45);
}
.p-calc__slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: var(--p-white);
    border: 3px solid var(--p-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,212,170,.35);
}
.p-calc__range-labels {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--p-light-secondary);
}
.p-calc__result {
    margin-top: 28px;
    padding: 32px;
    background: var(--p-light-text);
    color: var(--p-white);
    border-radius: var(--p-radius);
    position: relative;
    overflow: hidden;
}
.p-calc__result::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,212,170,.15) 0%, transparent 70%);
    pointer-events: none;
}
.p-calc__result-main {
    font-family: var(--p-font-display);
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--p-accent), #00f5c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    position: relative;
}
.p-calc__result-label {
    font-size: .875rem;
    color: var(--p-text-secondary);
    margin-top: 6px;
    position: relative;
}
.p-calc__result-extra {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .875rem;
    color: var(--p-text-secondary);
    position: relative;
}

/* ═══════════════════════════════
   BENEFITS — staggered grid
   ═══════════════════════════════ */
.p-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.p-benefit {
    padding: 30px 22px;
    background: var(--p-surface-glass);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius-sm);
    backdrop-filter: blur(8px);
    transition: border-color .35s, transform .35s cubic-bezier(.22,1,.36,1), background .35s;
}
.p-benefit:hover {
    border-color: var(--p-border-hover);
    transform: translateY(-4px);
    background: rgba(0,212,170,.04);
}
.p-benefit__icon {
    font-size: 1.75rem;
    margin-bottom: 16px;
    display: block;
}
.p-benefit__title {
    font-family: var(--p-font-display);
    font-size: .9375rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.p-benefit__text {
    font-size: .8125rem;
    color: var(--p-text-secondary);
    line-height: 1.55;
}

/* ═══════════════════════════════
   AUDIENCE — pill chips
   ═══════════════════════════════ */
.p-audience {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.p-audience__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--p-white);
    border: 1px solid #e5e8eb;
    border-radius: 100px;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--p-light-text);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.p-audience__item:hover {
    border-color: var(--p-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,212,170,.1);
}

/* ═══════════════════════════════
   FAQ — clean accordion
   ═══════════════════════════════ */
.p-faq {
    max-width: 720px;
    margin: 0 auto;
}
.p-faq__item {
    border-bottom: 1px solid var(--p-border);
}
.p-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--p-text);
    font-family: var(--p-font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    letter-spacing: -0.01em;
    transition: color .2s;
}
.p-faq__q:hover { color: var(--p-accent); }
.p-faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    color: var(--p-text-muted);
}
.p-faq__item.open .p-faq__chevron { transform: rotate(180deg); color: var(--p-accent); }
.p-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .4s;
    font-size: .925rem;
    color: var(--p-text-secondary);
    line-height: 1.7;
}
.p-faq__item.open .p-faq__a {
    max-height: 220px;
    padding-bottom: 22px;
}

/* ═══════════════════════════════
   FORM — premium dark
   ═══════════════════════════════ */
.p-form-section {
    background: linear-gradient(180deg, var(--p-dark-2) 0%, var(--p-dark) 100%);
    position: relative;
}
.p-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0,212,170,.06), transparent 70%);
    pointer-events: none;
}
.p-form {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}
.p-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.p-form__field { display: flex; flex-direction: column; gap: 7px; }
.p-form__field--full { grid-column: 1 / -1; }
.p-form__label {
    font-size: .8125rem;
    font-weight: 500;
    color: var(--p-text-secondary);
    letter-spacing: .01em;
}
.p-form__input, .p-form__select, .p-form__textarea {
    padding: 13px 18px;
    background: var(--p-surface);
    border: 1.5px solid var(--p-border);
    border-radius: var(--p-radius-sm);
    color: var(--p-text);
    font-size: .9375rem;
    font-family: var(--p-font-body);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}
.p-form__input:focus, .p-form__select:focus, .p-form__textarea:focus {
    border-color: var(--p-accent);
    box-shadow: 0 0 0 3px var(--p-accent-glow);
}
.p-form__input::placeholder, .p-form__textarea::placeholder { color: var(--p-text-muted); }
.p-form__select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.p-form__textarea { resize: vertical; min-height: 84px; }
.p-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .8125rem;
    color: var(--p-text-secondary);
    cursor: pointer;
    margin-top: 8px;
    grid-column: 1 / -1;
    line-height: 1.5;
}
.p-form__consent input {
    margin-top: 3px;
    accent-color: var(--p-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.p-form__consent a { color: var(--p-accent); text-decoration: none; }
.p-form__consent a:hover { text-decoration: underline; }
.p-form__submit {
    grid-column: 1 / -1;
    padding: 17px;
    background: linear-gradient(135deg, var(--p-accent), #00f5c8);
    color: var(--p-dark);
    font-family: var(--p-font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    border-radius: var(--p-radius-sm);
    cursor: pointer;
    transition: all .25s;
    margin-top: 10px;
    position: relative;
}
.p-form__submit::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--p-accent), #00f5c8);
    z-index: -1;
    opacity: 0;
    filter: blur(14px);
    transition: opacity .3s;
}
.p-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,212,170,.35);
}
.p-form__submit:hover::after { opacity: .5; }
.p-form__submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.p-form__submit:disabled::after { display: none; }
.p-form__msg {
    grid-column: 1 / -1;
    padding: 14px 18px;
    border-radius: var(--p-radius-sm);
    font-size: .875rem;
    text-align: center;
    display: none;
}
.p-form__msg--ok { display: block; background: rgba(0,212,170,.1); color: var(--p-accent); border: 1px solid rgba(0,212,170,.18); }
.p-form__msg--err { display: block; background: rgba(239,68,68,.08); color: #f87171; border: 1px solid rgba(239,68,68,.15); }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.p-footer {
    padding: 52px 0 36px;
    border-top: 1px solid var(--p-border);
    text-align: center;
}
.p-footer__links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.p-footer__link {
    color: var(--p-text-secondary);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}
.p-footer__link:hover { color: var(--p-accent); }
.p-footer__copy {
    font-size: .8125rem;
    color: var(--p-text-muted);
}

/* ═══════════════════════════════
   ANIMATIONS
   ═══════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0,212,170,.5); }
    50% { opacity: .4; box-shadow: 0 0 4px rgba(0,212,170,.2); }
}
@keyframes orbFloat {
    from { transform: translateX(-50%) translateY(0); }
    to { transform: translateX(-45%) translateY(-30px); }
}

/* Staggered reveal for child elements */
.p-section.visible .p-step:nth-child(1),
.p-section.visible .p-level:nth-child(1),
.p-section.visible .p-benefit:nth-child(1) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .05s both; }
.p-section.visible .p-step:nth-child(2),
.p-section.visible .p-level:nth-child(2),
.p-section.visible .p-benefit:nth-child(2) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .12s both; }
.p-section.visible .p-step:nth-child(3),
.p-section.visible .p-benefit:nth-child(3) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .19s both; }
.p-section.visible .p-benefit:nth-child(4) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .26s both; }
.p-section.visible .p-benefit:nth-child(5) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .33s both; }
.p-section.visible .p-benefit:nth-child(6) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .40s both; }
.p-section.visible .p-benefit:nth-child(7) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .47s both; }
.p-section.visible .p-benefit:nth-child(8) { animation: fadeUp .5s cubic-bezier(.22,1,.36,1) .54s both; }

.p-section.visible .p-audience__item:nth-child(1) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .05s both; }
.p-section.visible .p-audience__item:nth-child(2) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .1s both; }
.p-section.visible .p-audience__item:nth-child(3) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .15s both; }
.p-section.visible .p-audience__item:nth-child(4) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .2s both; }
.p-section.visible .p-audience__item:nth-child(5) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .25s both; }

.p-section.visible .p-faq__item:nth-child(1) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .05s both; }
.p-section.visible .p-faq__item:nth-child(2) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .1s both; }
.p-section.visible .p-faq__item:nth-child(3) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .15s both; }
.p-section.visible .p-faq__item:nth-child(4) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .2s both; }
.p-section.visible .p-faq__item:nth-child(5) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .25s both; }
.p-section.visible .p-faq__item:nth-child(6) { animation: fadeUp .45s cubic-bezier(.22,1,.36,1) .3s both; }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
    .p-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .p-container { padding: 0 20px; }
    .p-hero { padding: 140px 0 80px; }
    .p-hero__stats { gap: 32px; flex-wrap: wrap; }
    .p-section { padding: 72px 0; }
    .p-steps { grid-template-columns: 1fr; gap: 16px; }
    .p-steps::before { display: none; }
    .p-levels { grid-template-columns: 1fr; }
    .p-level--featured { transform: none; }
    .p-level--featured:hover { transform: translateY(-4px); }
    .p-level--featured::before { top: -12px; left: 24px; }
    .p-benefits { grid-template-columns: 1fr 1fr; gap: 12px; }
    .p-form__grid { grid-template-columns: 1fr; }
    .p-form__field--full { grid-column: 1; }
    .p-form__consent { grid-column: 1; }
    .p-form__submit { grid-column: 1; }
    .p-header-nav .p-nav-link:not(.p-nav-link--cta) { display: none; }
    .p-faq__q { font-size: 1rem; }
}

@media (max-width: 480px) {
    .p-container { padding: 0 16px; }
    .p-hero { padding: 120px 0 60px; }
    .p-hero__stats { flex-direction: column; gap: 16px; }
    .p-benefits { grid-template-columns: 1fr; }
    .p-audience { flex-direction: column; align-items: stretch; }
    .p-calc__value { font-size: 2.5rem; }
    .p-calc__result-main { font-size: 2rem; }
    .p-level { padding: 32px 22px; }
    .p-step { padding: 32px 20px; }
    .p-benefit { padding: 24px 18px; }
}
