        /* ============================================
                   CSS VARIABLES (Brand Colors)
                   ============================================ */
        :root {
            --primary-navy: #1A2B4C;
            --primary-orange: #F15A24;
            --secondary-red: #E31E24;
            --bg-light: #F4F7FA;
            --bg-white: #FFFFFF;
            --text-dark: #333333;
            --text-medium: #666666;
            --footer-dark: #0F1A2E;
            --shadow-light: 0 10px 30px rgba(26, 43, 76, 0.08);
            --shadow-hover: 0 20px 40px rgba(26, 43, 76, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        /* ============================================
                   RESET & BASE
                   ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background: var(--bg-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============================================
                   TYPOGRAPHY
                   ============================================ */
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-navy);
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
        h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.5rem; }
        h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
        h4 { font-size: 1.1rem; }

        .section-tag {
            display: inline-block;
            color: var(--primary-orange);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .section-title {
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-medium);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem auto;
        }

        .text-center { text-align: center; }
        .text-orange { color: var(--primary-orange); }

        /* ============================================
                   BUTTONS
                   ============================================ */
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary-orange);
            color: var(--bg-white);
            box-shadow: 0 4px 15px rgba(241, 90, 36, 0.35);
        }
        .btn-primary:hover {
            background: #D94A1A;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 90, 36, 0.45);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
        }
        .btn-secondary:hover {
            background: var(--primary-orange);
            color: var(--bg-white);
            transform: translateY(-2px);
        }

        .btn-white {
            background: var(--bg-white);
            color: var(--primary-navy);
        }
        .btn-white:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        .btn-navy {
            background: var(--primary-navy);
            color: var(--bg-white);
        }
        .btn-navy:hover {
            background: #0F1A2E;
            transform: translateY(-2px);
        }

        /* ============================================
                   HEADER / NAVIGATION
                   ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
            z-index: 1000;
            padding: 12px 0;
            transition: var(--transition);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: var(--logo-height, 40px);
            width: auto;
            max-width: var(--logo-max-width, 200px);
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--primary-orange);
        }

        .nav-cta .btn {
            padding: 10px 28px;
            font-size: 0.9rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-navy);
            cursor: pointer;
            background: none;
            border: none;
        }

        /* ============================================
                   HERO SECTION
                   ============================================ */
        .hero {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .hero-content {
            padding-top: 10px;
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-orange);
            color: var(--bg-white);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .hero h1 {
            margin-bottom: 1rem;
        }

        .hero h1 span {
            color: var(--primary-orange);
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-medium);
            max-width: 520px;
            margin-bottom: 2rem;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(26, 43, 76, 0.08);
        }

        .hero-stats .stat {
            text-align: left;
        }
        .hero-stats .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-navy);
        }
        .hero-stats .stat-label {
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        /* ============================================
                   HERO FORM (Quick Contact)
                   ============================================ */
        .hero-form-wrapper {
            background: var(--bg-white);
            padding: 30px 28px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-hover);
            border-top: 5px solid var(--primary-orange);
        }

        .hero-form-wrapper h3 {
            margin-bottom: 4px;
            font-size: 1.2rem;
        }

        .hero-form-wrapper .form-sub {
            color: var(--text-medium);
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
        }

        .hero-form-wrapper .form-group {
            margin-bottom: 14px;
        }

        .hero-form-wrapper .form-group label {
            font-weight: 600;
            font-size: 0.8rem;
            display: block;
            margin-bottom: 3px;
            color: var(--text-dark);
        }

        .hero-form-wrapper .form-group input,
        .hero-form-wrapper .form-group select,
        .hero-form-wrapper .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9rem;
            transition: var(--transition);
            background: var(--bg-light);
        }

        .hero-form-wrapper .form-group input:focus,
        .hero-form-wrapper .form-group select:focus,
        .hero-form-wrapper .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.1);
        }

        .hero-form-wrapper .form-group textarea {
            resize: vertical;
            min-height: 70px;
        }

        .hero-form-wrapper .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .hero-form-wrapper .btn {
            width: 100%;
            padding: 14px;
            font-size: 1rem;
        }

        .hero-form-wrapper .form-footer {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-medium);
            margin-top: 12px;
        }

        .hero-form-wrapper .form-footer a {
            color: var(--primary-orange);
            font-weight: 600;
        }

        /* Floating trust badge on hero */
        .trust-badge-float {
            position: absolute;
            bottom: 20px;
            right: 30px;
            background: var(--bg-white);
            padding: 12px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-hover);
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .trust-badge-float img {
            height: 32px;
        }

        /* ============================================
                   SECTION COMMON
                   ============================================ */
        section {
            padding: 80px 0;
        }

        .section-bg-light {
            background: var(--bg-light);
        }

        /* ============================================
                   PRODUCT CARDS - New Design
                   ============================================ */
        .product-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }

        .product-card {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            height: 280px;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .product-card-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: var(--bg-light);
            transition: var(--transition);
            position: relative;
        }

        .product-card-image img {
            max-width: 100%;
            max-height: 180px;
            object-fit: contain;
            transition: var(--transition);
        }

        .product-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-navy);
            color: var(--bg-white);
            padding: 24px 20px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-card-overlay h4 {
            color: var(--primary-orange);
            margin-bottom: 6px;
            font-size: 1rem;
        }

        .product-card-overlay p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .product-card-overlay .spec-label {
            font-weight: 600;
            color: var(--primary-orange);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-card-overlay .spec-value {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.9);
        }

        .product-card-overlay .spec-row {
            margin-bottom: 3px;
        }

        .product-card:hover .product-card-image {
            opacity: 0;
        }

        .product-card:hover .product-card-overlay {
            opacity: 1;
            visibility: visible;
        }

        .product-card-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 43, 76, 0.9);
            color: var(--bg-white);
            padding: 12px 16px;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .product-card:hover .product-card-name {
            background: rgba(241, 90, 36, 0.9);
        }

        /* ============================================
                   WHY PARTNER (Cards)
                   ============================================ */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }

        .benefit-card {
            background: var(--bg-white);
            padding: 30px 24px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }
        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-bottom-color: var(--primary-orange);
        }

        .benefit-card .icon {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }
        .benefit-card h4 {
            margin-bottom: 0.5rem;
        }
        .benefit-card p {
            font-size: 0.95rem;
            color: var(--text-medium);
        }

        /* ============================================
                   ABOUT
                   ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
        }

        .about-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 1.5rem;
        }

        .about-stat {
            background: var(--bg-light);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
        }
        .about-stat .number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-orange);
        }
        .about-stat .label {
            font-size: 0.85rem;
            color: var(--text-medium);
        }

        /* ============================================
                   INDUSTRIES - 10 with Icons
                   ============================================ */
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            margin-top: 2rem;
        }

        .industry-item {
            background: var(--bg-white);
            padding: 24px 16px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }
        .industry-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .industry-item .icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .industry-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-navy);
        }

        /* ============================================
                   DISTRIBUTOR BENEFITS (Cards)
                   ============================================ */
        .distributor-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-top: 2rem;
        }

        .distributor-benefit {
            background: var(--bg-white);
            padding: 24px 20px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }
        .distributor-benefit:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .distributor-benefit .icon {
            font-size: 2.2rem;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }
        .distributor-benefit h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        .distributor-benefit p {
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        /* ============================================
                   PROCESS STEPS
                   ============================================ */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 30px;
            margin-top: 2rem;
            counter-reset: step;
        }

        .process-step {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-white);
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: var(--shadow-light);
            font-weight: 500;
            counter-increment: step;
        }
        .process-step::before {
            content: counter(step);
            background: var(--primary-orange);
            color: var(--bg-white);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* ============================================
                   FAQ (Accordion)
                   ============================================ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            margin-bottom: 12px;
            box-shadow: var(--shadow-light);
            overflow: hidden;
        }

        .faq-question {
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .faq-question:hover {
            background: var(--bg-light);
        }
        .faq-question i {
            transition: var(--transition);
            color: var(--primary-orange);
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
            color: var(--text-medium);
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 24px 24px;
        }

        /* ============================================
                   FORM SECTION (Full Application)
                   ============================================ */
        .form-section {
            background: var(--primary-navy);
            color: var(--bg-white);
            padding: 80px 0;
        }

        .form-section .section-title {
            color: var(--bg-white);
        }
        .form-section .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

        .form-wrapper {
            background: var(--bg-white);
            padding: 50px;
            border-radius: var(--border-radius);
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-dark);
            box-shadow: var(--shadow-hover);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .form-grid .full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .form-group label .optional {
            font-weight: 400;
            color: var(--text-medium);
            font-size: 0.8rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            text-align: center;
            margin-top: 1.5rem;
        }

        .form-submit .btn {
            padding: 16px 60px;
            font-size: 1.1rem;
        }

        /* ============================================
                   FINAL CTA
                   ============================================ */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--footer-dark) 100%);
            color: var(--bg-white);
            text-align: center;
            padding: 80px 0;
        }

        .final-cta h2 {
            color: var(--bg-white);
        }
        .final-cta p {
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 1rem auto 2rem;
            font-size: 1.1rem;
        }

        /* ============================================
                   FOOTER
                   ============================================ */
        .footer {
            background: var(--footer-dark);
            color: rgba(255,255,255,0.7);
            padding: 40px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer img {
            height: var(--footer-logo-height, 36px);
            width: auto;
            max-width: var(--footer-logo-max-width, 200px);
            object-fit: contain;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-orange);
        }

        /* ============================================
                   STICKY CTA (Mobile)
                   ============================================ */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-white);
            padding: 12px 24px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            z-index: 999;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .sticky-cta .btn {
            flex: 1;
            padding: 12px;
            font-size: 0.9rem;
        }

        .sticky-cta .whatsapp-btn {
            background: #25D366;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 16px;
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* ============================================
                   RESPONSIVE
                   ============================================ */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-content {
                text-align: center;
            }
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-ctas {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-form-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .trust-badge-float {
                display: none;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-wrapper {
                padding: 30px 20px;
            }
            .product-cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 8px 0;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 16px;
                padding: 20px 0;
                background: var(--bg-white);
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                box-shadow: var(--shadow-light);
            }
            .nav-links.open {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .hero {
                padding: 100px 0 40px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-stats {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            .hero-form-wrapper .form-row {
                grid-template-columns: 1fr;
            }
            .benefits-grid {
                grid-template-columns: 1fr 1fr;
            }
            .distributor-benefits {
                grid-template-columns: 1fr 1fr;
            }
            .process-steps {
                flex-direction: column;
                align-items: stretch;
            }
            .process-step {
                border-radius: 8px;
            }
            .sticky-cta {
                display: flex;
            }
            section {
                padding: 60px 0;
            }
            .hero-form-wrapper {
                padding: 24px 18px;
            }
            .product-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .industry-grid {
                grid-template-columns: 1fr 1fr;
            }
            .product-card {
                height: 220px;
            }
            .product-card-image img {
                max-height: 120px;
            }
        }

        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .distributor-benefits {
                grid-template-columns: 1fr;
            }
            .about-stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }
            .hero-ctas .btn {
                width: 100%;
            }
            .product-cards-grid {
                grid-template-columns: 1fr;
            }
            .industry-grid {
                grid-template-columns: 1fr 1fr;
            }
            .product-card {
                height: 200px;
            }
        }

/* ============================================
   WORDPRESS SPECIFIC ADJUSTMENTS
   ============================================ */

body.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .header { top: 46px; }
}

html { font-size: var(--base-font-size, 16px); }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary-navy);
    color: #fff;
    padding: 12px 20px;
    z-index: 10000;
}
.skip-link:focus { left: 10px; top: 10px; }

.freture-empty-notice {
    background: #fff3cd;
    border: 1px dashed #e0a800;
    color: #664d03;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 20px auto;
    max-width: 700px;
    text-align: center;
}

.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    grid-column: 1 / -1;
}
.form-message.success { background: #e6f7ee; color: #0a7a3d; border: 1px solid #b7e6cc; }
.form-message.error { background: #fdeaea; color: #b3261e; border: 1px solid #f5c2c0; }
.form-message.show { display: block; }

button[type="submit"]:disabled,
.btn.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   PARTNERSHIP CRITERIA (Expectations)
   ============================================ */
.expectations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}
.expectations-col {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}
.expectations-col h3 {
    color: var(--primary-orange);
}
.expectations-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.expectations-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.expectations-list li:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
    .expectations-grid {
        grid-template-columns: 1fr;
    }
}
