 /* =====================
           VARIABLES & RESET
        ===================== */
        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --primary-light: #4895ef;
            --secondary: #06d6a0;
            --accent: #7209b7;
            --success: #4cc9f0;
            --warning: #f8961e;
            --danger: #f72585;
            
            --bg-body: #f0f4f8;
            --bg-card: #ffffff;
            --bg-light: #e9ecef;
            --bg-hover: #e2eaf3;
            
            --text-primary: #1a1a2e;
            --text-secondary: #394867;
            --text-muted: #6c757d;
            --text-light: #8d99ae;
            
            --border: #d1d9e6;
            --border-light: #e9edf4;
            --border-dark: #b8c1d1;
            
            --gradient-1: linear-gradient(135deg, #4361ee 0%, #4895ef 100%);
            --gradient-2: linear-gradient(135deg, #7209b7 0%, #4361ee 100%);
            --gradient-3: linear-gradient(135deg, #06d6a0 0%, #4cc9f0 100%);
            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 15px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 35px 70px rgba(0, 0, 0, 0.2);
            
            --radius: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 9999px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        /* =====================
           TYPOGRAPHY
        ===================== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-primary);
        }
        
        h1 {
            font-size: 62px;
            letter-spacing: -0.03em;
        }
        
        h2 {
            font-size: 48px;
            letter-spacing: -0.02em;
        }
        
        h3 {
            font-size: 32px;
        }
        
        h4 {
            font-size: 24px;
        }
        
        p {
            color: var(--text-secondary);
            font-size: 18px;
        }
        
        .text-muted {
            color: var(--text-muted);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* =====================
           BUTTONS
        ===================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 16px;
            line-height: 1;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            outline: none;
            gap: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 15px 35px rgba(67, 97, 238, 0.4);
        }
        
        .btn-secondary {
            background: var(--gradient-3);
            color: white;
            box-shadow: 0 8px 25px rgba(6, 214, 160, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 15px 35px rgba(6, 214, 160, 0.4);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        .btn-lg {
            padding: 20px 48px;
            font-size: 18px;
            border-radius: var(--radius-md);
        }
        
        .btn-sm {
            padding: 12px 24px;
            font-size: 14px;
        }
        
        /* =====================
           HEADER
        ===================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(240, 244, 248, 0.95);
            z-index: 1000;
            border-bottom: 1px solid rgba(209, 217, 230, 0.5);
            padding: 20px 0;
            transition: all 0.4s ease;
        }
        
        .header.scrolled {
            padding: 15px 0;
            box-shadow: var(--shadow);
            background-color: rgba(240, 244, 248, 0.98);
        }
        
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
    display: flex;
    align-items: center;
}

.logo-bg {
    width: 200px;          /* РАЗМЕР БЛОКА */
    height: 50px;
    
    background-image: url("../imgn/logo-promolab.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain; /* 👈 масштабируется ЛОГО, а не фон */
}
        
        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 22px;
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
        }
        
        .logo-text span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            font-size: 16px;
        }
        
        .nav a:hover {
            color: var(--primary);
        }
        
        .nav a.active {
            color: var(--primary);
            font-weight: 700;
        }
        
        .nav a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            border-radius: var(--radius-full);
            animation: underlineWidth 0.4s ease;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        
        .burger span {
            width: 26px;
            height: 3px;
            background-color: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: var(--radius-full);
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background-color: rgba(240, 244, 248, 0.98);
            padding: 30px;
            box-shadow: var(--shadow-lg);
            border-top: 1px solid var(--border);
            z-index: 999;
            animation: slideDown 0.4s ease;
        }
        
        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .mobile-nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 18px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(209, 217, 230, 0.5);
            transition: color 0.3s;
        }
        
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        
        .mobile-nav a:hover {
            color: var(--primary);
        }
        
        @media (max-width: 1024px) {
            .nav, .header-actions .btn-secondary {
                display: none;
            }
            
            .burger {
                display: flex;
            }
        }
        
        /* =====================
           HERO SECTION
        ===================== */
        .hero {
            padding-top: 180px;
            padding-bottom: 150px;
            position: relative;
            overflow: hidden;
            background:url(/imgn/hero-bg.png) }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 Z" fill="%234361ee" opacity="0.03"/><path d="M0,0 L0,100 L100,100 Z" fill="%237209b7" opacity="0.02"/></svg>') 0 0 / 100px 100px,
                url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%2306d6a0" opacity="0.05"/></svg>') 0 0 / 60px 60px;
            animation: moveBackground 30s linear infinite;
            z-index: -1;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-content {
            max-width: 650px;
        }
        
        .hero-title {
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero-subtitle {
            font-size: 22px;
            color: var(--text-secondary);
            margin-bottom: 50px;
            max-width: 550px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .hero-stats {
            display: flex;
            gap: 50px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .stat-value {
            font-size: 42px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 500;
        }
        
        .hero-card {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            animation: fadeInRight 0.8s ease 0.4s both;
        }
        
        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-1);
        }
        
        .card-title {
            font-size: 26px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .card-title i {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 28px;
        }
        
        .input-group {
            margin-bottom: 30px;
        }
        
        .input-with-btn {
            display: flex;
            gap: 15px;
        }
        
        .input-with-btn input {
            flex: 1;
        }
        
        input[type="text"], input[type="email"], textarea {
            width: 100%;
            padding: 18px 22px;
            border-radius: var(--radius);
            border: 2px solid var(--border);
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            color: var(--text-primary);
            transition: all 0.3s;
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
            background-color: white;
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .metric-item {
            background-color: rgba(240, 244, 248, 0.7);
            border-radius: var(--radius-md);
            padding: 25px;
            border: 1px solid rgba(209, 217, 230, 0.5);
            transition: transform 0.3s;
        }
        
        .metric-item:hover {
            transform: translateY(-5px);
            background-color: white;
            box-shadow: var(--shadow);
        }
        
        .metric-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .metric-label {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-secondary);
        }
        
        .metric-value {
            font-weight: 800;
            font-size: 22px;
            color: var(--text-primary);
        }
        
        .metric-bar {
            height: 10px;
            background-color: var(--border);
            border-radius: var(--radius-full);
            overflow: hidden;
        }
        
        .metric-fill {
            height: 100%;
            border-radius: var(--radius-full);
            transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: 0%;
        }
        
        .metric-fill.good {
            background: var(--gradient-3);
        }
        
        .metric-fill.medium {
            background: linear-gradient(90deg, #f8961e, #ff9e00);
        }
        
        .metric-fill.poor {
            background: linear-gradient(90deg, #f72585, #ff4d6d);
        }
        
        .tips-list {
            background-color: rgba(240, 244, 248, 0.7);
            border-radius: var(--radius-md);
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(209, 217, 230, 0.5);
        }
        
        .tips-list h4 {
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tips-list ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .tips-list li {
            padding: 8px 0;
            font-size: 15px;
            color: var(--text-secondary);
            position: relative;
            padding-left: 24px;
            line-height: 1.5;
        }
        
        .tips-list li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }
        
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-content {
                text-align: center;
                max-width: 100%;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            h1 {
                font-size: 48px;
            }
            
            h2 {
                font-size: 38px;
            }
        }
        
        @media (max-width: 640px) {
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 30px;
                align-items: center;
            }
            
            h1 {
                font-size: 38px;
            }
            
            h2 {
                font-size: 32px;
            }
        }
        
        /* =====================
           HOW IT WORKS
        ===================== */
        .how {
            position: relative;
            overflow: hidden;
        }
        
        .how::before {
            content: '';
            position: absolute;
            top: -200px;
            left: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, transparent 70%);
            z-index: -1;
        }
        
        .how::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(6, 214, 160, 0.05) 0%, transparent 70%);
            z-index: -1;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 100px;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: var(--text-muted);
            margin-top: 20px;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .step-card {
            background-color: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .step-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }
        
        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .step-card:hover::before {
            transform: scaleX(1);
        }
        
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            color: white;
            font-weight: 800;
            font-size: 28px;
            border-radius: 50%;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
        }
        
        .step-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(72, 149, 239, 0.1));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 36px;
            color: var(--primary);
            transition: all 0.3s;
        }
        
        .step-card:hover .step-icon {
            transform: rotate(10deg) scale(1.1);
            background: var(--gradient-1);
            color: white;
        }
        
        .step-card h3 {
            margin-bottom: 20px;
        }
        
        .step-card p {
            color: var(--text-secondary);
            font-size: 17px;
            line-height: 1.6;
        }
        
        @media (max-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* =====================
           PRICING SECTION
        ===================== */
        .pricing {
            background-color: rgba(233, 236, 239, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .pricing::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(114, 9, 183, 0.03) 0%, transparent 70%);
            z-index: 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .pricing-card {
            background-color: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 60px 50px;
            border: 2px solid var(--border);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .pricing-card.featured {
            border-color: var(--primary);
            background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
            box-shadow: var(--shadow-xl);
            transform: translateY(-10px);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-20px) scale(1.02);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-2);
            color: white;
            font-weight: 800;
            font-size: 13px;
            padding: 8px 25px;
            border-radius: var(--radius-full);
            box-shadow: 0 8px 20px rgba(114, 9, 183, 0.3);
            letter-spacing: 0.5px;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .pricing-price {
            font-size: 62px;
            font-weight: 800;
            color: var(--text-primary);
            margin: 30px 0;
            line-height: 1;
            position: relative;
            display: inline-block;
        }
        
        .pricing-price span {
            font-size: 28px;
            font-weight: 600;
            color: var(--text-muted);
        }
        
        .pricing-price::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: var(--radius-full);
        }
        
        .pricing-features {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 50px;
            flex-grow: 1;
        }
        
        .pricing-features li {
            padding: 15px 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 36px;
            border-bottom: 1px solid rgba(209, 217, 230, 0.3);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 15px;
            color: var(--success);
            font-weight: 800;
            font-size: 18px;
        }
        
        .pricing-card .btn {
            width: 100%;
            margin-top: auto;
        }
        
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-15px) scale(1.02);
            }
        }
        
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* =====================
           NEW SECTIONS
        ===================== */
        .features {
            position: relative;
            overflow: hidden;
        }
        
        .features::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(76, 201, 240, 0.05) 0%, transparent 70%);
            z-index: -1;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        
        .feature-card {
            background-color: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 40px;
            border: 1px solid var(--border);
            transition: all 0.4s;
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            flex-shrink: 0;
        }
        
        .feature-content h3 {
            margin-bottom: 15px;
        }
        
        .feature-content p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
        }
        
        /* TESTIMONIALS SECTION */
        .testimonials {
            background: linear-gradient(135deg, rgba(240, 244, 248, 0.8) 0%, rgba(233, 236, 239, 0.8) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.06) 0%, transparent 70%);
            z-index: 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        
        .testimonial-card {
            background-color: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 40px;
            border: 1px solid var(--border);
            transition: all 0.4s;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 80px;
            color: var(--primary-light);
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        @media (max-width: 1024px) {
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* =====================
           CTA SECTION
        ===================== */
        .cta-section {
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(67, 97, 238, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(6, 214, 160, 0.06) 0%, transparent 50%);
            z-index: -1;
        }
        
        .cta-box {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-xl);
            padding: 100px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.3);
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-1);
        }
        
        .cta-title {
            margin-bottom: 25px;
        }
        
        .cta-subtitle {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        @media (max-width: 768px) {
            .cta-box {
                padding: 60px 40px;
            }
        }
        
        /* =====================
           FOOTER
        ===================== */
        .footer {
            background-color: rgba(233, 236, 239, 0.8);
            border-top: 1px solid var(--border);
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(114, 9, 183, 0.03) 0%, transparent 70%);
            z-index: 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            padding-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .footer-brand p {
            margin-top: 25px;
            max-width: 350px;
            font-size: 16px;
            line-height: 1.7;
        }
        
        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: var(--radius-full);
        }
        
        .footer-col ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-col li {
            margin-bottom: 15px;
        }
        
        .footer-col a {
            text-decoration: none;
            color: var(--text-secondary);
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-newsletter {
            margin-top: 30px;
        }
        
        .footer-newsletter p {
            font-size: 15px;
            margin-bottom: 15px;
            color: var(--text-muted);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: white;
            border-radius: 50%;
            color: var(--text-secondary);
            text-decoration: none;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }
        
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
        }
        
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }
        }
        
        /* =====================
           MODAL/POPUP
        ===================== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background-color: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 60px;
            max-width: 550px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-xl);
            transform: translateY(30px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid var(--border);
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0) scale(1);
        }
        
        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-muted);
            cursor: pointer;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .modal-close:hover {
            background-color: var(--bg-light);
            color: var(--text-primary);
            transform: rotate(90deg);
        }
        
        .modal-title {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .modal-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 18px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 15px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* =====================
           ANIMATIONS
        ===================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes underlineWidth {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }
        
        @keyframes moveBackground {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 100px 100px;
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(67, 97, 238, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        /* =====================
           UTILITY CLASSES
        ===================== */
        .mt-1 { margin-top: 10px; }
        .mt-2 { margin-top: 20px; }
        .mt-3 { margin-top: 30px; }
        .mt-4 { margin-top: 40px; }
        .mt-5 { margin-top: 50px; }
        .mt-6 { margin-top: 60px; }
        
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .mb-4 { margin-bottom: 40px; }
        .mb-5 { margin-bottom: 50px; }
        .mb-6 { margin-bottom: 60px; }
        
        .py-1 { padding-top: 10px; padding-bottom: 10px; }
        .py-2 { padding-top: 20px; padding-bottom: 20px; }
        .py-3 { padding-top: 30px; padding-bottom: 30px; }
        .py-4 { padding-top: 40px; padding-bottom: 40px; }
        .py-5 { padding-top: 50px; padding-bottom: 50px; }
        .py-6 { padding-top: 60px; padding-bottom: 60px; }
        
        
        /* ===============================
   UI SCALE FIX — CLEAN SaaS LOOK
   =============================== */

/* GLOBAL SECTIONS */
section {
  padding: 70px 0;
}

/* TYPOGRAPHY */
h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 26px;
}
p {
  font-size: 16px;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding-top: 150px;
  padding-bottom: 110px;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 520px;
}

.hero-actions {
  margin-bottom: 40px;
}

/* HERO STATS */
.stat-value {
  font-size: 34px;
}
.stat-label {
  font-size: 14px;
}

/* HERO CARD */
.hero-card {
  padding: 36px 30px;
  border-radius: 24px;
}

.hero-card::before {
  height: 3px;
}

/* INPUTS */
input[type="text"],
input[type="email"],
textarea {
  padding: 14px 18px;
  font-size: 15px;
}

/* METRICS */
.metric-item {
  padding: 20px;
}
.metric-value {
  font-size: 18px;
}
.metric-bar {
  height: 8px;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  font-size: 15px;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* STEP / FEATURE / TESTIMONIAL / PRICING CARDS */
.step-card,
.feature-card,
.testimonial-card,
.pricing-card {
  padding: 32px;
}

.step-card::before,
.pricing-card::before {
  height: 3px;
}

/* ICONS */
.step-icon {
  width: 64px;
  height: 64px;
  font-size: 26px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
}

/* PRICING */
.pricing-price {
  font-size: 48px;
}
.pricing-price span {
  font-size: 20px;
}

/* CTA */
.cta-box {
  padding: 70px 50px;
}

/* FOOTER */
.footer {
  padding-top: 80px;
}
.footer-grid {
  gap: 40px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  section {
    padding: 60px 0;
  }
  .hero {
    padding-top: 120px;
  }
}
/* ===============================
   HERO ANALYSIS CARD — COMPACT
   =============================== */

.hero-card {
  padding: 28px 26px;
  border-radius: 20px;
}

.card-title {
  font-size: 20px;
  margin-bottom: 20px;
}

/* input */
.input-group {
  margin-bottom: 20px;
}

.input-with-btn {
  gap: 10px;
}

.input-with-btn input {
  padding: 12px 16px;
  font-size: 14px;
}

/* METRICS GRID */
.metrics-grid {
  gap: 16px;
  margin-bottom: 24px;
}

.metric-item {
  padding: 16px;
}

.metric-label {
  font-size: 13px;
}

.metric-value {
  font-size: 16px;
}

.metric-bar {
  height: 6px;
}

/* TIPS */
.tips-list {
  padding: 16px;
  margin-bottom: 20px;
}

.tips-list h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.tips-list li {
  font-size: 13px;
  padding: 5px 0 5px 20px;
}

/* FINAL BUTTON */
.hero-card .btn {
  padding: 12px 20px;
  font-size: 14px;
}
/* ===============================
   PRICING — NORMAL HEIGHT
   =============================== */

.pricing-grid {
  gap: 28px;
}

/* CARD */
.pricing-card {
  padding: 34px 30px;
}

/* FEATURED */
.pricing-card.featured {
  transform: none;
}

/* HEADER */
.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 22px;
}

/* PRICE */
.pricing-price {
  font-size: 40px;
  margin: 18px 0;
}

.pricing-price span {
  font-size: 18px;
}

/* FEATURES LIST */
.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  padding-left: 28px;
}

.pricing-features li::before {
  font-size: 14px;
  top: 11px;
}

/* BUTTON */
.pricing-card .btn {
  padding: 12px 20px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .hero-card {
    padding: 24px 20px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .pricing-price {
    font-size: 34px;
  }
}
/* ===============================
   INPUTS — CLEAN SaaS STYLE
   =============================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9aa4b2;
  font-size: 14px;
}

/* FOCUS */
input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.12);
  background: #fff;
}

/* INPUT + BUTTON */
.input-with-btn {
  gap: 8px;
}

.input-with-btn .btn {
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 10px;
}
/* ===============================
   MODAL — COMPACT & CLEAN
   =============================== */

.modal {
  padding: 40px 36px;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(0,0,0,.25) transparent;
}
/* CUSTOM SCROLLBAR */
.modal::-webkit-scrollbar {
  width: 6px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.2);
  border-radius: 6px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,.35);
}
.modal-title {
  font-size: 22px;
  margin-bottom: 18px;
}

.modal-subtitle {
  font-size: 15px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  font-size: 13px;
  margin-bottom: 6px;
}
.modal-close {
  width: 36px;
  height: 36px;
  font-size: 22px;
  top: 16px;
  right: 16px;
}
@media (max-width: 640px) {
  .modal {
    padding: 28px 22px;
    max-height: 90vh;
  }
}
/* ===============================
   CARD COLORS — SOFT SaaS STYLE
   =============================== */

/* BASE COLOR FOR ALL CARDS */
.hero-card,
.step-card,
.feature-card,
.testimonial-card,
.pricing-card,
.metric-item,
.tips-list,
.cta-box,
.modal {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #f1f5f9 100%
  );
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
}
/* HOVER EFFECT */
.step-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.metric-item:hover {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%
  );
  border-color: #c7d2fe;
  box-shadow:
    0 6px 16px rgba(67, 97, 238, 0.12);
}
.hero-card {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2ff 100%
  );
  border-color: #c7d2fe;
}
.pricing-card {
  background: linear-gradient(
    180deg,
    #f9fafb 0%,
    #f1f5f9 100%
  );
}

.pricing-card.featured {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #eef2ff 100%
  );
  border-color: var(--primary);
}
.modal {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #f1f5f9 100%
  );
}
/* ===============================
   CTA — CLEAN & BALANCED
   =============================== */

.cta-section {
  padding: 80px 0;
}

.cta-box {
  padding: 64px 56px;
  max-width: 900px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2ff 100%
  );
  border: 1px solid #c7d2fe;
  box-shadow:
    0 10px 30px rgba(67, 97, 238, 0.12);
}
.cta-title {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.cta-subtitle {
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-secondary);
}
.cta-box .hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* PRIMARY */
.cta-box .btn-primary {
  padding: 14px 30px;
  font-size: 15px;
}

/* SECONDARY */
.cta-box .btn-outline {
  padding: 14px 26px;
  font-size: 15px;
  opacity: 0.85;
}

.cta-box .btn-outline:hover {
  opacity: 1;
}
.cta-box::before {
  height: 3px;
}
@media (max-width: 768px) {
  .cta-box {
    padding: 44px 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-box .hero-actions {
    flex-direction: column;
  }
}





/* ===============================
   MOBILE ADAPTATION — FINAL
   =============================== */

/* <= 1024px — планшеты */
@media (max-width: 1024px) {

  /* HEADER */
  .header {
    padding: 14px 0;
  }

  .logo-text {
    font-size: 22px;
  }

  /* HERO */
  .hero {
    padding-top: 120px;
    padding-bottom: 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  /* HERO CARD */
  .hero-card {
    max-width: 520px;
    margin: 0 auto;
  }

  /* SECTIONS */
  section {
    padding: 70px 0;
  }

  /* GRIDS */
  .steps-grid,
  .pricing-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* <= 768px — мобильные */
@media (max-width: 768px) {

  /* GLOBAL */
  body {
    font-size: 15px;
  }

  section {
    padding: 60px 0;
  }

  /* TYPO */
  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  /* HEADER */
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .burger {
    width: 28px;
    height: 28px;
  }

  /* HERO */
  .hero {
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-value {
    font-size: 28px;
  }

  /* HERO ANALYSIS CARD */
  .hero-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .card-title {
    font-size: 18px;
    justify-content: center;
  }

  /* INPUT + BUTTON */
  .input-with-btn {
    flex-direction: column;
  }

  .input-with-btn input,
  .input-with-btn .btn {
    width: 100%;
  }

  /* METRICS */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* STEPS */
  .step-card {
    padding: 26px 22px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  /* FEATURES */
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin-bottom: 10px;
  }

  /* PRICING */
  .pricing-card {
    padding: 28px 22px;
  }

  .pricing-price {
    font-size: 32px;
  }

  /* CTA */
  .cta-box {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-box .hero-actions {
    flex-direction: column;
  }

  /* FOOTER */
  .footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* <= 480px — маленькие экраны */
@media (max-width: 480px) {

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero {
    padding-top: 100px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 18px;
  }

  .stat-value {
    font-size: 24px;
  }

  .modal {
    padding: 22px 18px;
  }

  .modal-title {
    font-size: 20px;
  }
}
/* ===============================
   MOBILE HEADER — REMOVE CTA
   =============================== */
@media (max-width: 1024px) {
  .header-actions {
    display: none;
  }
}


    /* ===============================
   4 STEPS — PROMOLAB STYLE
================================ */

.steps-pl {
  padding: 90px 0;
  background: #f8fafc;
}

.steps-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.steps-title span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-pl {
  position: relative;
  padding: 36px 30px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f1f5f9 100%
  );
  border: 1px solid #e2e8f0;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: all .35s ease;
}

.step-pl::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
  pointer-events: none;
}

.step-pl:hover {
  transform: translateY(-10px);
  box-shadow:
    0 12px 30px rgba(67, 97, 238, 0.15);
}

/* BIG NUMBER */
.step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(67,97,238,.35);
  opacity: .35;
}

/* TEXT */
.step-pl h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-pl p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* HIGHLIGHT STEP 4 */
.step-pl.highlight {
  background: linear-gradient(
    180deg,
    #eef2ff 0%,
    #e0e7ff 100%
  );
  border-color: #c7d2fe;
}

.step-pl.highlight .step-num {
  -webkit-text-stroke: 1px rgba(67,97,238,.6);
  opacity: .5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-title {
    font-size: 28px;
  }
}