* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2563EB;
            --primary-dark: #1d4ed8;
            --secondary: #0F172A;
            --accent: #10B981;
            --warning: #F59E0B;
            --danger: #EF4444;
            --surface: #F8FAFC;
            --border: #E2E8F0;
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-600: #4B5563;
            --gray-900: #111827;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--secondary);
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }
        
        .header-left {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .header-contacts {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .header-phone {
            font-weight: 600;
            color: var(--secondary);
            text-decoration: none;
            font-size: 18px;
        }
        
        .header-phone:hover {
            color: var(--primary);
        }
        
        .nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .nav a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav a:hover {
            color: var(--primary);
        }
        
        .header-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-family: inherit;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            border: 2px solid rgba(255, 255, 255, 0.8);
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
        .btn-success {
            background: var(--accent);
            color: var(--white);
        }
        
        .btn-success:hover {
            background: #059669;
            transform: translateY(-1px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1d4ed8 100%);
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-left h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-left h1 span {
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: #f8fafc;
            margin-bottom: 32px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
            line-height: 1.5;
            font-weight: 500;
        }
        
        .trust-indicators {
            display: flex;
            gap: 32px;
            margin-bottom: 32px;
        }
        
        .trust-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px 24px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .trust-item .trust-number {
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            font-weight: 700;
        }
        
        .trust-item .trust-label {
            color: #f1f5f9;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
            font-weight: 600;
        }
        
        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .trust-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }
        
        .trust-text {
            font-size: 14px;
            color: var(--gray-600);
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .hero-buttons .btn {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.4);
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        .hero-buttons .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        
        .hero-guarantee {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-guarantee svg {
            color: #FFD700;
        }
        
        .hero-right {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .quiz-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--secondary);
        }
        
        .quiz-card p {
            color: var(--gray-600);
            margin-bottom: 24px;
        }
        
        .quiz-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-label {
            font-weight: 500;
            color: var(--secondary);
            font-size: 14px;
        }
        
        .form-input {
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .quiz-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px;
            background: var(--gray-50);
            border-radius: 8px;
            font-size: 14px;
        }
        
        .quiz-benefit svg {
            color: var(--accent);
            flex-shrink: 0;
        }
        
        /* Stats Banner */
        .stats-banner {
            background: var(--primary);
            padding: 32px 0;
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }
        
        .stats-content {
            display: flex;
            justify-content: space-around;
            text-align: center;
        }
        
        .stat-item {
            color: var(--white);
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 700;
            display: block;
            white-space: nowrap;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* Problem Section */
        .problem {
            padding: 80px 0;
            background: #FEF2F2;
        }
        
        .problem-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .problem-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--secondary);
        }
        
        .problem-title span {
            color: var(--danger);
        }
        
        .problem-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        
        .problem-item {
            background: var(--white);
            padding: 24px;
            border-radius: 12px;
            text-align: left;
            border-left: 4px solid var(--danger);
        }
        
        .problem-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--danger);
            white-space: nowrap;
        }
        
        .problem-item p {
            color: var(--gray-600);
            font-size: 14px;
        }
        
        /* Features */
        .features {
            padding: 80px 0;
            background: var(--white);
            min-height: 400px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--secondary);
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), #60A5FA);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--secondary);
        }
        
        .feature-description {
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* How it works */
        .how-it-works {
            background: var(--surface);
            padding: 80px 0;
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            position: relative;
        }
        
        .step {
            text-align: center;
            position: relative;
        }
        
        .step::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -16px;
            width: 32px;
            height: 2px;
            background: var(--border);
        }
        
        .step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 16px;
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--secondary);
        }
        
        .step-description {
            color: var(--gray-600);
            font-size: 14px;
        }
        
        /* Calculator Section */
        .calculator {
            padding: 80px 0;
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
        }
        
        .calculator-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .calculator-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .calculator-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--secondary);
        }
        
        .calculator-form {
            display: grid;
            gap: 24px;
        }
        
        .calc-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .calc-label {
            font-weight: 500;
            color: var(--secondary);
        }
        
        .calc-select {
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            background: var(--white);
            cursor: pointer;
        }
        
        .calc-result {
            background: #FEF2F2;
            border: 2px solid var(--danger);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            margin-top: 24px;
        }
        
        .calc-result-title {
            font-size: 18px;
            color: var(--danger);
            margin-bottom: 8px;
        }
        
        .calc-result-amount {
            font-size: 36px;
            font-weight: 700;
            color: var(--danger);
            white-space: nowrap;
        }
        
        .calc-result-note {
            font-size: 14px;
            color: var(--gray-600);
            margin-top: 8px;
        }
        
        /* Cases Section */
        .cases {
            padding: 80px 0;
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }
        
        .case-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: all 0.3s;
        }
        
        .case-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .case-header {
            background: linear-gradient(135deg, var(--primary), #60A5FA);
            color: var(--white);
            padding: 24px;
        }
        
        .case-company {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        
        .case-industry {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .case-body {
            padding: 24px;
        }
        
        .case-metric {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        
        .case-metric:last-child {
            border-bottom: none;
        }
        
        .case-metric-label {
            color: var(--gray-600);
        }
        
        .case-metric-value {
            font-weight: 600;
            color: var(--secondary);
        }
        
        .case-result {
            background: #F0FDF4;
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
            text-align: center;
        }
        
        .case-result-label {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 4px;
        }
        
        .case-result-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            white-space: nowrap;
        }
        
        /* Testimonials */
        .testimonials {
            background: var(--surface);
            padding: 80px 0;
        }
        
        .testimonials-slider {
            max-width: 900px;
            margin: 48px auto 0;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
            color: var(--gray-600);
        }
        
        .testimonial-info {
            flex: 1;
        }
        
        .testimonial-name {
            font-weight: 600;
            font-size: 18px;
            color: var(--secondary);
        }
        
        .testimonial-position {
            font-size: 14px;
            color: var(--gray-600);
        }
        
        .testimonial-rating {
            display: flex;
            gap: 4px;
            color: var(--warning);
        }
        
        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-600);
            font-style: italic;
        }
        
        .testimonial-date {
            margin-top: 16px;
            font-size: 14px;
            color: var(--gray-600);
            text-align: right;
        }
        
        /* Pricing */
        .pricing {
            padding: 80px 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 48px auto 0;
        }
        
        .pricing-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            position: relative;
            transition: all 0.3s;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--secondary);
            text-align: center;
        }
        
        .plan-price {
            font-size: 40px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            white-space: nowrap;
        }
        
        .plan-price small {
            font-size: 16px;
            color: var(--gray-600);
            font-weight: 400;
        }
        
        .plan-description {
            text-align: center;
            color: var(--gray-600);
            margin: 16px 0 24px;
            font-size: 14px;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 32px;
        }
        
        .plan-features li {
            padding: 12px 0;
            display: flex;
            align-items: start;
            gap: 12px;
            border-bottom: 1px solid var(--gray-100);
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features svg {
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .plan-cta {
            width: 100%;
        }
        
        /* FAQ */
        .faq {
            padding: 80px 0;
            background: var(--surface);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 48px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            width: 100%;
            padding: 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--secondary);
            font-family: inherit;
            transition: background 0.2s;
        }
        
        .faq-question:hover {
            background: var(--gray-50);
        }
        
        .faq-icon {
            transition: transform 0.3s;
            color: var(--primary);
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 24px 24px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), #60A5FA);
        }
        
        .cta-container {
            text-align: center;
            color: var(--white);
        }
        
        .cta-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .cta-subtitle {
            font-size: 20px;
            margin-bottom: 32px;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .btn-white {
            background: var(--white);
            color: var(--primary);
        }
        
        .btn-white:hover {
            background: var(--gray-50);
            transform: translateY(-1px);
        }
        
        .cta-timer {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 18px;
        }
        
        /* Footer */
        .footer {
            background: var(--secondary);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }
        
        .footer-description {
            color: var(--gray-200);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray-200);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-contact:hover {
            color: var(--white);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            color: var(--gray-200);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copyright {
            color: var(--gray-200);
            font-size: 14px;
        }
        
        .footer-socials {
            display: flex;
            gap: 16px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.2s;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        
        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 1001;
            padding: 80px 20px 20px;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Enhanced animations */
        .fade-in {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Skeleton loader */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            border-radius: 4px;
        }

        .skeleton-text {
            height: 1em;
            margin: 0.5em 0;
        }

        .skeleton-title {
            height: 1.5em;
            width: 60%;
            margin: 0.5em 0;
        }

        .skeleton-button {
            height: 2.5em;
            width: 120px;
            border-radius: 8px;
        }

        .skeleton-card {
            height: 200px;
            border-radius: 16px;
            margin: 1em 0;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Page loading overlay */
        .page-loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        .page-loading.active {
            opacity: 1;
            visibility: visible;
        }

        .page-loading .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #2563EB;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* Enhanced button states */
        .btn:active {
            transform: scale(0.98);
        }

        .btn:focus {
            outline: 2px solid #2563EB;
            outline-offset: 2px;
        }

        /* Smooth transitions for cards */
        .feature-card, .case-card, .pricing-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Enhanced form states */
        .form-input:invalid {
            border-color: #EF4444;
        }

        .form-input:valid {
            border-color: #10B981;
        }

        /* Pulse animation for CTA buttons */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Enhanced mobile menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Improved focus states */
        *:focus {
            outline: 2px solid #2563EB;
            outline-offset: 2px;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
/* Lazy loading for background images */
.lazy-bg {
    background-image: none;
    background-color: #f8fafc;
}

.lazy-bg.loaded {
    background-image: var(--bg-image);
}

/* Pilot page specific styles - matching main site design */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    color: white;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    color: #f8fafc;
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-right {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.quiz-container {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
}

.quiz-header {
    text-align: center;
    margin-bottom: 24px;
}

.quiz-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quiz-header p {
    color: var(--gray-600);
    font-size: 16px;
}

.quiz-form .form-group {
    margin-bottom: 20px;
}

.quiz-form .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 14px;
}

.quiz-form .form-input,
.quiz-form .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.quiz-form .form-input:focus,
.quiz-form .form-textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.quiz-form .form-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.quiz-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.quiz-form .form-checkbox input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

.quiz-form .form-checkbox a {
    color: var(--blue-600);
    text-decoration: none;
}

.quiz-form .form-checkbox a:hover {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-launch {
    margin: 32px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-note {
    margin-top: 20px;
    font-size: 16px;
    color: #f1f5f9;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.benefit-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
}

.target {
    padding: 100px 0;
    background: var(--gray-50);
}

.target-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.target-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.target-content p {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.target-item {
    padding: 20px 24px;
    background: var(--white);
    border-radius: 12px;
    font-weight: 600;
    color: var(--blue-600);
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--blue-500);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pilot-form {
    padding: 100px 0;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.form-header p {
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.6;
}

.pilot-form-content .form-group {
    margin-bottom: 28px;
}

.pilot-form-content .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-size: 16px;
}

.pilot-form-content .form-input,
.pilot-form-content .form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.pilot-form-content .form-input:focus,
.pilot-form-content .form-textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.pilot-form-content .form-textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}

.pilot-message {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
}

.pilot-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pilot-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Mobile styles for pilot page */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-launch {
        font-size: 18px;
        padding: 16px;
        margin: 24px 0;
        background: rgba(0, 0, 0, 0.3);
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-note {
        font-size: 14px;
        margin-top: 16px;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        background: rgba(0, 0, 0, 0.2);
        padding: 10px 16px;
        border-radius: 10px;
    }
    
    .hero-right {
        padding: 24px;
    }
    
    .quiz-header h3 {
        font-size: 20px;
    }
    
    .quiz-header p {
        font-size: 14px;
    }
    
    .benefits {
        padding: 60px 0;
    }
    
    .benefits .section-header h2 {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .benefit-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
    }
    
    .target {
        padding: 60px 0;
    }
    
    .target-content h2 {
        font-size: 32px;
    }
    
    .target-content p {
        font-size: 18px;
    }
    
    .target-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .target-item {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .pilot-form {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 32px 24px;
        margin: 0 16px;
        border-radius: 20px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .form-header p {
        font-size: 16px;
    }
    
    .pilot-form-content .form-group {
        margin-bottom: 24px;
    }
    
    .pilot-form-content .form-input,
    .pilot-form-content .form-textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
    }
}
        
        /* Section positioning for smooth scroll */
        section[id] {
            scroll-margin-top: 90px; /* Precise offset for fixed header */
        }
        
        /* Specific sections with different offsets */
        #pricing {
            scroll-margin-top: 80px;
        }
        
        #calculator {
            scroll-margin-top: 80px;
        }
        
        #quickQuiz {
            scroll-margin-top: 80px;
        }

        /* Inline styles moved to CSS */
        .lang-switcher {
            margin-right: 16px;
            color: #4B5563;
            text-decoration: none;
            font-size: 14px;
        }
        
        .quiz-message {
            display: none;
            font-size: 14px;
            color: #EF4444;
        }
        
        .btn-full-width {
            width: 100%;
        }
        
        .problem-intro {
            font-size: 18px;
            margin-bottom: 32px;
        }
        
        .btn-white {
            border-color: white;
            color: white;
        }
        
        .calc-result {
            display: none;
        }

        /* Enhanced error states */
        .error {
            color: #EF4444;
            font-size: 14px;
            margin-top: 8px;
        }

        .success {
            color: #10B981;
            font-size: 14px;
            margin-top: 8px;
        }
        
        .mobile-nav a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .problem-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            
            .header-contacts {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero {
                padding: 100px 0 60px;
            }
            
            .stats-content {
                flex-direction: column;
                gap: 24px;
            }
            
            .trust-indicators {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .features-grid,
            .cases-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .problem-list {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
            
            .step::after {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 16px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .pricing-card.popular {
                transform: none;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }

/* Pilot page CTA button styles */
.hero-cta .btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.final-cta-left h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.final-cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.final-cta-urgency {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #f59e0b;
    text-align: center;
}

.final-cta-urgency p {
    margin: 0;
    font-size: 16px;
    color: #92400e;
    font-weight: 600;
}

.final-form-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.final-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.final-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.final-form-header p {
    color: var(--gray-600);
    font-size: 16px;
}

.final-form .form-group {
    margin-bottom: 20px;
}

.final-form .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 14px;
}

.final-form .form-input,
.final-form .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.final-form .form-input:focus,
.final-form .form-textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.final-form .form-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.final-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.final-form .form-checkbox input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

.final-form .form-checkbox a {
    color: var(--blue-600);
    text-decoration: none;
}

.final-form .form-checkbox a:hover {
    text-decoration: underline;
}

.final-message {
    display: none;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.final-form .btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border: none;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.final-form .btn:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

/* Mobile styles for final CTA */
@media (max-width: 768px) {
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .final-form-container {
        padding: 24px;
    }
    
    .final-form-header h3 {
        font-size: 20px;
    }
    
.final-form-header p {
    font-size: 14px;
}
}

/* -----------------------------------------------------------
   Pilot PRO page
----------------------------------------------------------- */
.pilot-pro-page .header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pilot-pro-page .logo {
    color: var(--secondary);
}

.pilot-pro-page .header-cta .btn-outline {
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--primary);
}

.pilot-pro-page .header-cta .btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.5);
}

.header-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 10px;
    border-radius: 999px;
}

.nav a.active,
.mobile-nav a.active {
    color: var(--primary);
    font-weight: 600;
}

.pilot-pro-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary) !important;
    font-weight: 600;
    transition: all 0.2s;
}

.pilot-pro-link:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.pilot-pro-hero {
    background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.22), transparent 60%), linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #312e81 100%);
    color: #F8FAFC;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.pilot-pro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="g" x1="0" x2="1" y1="1" y2="0"><stop offset="0%" stop-color="rgba(148,163,184,0.15)"/><stop offset="100%" stop-color="rgba(148,163,184,0)"/></linearGradient></defs><rect width="400" height="400" fill="url(%23g)"/><path d="M0 300 Q150 260 200 320 T400 280" fill="none" stroke="rgba(148,163,184,0.18)" stroke-width="2"/></svg>');
    opacity: 0.5;
}

.pilot-pro-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.pilot-pro-hero__content h1 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    color: #E0E7FF;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 20px;
    color: #E2E8F0;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
    color: #F8FAFC;
    font-weight: 500;
}

.hero-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hero-points li::before {
    content: '✔';
    font-size: 18px;
    color: #38BDF8;
    margin-top: 2px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.hero-trust__item {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(8px);
}

.hero-trust__item strong {
    font-size: 28px;
    font-weight: 700;
    color: #FACC15;
}

.hero-trust__item span {
    font-size: 14px;
    color: #E2E8F0;
    line-height: 1.4;
}

.pilot-pro-hero__form .form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.pilot-pro-hero__form .form-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% -10%, rgba(79, 70, 229, 0.15), transparent 40%);
    pointer-events: none;
}

.pilot-pro-hero__form h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.pilot-pro-hero__form p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pilot-pro-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pilot-pro-form .form-group + .form-group {
    margin-top: 16px;
}

.form-select {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    background: #FFFFFF;
    font-family: inherit;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin: 16px 0;
    color: var(--gray-600);
}

.form-checkbox input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.form-message {
    font-size: 14px;
    font-weight: 500;
    min-height: 20px;
    margin-bottom: 12px;
    display: none;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(148, 163, 184, 0.15);
}

.form-message.is-success {
    color: #0f766e;
    background: rgba(16, 185, 129, 0.16);
    border-left: 4px solid #0f766e;
}

.form-message.is-error {
    color: #b91c1c;
    background: rgba(248, 113, 113, 0.18);
    border-left: 4px solid #b91c1c;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-footnote {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 12px;
}

.pilot-pro-proof {
    background: #FFFFFF;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.proof-item {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
}

.proof-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.proof-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--gray-600);
    font-weight: 600;
}

.proof-logos span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 13px;
}

.proof-item blockquote {
    font-style: italic;
    color: var(--gray-600);
}

.pilot-pro-fit,
.pilot-pro-program,
.pilot-pro-deliverables,
.pilot-pro-sprint,
.pilot-pro-showcase,
.pilot-pro-testimonials,
.pilot-pro-team,
.pilot-pro-faq,
.pilot-pro-cta {
    padding: 100px 0;
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-head p {
    color: var(--gray-600);
    font-size: 18px;
}

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

.fit-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 28px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}

.fit-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--gray-600);
}

.fit-card li {
    position: relative;
    padding-left: 18px;
}

.fit-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.program-steps {
    list-style: none;
    display: grid;
    gap: 24px;
    counter-reset: step;
}

.program-steps li {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    position: relative;
}

.program-steps .step-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex;
    margin-bottom: 16px;
}

.program-steps h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.program-steps p {
    color: var(--gray-600);
    margin-bottom: 14px;
}

.step-output {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.deliverable-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deliverable-card h3 {
    font-size: 24px;
    color: var(--secondary);
}

.deliverable-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.deliverable-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--gray-600);
}

.deliverable-card li {
    position: relative;
    padding-left: 20px;
}

.deliverable-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.pilot-pro-sprint {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.sprint-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.sprint-copy h2 {
    font-size: clamp(32px, 3vw, 42px);
    color: var(--secondary);
    margin-bottom: 16px;
}

.sprint-copy p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.sprint-metrics {
    list-style: none;
    display: grid;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary);
}

.sprint-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px;
}

.timeline-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-week {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pilot-pro-showcase .showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.showcase-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-card h3 {
    font-size: 22px;
    color: var(--secondary);
}

.showcase-card p {
    color: var(--gray-600);
}

.mockup {
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14) 0%, rgba(99, 102, 241, 0.18) 100%);
    color: #1E3A8A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pilot-pro-testimonials {
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card blockquote {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
}

.testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--gray-600);
}

.testimonial-name {
    font-weight: 700;
    color: var(--secondary);
}

.pilot-pro-team {
    background: var(--surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    background: #FFFFFF;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.team-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--gray-600);
}

.team-card li {
    position: relative;
    padding-left: 18px;
}

.team-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.pilot-pro-faq {
    background: #FFFFFF;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-accordion details {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.faq-accordion summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--secondary);
    font-size: 18px;
    list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion details[open] summary {
    color: var(--primary);
}

.faq-accordion p {
    margin-top: 12px;
    color: var(--gray-600);
}

.pilot-pro-cta {
    background: linear-gradient(135deg, #0b1220 0%, #132a68 45%, #272261 100%);
    color: #F8FAFC;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cta-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.12);
    color: #FACC15;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-copy h2 {
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-copy p {
    color: rgba(248, 250, 252, 0.96);
    margin-bottom: 18px;
}

.cta-copy ul {
    list-style: none;
    display: grid;
    gap: 12px;
    color: rgba(248, 250, 252, 0.95);
}

.cta-copy li {
    position: relative;
    padding-left: 18px;
}

.cta-copy li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #60A5FA;
}

.cta-form .form-card {
    background: rgba(17, 24, 39, 0.75);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
}

.cta-form .form-input,
.cta-form .form-textarea {
    background: rgba(15, 23, 42, 0.72); /* темнее фон для лучшего контраста */
    color: #F8FAFC;
    border-color: rgba(226, 232, 240, 0.55); /* светлее рамка */
}

.cta-form .form-input::placeholder,
.cta-form .form-textarea::placeholder {
    color: rgba(248, 250, 252, 0.75);
}

.cta-form .form-label {
    color: rgba(248, 250, 252, 0.98);
}

.cta-form .form-checkbox {
    color: rgba(248, 250, 252, 0.9);
}

.cta-form .form-checkbox a {
    color: #93C5FD;
}

/* Усиливаем контраст всего текста в финальной форме на тёмном фоне */
.cta-form .form-message,
.cta-form .form-footnote {
    color: rgba(248, 250, 252, 0.92);
}

.cta-form .form-message.is-error {
    color: #FECACA;
}

.cta-form .form-message.is-success {
    color: #BBF7D0;
}

/* На очень тёмном фоне делаем границы и плейсхолдеры светлее */
.cta-form .form-input,
.cta-form .form-textarea {
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.45);
}

.cta-form .form-input::placeholder,
.cta-form .form-textarea::placeholder {
    color: rgba(241, 245, 249, 0.85);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid .form-group {
    margin-top: 0;
}

.cta-form .form-checkbox {
    color: rgba(226, 232, 240, 0.9);
}

.cta-form .form-checkbox a {
    color: #38BDF8;
}

.cta-form .form-message {
    background: rgba(30, 41, 59, 0.6);
    color: rgba(226, 232, 240, 0.95);
    border-left-color: transparent;
}

.cta-form .form-message.is-success {
    background: rgba(34, 197, 94, 0.18);
    color: #bbf7d0;
    border-left-color: #34d399;
}

.cta-form .form-message.is-error {
    background: rgba(248, 113, 113, 0.2);
    color: #fecaca;
    border-left-color: #f87171;
}

.cta-form .btn-primary {
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.4);
}

.cta-form .form-footnote {
    color: rgba(226, 232, 240, 0.7);
}

/* Responsive */
@media (max-width: 1200px) {
    .pilot-pro-hero__layout {
        grid-template-columns: 1fr;
    }

    .pilot-pro-hero__form {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-trust {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .cta-layout {
        grid-template-columns: 1fr;
    }

    .sprint-layout {
        grid-template-columns: 1fr;
    }

    .sprint-timeline {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .pilot-pro-hero {
        padding: 120px 0 80px;
    }

    .pilot-pro-link {
        margin-top: 8px;
        display: block;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .pilot-pro-hero__form .form-card {
        padding: 28px 24px;
    }

    .pilot-pro-fit,
    .pilot-pro-program,
    .pilot-pro-deliverables,
    .pilot-pro-sprint,
    .pilot-pro-showcase,
    .pilot-pro-testimonials,
    .pilot-pro-team,
    .pilot-pro-faq,
    .pilot-pro-cta {
        padding: 72px 0;
    }

    .program-steps li,
    .deliverable-card,
    .timeline-card,
    .showcase-card,
    .testimonial-card,
    .team-card,
    .faq-accordion details {
        padding: 24px;
    }

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

    .cta-form .form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 560px) {
    .hero-badge {
        font-size: 12px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

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

    .sprint-timeline {
        grid-template-columns: 1fr;
    }

    .form-card {
        border-radius: 20px;
    }
}
