
.banner-test {
  background: linear-gradient(180deg, #1a1216 0%, #2a1c24 72%, #4a3a52 100%);
  color: #f7f4ef;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.4rem 1rem 0.55rem;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.banner-test strong { color: #f0c4d4; }


        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background-color: #FAF6FB;
            color: #2d2a24;
            line-height: 1.6;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #2d2a24;
            text-decoration: none;
            transition: color .25s ease;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .text-center {
            text-align: center;
        }
        .mt-8 {
            margin-top: 2rem;
        }

        /* ===== TYPOGRAPHY ===== */
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: #2d2a24;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #1f1a16;
            text-align: left;
        }
        .h1-highlight {
            color: #802D4B;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            margin-bottom: 0.75rem;
            color: #1f1a16;
            letter-spacing: -0.02em;
        }
        h3 {
            font-size: clamp(1.2rem, 2.2vw, 1.5rem);
            margin-bottom: 0.5rem;
            color: #1f1a16;
        }
        .subtitle {
            font-size: clamp(1rem, 1.4vw, 1.2rem);
            color: #5a524a;
            font-weight: 400;
            text-align: left;
        }
        .badge {
            display: inline-block;
            background: #EADBEF;
            color: #802D4B;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            margin-bottom: 0.75rem;
            border: 1px solid rgba(180, 67, 108, 0.12);
        }
        .badge-start {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #EADBEF;
            color: #802D4B;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            border: 1px solid rgba(180, 67, 108, 0.12);
            margin-bottom: 0.75rem;
        }
        .badge-start svg {
            flex-shrink: 0;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #B4436C;
            color: #FAF6FB;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.9rem 2.4rem;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-align: center;
            min-width: 200px;
            box-shadow: 0 4px 16px rgba(180, 67, 108, 0.2);
            position: relative;
            overflow: hidden;
        }
        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }
        .btn:hover::after {
            opacity: 1;
        }
        .btn:hover {
            background: #802D4B;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 28px rgba(180, 67, 108, 0.3);
        }
        .btn:active {
            transform: translateY(0) scale(0.98);
        }
        .btn-outline {
            background: transparent;
            color: #B4436C;
            border: 2px solid #B4436C;
            box-shadow: none;
        }
        .btn-outline:hover {
            background: #B4436C;
            color: #FAF6FB;
            box-shadow: 0 8px 28px rgba(180, 67, 108, 0.2);
        }
        .btn-accent {
            background: #802D4B;
            box-shadow: 0 4px 16px rgba(128, 45, 75, 0.3);
        }
        .btn-accent:hover {
            background: #5a1f34;
            box-shadow: 0 8px 28px rgba(128, 45, 75, 0.4);
        }

        /* ===== HEADER ===== */
        .site-header {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(180, 67, 108, 0.08);
            background: rgba(250, 246, 251, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .logo {
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: -0.02em;
            color: #802D4B;
            white-space: nowrap;
        }
        .logo span {
            font-weight: 300;
            color: #B4436C;
        }
        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .nav-links a {
            color: #4a433c;
            transition: color .25s;
            position: relative;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #B4436C;
            transition: width 0.3s;
        }
        .nav-links a:hover {
            color: #B4436C;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-cta {
            background: #B4436C;
            color: #FAF6FB !important;
            padding: 0.3rem 1.2rem;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.8rem;
            box-shadow: 0 2px 12px rgba(180, 67, 108, 0.15);
            transition: all 0.3s;
        }
        .nav-cta::after {
            display: none;
        }
        .nav-cta:hover {
            background: #802D4B;
            color: #FAF6FB !important;
            transform: translateY(-2px);
        }
        .nav-social {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 0.2rem;
        }
        .nav-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(180, 67, 108, 0.06);
            transition: all 0.3s;
            color: #B4436C;
        }
        .nav-social a:hover {
            background: #B4436C;
            color: #FAF6FB;
            transform: translateY(-2px);
        }
        .nav-social svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 3rem 0 2rem;
            position: relative;
            background: transparent;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60%;
            height: 120%;
            background: radial-gradient(ellipse, rgba(180, 67, 108, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            align-items: flex-start;
            text-align: left;
        }
        .hero-quote {
            font-size: clamp(1.1rem, 1.8vw, 1.4rem);
            font-weight: 400;
            color: #4a433c;
            padding-left: 1.8rem;
            border-left: 4px solid #B4436C;
            margin: 0.5rem 0 0.25rem;
            text-align: left;
            width: 100%;
        }
        .hero-quote .quote-line {
            display: block;
            margin-top: 0.2rem;
        }
        .hero-quote .quote-line::before {
            content: "«";
            color: #802D4B;
        }
        .hero-quote .quote-line::after {
            content: "»";
            color: #802D4B;
        }
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .hero-image::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, #EADBEF 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.5;
        }
        .hero-image img {
            width: 100%;
            max-width: 380px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(180, 67, 108, 0.12);
            object-fit: cover;
            object-position: center 20%;
            aspect-ratio: 3/4;
            fetchpriority: high;
            loading: eager;
        }
        .hero-meta-bottom {
            max-width: 1120px;
            margin: 1.5rem auto 0;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem 3rem;
            font-size: 0.95rem;
            color: #5a524a;
        }
        .hero-meta-bottom span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .hero-meta-bottom svg {
            flex-shrink: 0;
            stroke: #B4436C;
        }
        .hero-buttons-bottom {
            max-width: 1120px;
            margin: 1.5rem auto 0;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        /* ===== SECTIONS ===== */
        section {
            padding: 4rem 0;
            position: relative;
            background: transparent;
        }
        .section-title {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 2.5rem;
        }
        .section-title h2 {
            margin-bottom: 0.5rem;
        }
        .section-title p {
            color: #5a524a;
            font-size: 1.05rem;
        }

        /* ===== QUOTE BLOCK ===== */
        .quote-block {
            background: #FAF6FB;
            border-radius: 24px;
            padding: 2.5rem 3rem;
            margin: 1.5rem 0 2rem;
            position: relative;
            border: 1px solid rgba(180, 67, 108, 0.06);
            box-shadow: 0 8px 40px rgba(180, 67, 108, 0.04);
        }
        .quote-block::before {
            content: "“";
            font-size: 4rem;
            line-height: 1;
            color: #B4436C;
            position: absolute;
            top: 0.5rem;
            left: 1.5rem;
            font-family: Georgia, serif;
            opacity: 0.15;
        }
        .quote-block p {
            font-size: clamp(1rem, 1.3vw, 1.15rem);
            color: #3a3530;
            font-weight: 400;
            padding-left: 2.5rem;
            margin-bottom: 0.25rem;
        }
        .quote-block cite {
            display: block;
            font-style: normal;
            font-weight: 500;
            color: #802D4B;
            padding-left: 2.5rem;
            font-size: 0.95rem;
            margin-top: 0.8rem;
            text-align: right;
        }

        /* ===== GRID CARDS ===== */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.8rem;
        }
        .card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 1.8rem 2rem;
            border: 1px solid rgba(180, 67, 108, 0.04);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 20px rgba(180, 67, 108, 0.02);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B4436C, #802D4B);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(180, 67, 108, 0.06);
            border-color: rgba(180, 67, 108, 0.12);
        }
        .card:hover::before {
            opacity: 1;
        }
        .card-icon {
            display: block;
            margin: 0 auto 0.6rem;
            color: #B4436C;
            background: rgba(180, 67, 108, 0.06);
            padding: 0.5rem;
            border-radius: 14px;
            transition: background 0.3s;
            width: fit-content;
        }
        .card:hover .card-icon {
            background: rgba(180, 67, 108, 0.12);
        }
        .card-icon svg {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: #B4436C;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            display: block;
        }
        .card h3 {
            margin-bottom: 0.3rem;
            color: #802D4B;
        }
        .card p {
            color: #5a524a;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: left;
        }

        /* ===== FOR WHOM ===== */
        .for-whom-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
        }
        .for-whom-item {
            background: #ffffff;
            padding: 0.9rem 1.4rem;
            border-radius: 14px;
            border: 1px solid rgba(180, 67, 108, 0.04);
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.95rem;
            color: #3a3530;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(180, 67, 108, 0.02);
        }
        .for-whom-item:hover {
            border-color: rgba(180, 67, 108, 0.15);
            background: #fcf8fe;
            transform: translateX(4px);
        }
        .for-whom-item .icon-symbol {
            display: inline-block;
            width: 7px;
            height: 7px;
            background: #B4436C;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== FORMAT ===== */
        .format-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .format-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 1.8rem 1.2rem;
            text-align: center;
            border: 1px solid rgba(180, 67, 108, 0.04);
            transition: all 0.4s;
            box-shadow: 0 4px 20px rgba(180, 67, 108, 0.02);
        }
        .format-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(180, 67, 108, 0.06);
            border-color: rgba(180, 67, 108, 0.12);
        }
        .format-card .icon-wrap {
            display: inline-block;
            margin-bottom: 0.6rem;
            background: rgba(180, 67, 108, 0.06);
            padding: 0.5rem;
            border-radius: 14px;
            transition: background 0.3s;
        }
        .format-card:hover .icon-wrap {
            background: rgba(180, 67, 108, 0.12);
        }
        .format-card .icon-wrap svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: #B4436C;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            display: block;
        }
        .format-card h3 {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.2rem;
            color: #802D4B;
        }
        .format-card p {
            font-size: 0.88rem;
            color: #5a524a;
            line-height: 1.5;
        }

        /* ===== PRICING ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .pricing-card {
            background: #ffffff;
            border-radius: 22px;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(180, 67, 108, 0.04);
            transition: all 0.4s;
            box-shadow: 0 4px 20px rgba(180, 67, 108, 0.02);
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(180, 67, 108, 0.06);
        }
        .pricing-card .price {
            font-size: 2.4rem;
            font-weight: 700;
            color: #802D4B;
            margin: 0.4rem 0 0.25rem;
        }
        .pricing-card .price small {
            font-size: 0.95rem;
            font-weight: 400;
            color: #5a524a;
        }
        .pricing-card .label {
            font-size: 0.85rem;
            color: #5a524a;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        .pricing-card .feature-list {
            list-style: none;
            margin: 1rem 0 1.4rem;
            text-align: left;
            font-size: 0.9rem;
        }
        .pricing-card .feature-list li {
            padding: 0.3rem 0;
            display: flex;
            gap: 0.6rem;
            align-items: flex-start;
        }
        .pricing-card .feature-list li::before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 6px;
            background: #B4436C;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.6rem;
        }
        .pricing-card.highlight {
            border-color: #B4436C;
            background: linear-gradient(145deg, #ffffff, #faf3fc);
            position: relative;
        }
        .pricing-card.highlight::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 24px;
            background: linear-gradient(135deg, #B4436C, #802D4B);
            z-index: -1;
            opacity: 0.1;
        }
        .pricing-card .tag {
            display: inline-block;
            background: #B4436C;
            color: #FAF6FB;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 0.15rem 0.9rem;
            border-radius: 30px;
            letter-spacing: 0.04em;
            margin-bottom: 0.4rem;
        }
        .pricing-card .saving {
            font-size: 0.8rem;
            color: #B4436C;
            font-weight: 600;
            margin-top: -0.2rem;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(145deg, #802D4B, #5a1f34);
            color: #FAF6FB;
            padding: 4rem 0;
            text-align: center;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(180, 67, 108, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 {
            color: #FAF6FB;
        }
        .cta-section p {
            color: #EADBEF;
            max-width: 580px;
            margin: 0 auto 1.8rem;
            font-size: 1.05rem;
        }
        .cta-section .btn {
            background: #FAF6FB;
            color: #802D4B;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }
        .cta-section .btn:hover {
            background: #ffffff;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
        }
        .cta-section .btn-outline-light {
            background: transparent;
            color: #FAF6FB;
            border: 2px solid rgba(250, 246, 251, 0.25);
            box-shadow: none;
        }
        .cta-section .btn-outline-light:hover {
            background: rgba(250, 246, 251, 0.06);
            border-color: rgba(250, 246, 251, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #f7f1fa;
            padding: 2.5rem 0;
            color: #3a3530;
            font-size: 0.85rem;
            border-top: none;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        .footer-links {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #3a3530;
            transition: color .25s;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #B4436C;
        }
        .footer-social {
            display: flex;
            gap: 0.8rem;
        }
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(180, 67, 108, 0.06);
            transition: all 0.3s;
            color: #B4436C;
        }
        .footer-social a:hover {
            background: #B4436C;
            color: #FAF6FB;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(180, 67, 108, 0.12);
        }
        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .footer-copy {
            font-size: 0.8rem;
            color: #5a524a;
        }

        /* ===== ANIMATIONS ===== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        .fade-in-up.delay-1 {
            animation-delay: 0.1s;
        }
        .fade-in-up.delay-2 {
            animation-delay: 0.2s;
        }
        .fade-in-up.delay-3 {
            animation-delay: 0.3s;
        }
        .fade-in-up.delay-4 {
            animation-delay: 0.4s;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
                max-width: 600px;
            }
            .pricing-card:last-child {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }
        }
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero-image {
                order: -1;
                max-height: 45vh;
            }
            .hero-image img {
                max-width: min(280px, 100%);
                max-height: 45vh;
                width: auto;
                height: auto;
                object-fit: cover;
                margin: 0 auto;
            }
            .hero::before {
                display: none;
            }
            .hero-content {
                align-items: flex-start;
                text-align: left;
            }
            .hero-meta-bottom {
                justify-content: center;
                gap: 1rem 2rem;
            }
            .hero-buttons-bottom {
                justify-content: center;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .format-grid {
                grid-template-columns: 1fr 1fr;
            }
            .for-whom-grid {
                grid-template-columns: 1fr;
            }
            .site-header .container {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        /* Мобильные устройства */
        @media (max-width: 768px) {
            body {
                padding-top: 100px; /* увеличенный отступ для хэдера */
            }
            .hero {
                padding-top: 5rem; /* дополнительный отступ сверху для секции, чтобы фото не перекрывалось */
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .pricing-card:last-child {
                grid-column: auto;
                max-width: 100%;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .format-grid {
                grid-template-columns: 1fr;
            }
            .hero-meta-bottom {
                gap: 0.8rem 1.5rem;
                font-size: 0.9rem;
                padding: 0 16px;
            }
            .hero-meta-bottom span {
                gap: 0.3rem;
            }
            .hero-buttons-bottom {
                padding: 0 16px;
            }
            h1 {
                font-size: clamp(1.8rem, 5vw, 2.8rem);
            }
            h2 {
                font-size: clamp(1.6rem, 4vw, 2.2rem);
            }
            .subtitle {
                font-size: 1rem;
            }
            .hero-quote {
                font-size: 1rem;
                padding-left: 1.2rem;
            }
            .quote-block {
                padding: 1.8rem 1.2rem;
            }
            .quote-block p {
                font-size: 0.95rem;
                padding-left: 1.5rem;
            }
            .quote-block cite {
                padding-left: 1.5rem;
                font-size: 0.9rem;
                margin-top: 0.6rem;
                text-align: right;
            }

            /* Хэдер: фиксированный, скрывается/показывается */
            .site-header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                transform: translateY(0);
                transition: transform 0.3s ease, background 0.3s ease;
                background: rgba(250, 246, 251, 0.95);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid rgba(180, 67, 108, 0.08);
                z-index: 100;
            }
            .site-header.hidden {
                transform: translateY(-100%);
            }

            .site-header .container {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.3rem;
            }
            .logo {
                font-size: 1.1rem;
                text-align: center;
            }
            .nav-links {
                justify-content: center;
                gap: 0.5rem 0.8rem;
                font-size: 0.95rem;
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-links a {
                white-space: nowrap;
            }
            .nav-social {
                order: 0;
                margin-left: 0;
            }
            .nav-cta {
                order: 1;
                background: #B4436C;
                color: #FAF6FB !important;
                padding: 0.4rem 1.4rem;
                font-size: 0.9rem;
                box-shadow: 0 4px 16px rgba(180, 67, 108, 0.25);
                border-radius: 60px;
                font-weight: 600;
                transition: all 0.3s;
            }
            .nav-cta:hover {
                background: #802D4B;
                transform: translateY(-2px);
                box-shadow: 0 8px 24px rgba(180, 67, 108, 0.4);
            }
            .nav-links a::after {
                display: none;
            }
            .nav-links a {
                color: #4a433c;
                font-weight: 500;
            }
            .nav-links a:hover {
                color: #B4436C;
            }

            .sticky-cta .btn {
                background: #B4436C;
                color: #FAF6FB;
                font-weight: 600;
                box-shadow: 0 4px 16px rgba(180, 67, 108, 0.35);
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
            .sticky-cta .btn:hover {
                background: #802D4B;
                box-shadow: 0 8px 24px rgba(180, 67, 108, 0.5);
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }
            .hero {
                padding: 2.5rem 0 1.5rem; /* дополнительный верхний отступ */
            }
            .hero-image img {
                max-width: min(220px, 100%);
                max-height: 42vh;
            }
            section {
                padding: 2.5rem 0;
            }
            .quote-block {
                padding: 1.5rem 1.2rem;
            }
            .quote-block::before {
                font-size: 2.8rem;
                left: 0.8rem;
                top: 0.25rem;
            }
            .quote-block p {
                padding-left: 1.5rem;
                font-size: 0.95rem;
            }
            .quote-block cite {
                padding-left: 1.5rem;
                font-size: 0.85rem;
                margin-top: 0.6rem;
                text-align: right;
            }
            .pricing-card {
                padding: 1.5rem 1rem;
            }
            .pricing-card .price {
                font-size: 2rem;
            }
            .pricing-card .feature-list {
                font-size: 0.85rem;
            }
            .cta-section {
                padding: 2.5rem 0;
            }
            .cta-buttons .btn {
                min-width: 160px;
                width: 100%;
            }
            .cta-section h2 {
                font-size: 1.8rem;
            }
            .cta-section p {
                font-size: 0.95rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
                gap: 0.8rem 1.2rem;
                font-size: 0.8rem;
            }
            .footer-social a {
                width: 34px;
                height: 34px;
            }
            .btn {
                min-width: 140px;
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
                text-align: center;
                justify-content: center;
            }
            .nav-links {
                font-size: 0.85rem;
                gap: 0.4rem 0.6rem;
            }
            .nav-cta {
                font-size: 0.8rem;
                padding: 0.3rem 1rem;
            }
            .nav-social a {
                width: 28px;
                height: 28px;
            }
            .nav-social svg {
                width: 14px;
                height: 14px;
            }
            .logo {
                font-size: 1rem;
            }
            .hero-meta-bottom {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
                padding: 0.8rem 16px;
                font-size: 0.85rem;
            }
            .hero-meta-bottom span {
                font-size: 0.85rem;
            }
            .hero-buttons-bottom {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }
            .hero-buttons-bottom .btn {
                width: 100%;
                max-width: 280px;
                font-size: 0.9rem;
                padding: 0.7rem 1.2rem;
            }
            h1 {
                font-size: clamp(1.6rem, 5vw, 2.2rem);
            }
            h2 {
                font-size: clamp(1.4rem, 4vw, 1.8rem);
            }
            .subtitle {
                font-size: 0.95rem;
            }
            .hero-quote {
                font-size: 0.95rem;
                padding-left: 1rem;
                border-left-width: 3px;
            }
            .hero-quote .quote-line {
                margin-top: 0.1rem;
            }
            .badge-start {
                font-size: 0.7rem;
                padding: 0.3rem 1rem;
            }
            .badge {
                font-size: 0.65rem;
                padding: 0.2rem 1rem;
            }
            .card {
                padding: 1.2rem;
                text-align: center;
            }
            .card h3 {
                font-size: 1.1rem;
            }
            .card p {
                font-size: 0.9rem;
                text-align: left;
            }
            .format-card {
                padding: 1.2rem 0.8rem;
            }
            .format-card h3 {
                font-size: 0.95rem;
            }
            .format-card p {
                font-size: 0.85rem;
            }
            .for-whom-item {
                font-size: 0.9rem;
                padding: 0.7rem 1rem;
            }
            .section-title p {
                font-size: 0.95rem;
            }
            .section-title h2 {
                font-size: 1.6rem;
            }
            .quote-block {
                padding: 1.2rem;
            }
            .quote-block::before {
                font-size: 2.2rem;
                left: 0.6rem;
            }
            .quote-block p {
                padding-left: 1.2rem;
                font-size: 0.9rem;
            }
            .quote-block cite {
                padding-left: 1.2rem;
                font-size: 0.85rem;
                margin-top: 0.6rem;
                text-align: right;
            }
            .pricing-card .price {
                font-size: 1.8rem;
            }
            .pricing-card .label {
                font-size: 0.8rem;
            }
            .pricing-card .tag {
                font-size: 0.6rem;
            }
            .pricing-card .saving {
                font-size: 0.75rem;
            }
            .pricing-card .feature-list li {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .hero-buttons-bottom .btn {
                font-size: 0.85rem;
                padding: 0.6rem 1rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            .subtitle {
                font-size: 0.9rem;
            }
            .hero-quote {
                font-size: 0.9rem;
            }
            .hero-meta-bottom span {
                font-size: 0.8rem;
            }
            .badge-start {
                font-size: 0.65rem;
            }
        }

        /* ===== ACCESSIBILITY ===== */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
        a:focus-visible,
        button:focus-visible {
            outline: 3px solid #B4436C;
            outline-offset: 2px;
        }
        .anchor {
            scroll-margin-top: 80px;
        }

        /* ===== STICKY CTA (mobile) ===== */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(250, 246, 251, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0.6rem 1rem;
            border-top: 1px solid rgba(180, 67, 108, 0.06);
            z-index: 200;
            box-shadow: 0 -4px 20px rgba(180, 67, 108, 0.04);
        }
        .sticky-cta .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0 8px;
        }
        .sticky-cta .btn {
            min-width: 100px;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }
        .sticky-cta .label {
            font-size: 0.8rem;
            font-weight: 500;
            color: #802D4B;
        }
        @media (max-width: 640px) {
            .sticky-cta {
                display: block;
            }
            body {
                padding-bottom: 60px;
            }
        }
    
/* Mobile: photo first, <= half viewport (override etalon) */
@media (max-width: 992px) {
  .hero-image { order: -1; max-height: 45vh; }
  .hero-image img {
    max-width: min(280px, 100%);
    max-height: 45vh;
    width: auto;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .hero-image img {
    max-width: min(220px, 100%);
    max-height: 42vh;
  }
}

.btn, a.btn, button.btn {
  text-align: center !important;
  justify-content: center !important;
  border-radius: 60px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  white-space: normal !important;
}

@media (max-width: 640px) {
  .btn, a.btn, button.btn,
  .hero-buttons-bottom .btn,
  .cta-buttons .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* Floating scroll to top */
.scroll-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.35rem;
  z-index: 220;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(114, 41, 70, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(114, 41, 70, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(34, 34, 34, 0.06);
}
.scroll-top.is-visible {
  opacity: 0.55;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover,
.scroll-top:focus-visible {
  opacity: 0.92;
  color: #722946;
  border-color: rgba(114, 41, 70, 0.35);
  background: rgba(255, 255, 255, 0.92);
}
.scroll-top svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
@media (max-width: 640px) {
  .scroll-top {
    right: 0.85rem;
    bottom: 4.75rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}
