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

        :root {
            --primary: #F57C3B;
            --primary-hover: #e66a2a;
            --dark: #2c2c2c;
            --dark-blue: #1e3a5f;
            --white: #ffffff;
            --light-bg: #f9f9f9;
            --text-dark: #2c2c2c;
            --text-muted: #666666;
            --border: #e0e0e0;
            --accent-bg: #fff5f0;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-primary: 0 8px 24px rgba(245, 124, 59, 0.3);
        }

        body {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-dark);
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .container {
            max-width: 1216px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
                width: 100%;
                margin: 0;
            }
        }

        /* ========================================
           SECTIONS
           ======================================== */

        .section {
            padding: 80px 0;
            width: 100%;
            overflow-x: hidden;
        }

        @media (max-width: 1024px) {
            .section {
                padding: 70px 0;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 48px 0;
            }
        }

        @media (max-width: 1024px) {
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 24px 0;
            }
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
                margin-bottom: 16px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
                margin-bottom: 12px;
            }
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 48px;
        }

        @media (max-width: 768px) {
            .section-subtitle {
                font-size: 14px;
                margin-bottom: 36px;
            }
        }

        @media (max-width: 480px) {
            .section-subtitle {
                font-size: 13px;
                margin-bottom: 24px;
            }
        }
        .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            padding: 20px 0;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            color: var(--white);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: var(--white);
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            position: relative;
            top: 70px;
            min-height: 800px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            background-image: url('https://landing-stage.goedmo.com/wp-content/uploads/2026/01/uni.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 1024px) {
            .hero {
                min-height: 700px;
                background-attachment: scroll;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 600px;
                top: 60px;
                background-attachment: scroll;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: 500px;
                top: 50px;
                background-attachment: scroll;
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(44, 44, 44, 0.75);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 50px 0;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 30px 0;
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 32px;
        }

        @media (max-width: 480px) {
            .hero-badge {
                margin-bottom: 20px;
				margin-top: 45px;
            }
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .hero-badge span {
            color: var(--white);
            font-size: 14px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 32px;
            max-width: 700px;
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: 48px;
                margin-bottom: 28px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 24px;
                margin-bottom: 16px;
            }
        }

        .hero-title .highlight {
            color: var(--primary);
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 540px;
        }

        @media (max-width: 768px) {
            .hero-description {
                font-size: 16px;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-description {
                font-size: 14px;
                margin-bottom: 20px;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
            width: 100%;
            max-width: 500px;
        }

        @media (max-width: 768px) {
            .hero-buttons {
                margin-bottom: 32px;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 24px;
            }
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero-stats {
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                flex-wrap: wrap;
                gap: 16px;
            }
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
        }

        @media (max-width: 480px) {
            .stat-number {
                font-size: 24px;
            }
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 480px) {
            .stat-label {
                font-size: 12px;
            }
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 480px) {
            .stat-divider {
                display: none;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Open Sans', sans-serif;
            text-decoration: none;
            white-space: nowrap;
            min-width: fit-content;
        }

        @media (max-width: 480px) {
            .btn {
                padding: 12px 20px;
                font-size: 14px;
                width: 100%;
                justify-content: center;
            }
        }

        .btn-lg {
            padding: 16px 40px;
            font-size: 16px;
        }

        @media (max-width: 480px) {
            .btn-lg {
                padding: 14px 20px;
                font-size: 14px;
                width: 100%;
            }
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            box-shadow: var(--shadow-primary);
        }

        .btn-outline {
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--accent-bg);
        }

        /* ========================================
           GRIDS & CARDS
           ======================================== */

        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        @media (max-width: 1200px) {
            .challenges-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .challenges-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 32px;
            }
        }

        @media (max-width: 480px) {
            .challenges-grid {
                gap: 12px;
                margin-bottom: 20px;
            }
        }

        .challenge-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        @media (max-width: 480px) {
            .challenge-card {
                padding: 20px;
            }
        }

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

        .challenge-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .challenge-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }

        @media (max-width: 480px) {
            .challenge-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 16px;
            }

            .challenge-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        .challenge-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        @media (max-width: 480px) {
            .challenge-title {
                font-size: 16px;
            }
        }

        .challenge-description {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        @media (max-width: 480px) {
            .challenge-description {
                font-size: 13px;
            }
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .results-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .results-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        .result-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            height: 100%;
        }

        @media (max-width: 480px) {
            .result-card {
                padding: 24px;
            }
        }

        .result-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .result-header {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        @media (max-width: 480px) {
            .result-header {
                gap: 16px;
            }
        }

        .result-icon {
            width: 56px;
            height: 56px;
            background: var(--accent-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .result-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        @media (max-width: 480px) {
            .result-icon {
                width: 48px;
                height: 48px;
            }

            .result-icon svg {
                width: 24px;
                height: 24px;
            }
        }

        .result-content {
            flex: 1;
        }

        .result-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        @media (max-width: 480px) {
            .result-title {
                font-size: 16px;
            }
        }

        .result-description {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        @media (max-width: 480px) {
            .result-description {
                font-size: 13px;
            }
        }

        .result-metric {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
        }

        @media (max-width: 480px) {
            .result-metric {
                font-size: 13px;
            }
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                gap: 12px;
                margin-bottom: 20px;
            }
        }

        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        @media (max-width: 480px) {
            .feature-card {
                padding: 16px;
            }
        }

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

        .feature-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }

        @media (max-width: 480px) {
            .feature-icon {
                width: 40px;
                height: 40px;
            }

            .feature-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        .feature-icon.accent {
            background: var(--accent-bg);
        }

        .feature-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: var(--accent-bg);
            padding: 4px 10px;
            border-radius: 4px;
        }

        .feature-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        @media (max-width: 480px) {
            .feature-title {
                font-size: 14px;
            }
        }

        .feature-description {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        @media (max-width: 480px) {
            .feature-description {
                font-size: 12px;
            }
        }

        /* ========================================
           SECTION STYLES (Previously duplicated and incorrectly placed rules moved/removed)
           ======================================== */
        .section {
            padding: 100px 0; /* Updated from 80px */
        }

        .section-light {
            background: var(--white);
            width: 100%;
            box-sizing: border-box;
            padding-left: 0;
            padding-right: 0;
        }

        .section-gray {
            background: var(--light-bg);
            width: 100%;
            box-sizing: border-box;
            padding-left: 0;
            padding-right: 0;
        }

        .cta-section {
            background: var(--dark-blue);
            color: var(--white);
            width: 100%;
            box-sizing: border-box;
            padding: 80px 0;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .cta-section {
                padding: 48px 0;
            }
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            line-height: 1.3;
            color: var(--text-dark);
        }

        .section-title .highlight {
            color: var(--primary);
        }

        .section-subtitle {
            font-size: 18px;
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 64px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========================================
           CHALLENGES SECTION (Updated and potentially duplicated styles integrated)
           ======================================== */
        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Updated from repeat(4, 1fr) */
            gap: 24px;
            /* margin-bottom: 48px; - Removed as per implied update */
        }

        .challenge-card {
            background: var(--white);
            padding: 32px;
            border-radius: 16px; /* Updated from 12px */
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border); /* Added border */
            transition: all 0.3s ease;
        }

        .challenge-card:hover {
            transform: translateY(-8px); /* Updated from -4px */
            box-shadow: var(--shadow-card-hover);
        }

        .challenge-icon {
            width: 56px; /* Updated from 48px */
            height: 56px; /* Updated from 48px */
            border-radius: 12px;
            background: var(--accent-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .challenge-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }

        .challenge-title {
            font-size: 20px; /* Updated from 18px */
            font-weight: 700;
            margin-bottom: 12px; /* Updated from 8px */
            color: var(--text-dark);
        }

        .challenge-description {
            font-size: 15px; /* Updated from 14px */
            line-height: 1.6;
            color: var(--text-muted);
        }

        /* Duplicate section removed - proper styles defined above */

        .result-title {
            font-size: 20px; /* Updated from 18px */
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark); /* Added color */
        }

        .result-description {
            font-size: 15px; /* Updated from 14px */
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 16px; /* Updated from 12px */
        }

        .result-metric {
            display: inline-block;
            background: var(--accent-bg); /* Added background */
            color: var(--primary);
            padding: 6px 16px; /* Updated padding */
            border-radius: 100px; /* Updated border-radius */
            font-size: 14px;
            font-weight: 600; /* Updated font-weight */
        }

        /* ========================================
           SOLUTIONS SECTION (New section)
           ======================================== */
        .platform-header {
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .platform-header-orange {
            background: linear-gradient(135deg, var(--primary) 0%, #ff9a5a 100%);
        }

        .platform-header-blue {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
        }

        .platform-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .platform-icon svg {
            width: 24px;
            height: 24px;
            color: var(--white);
        }

        .platform-info h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .platform-info p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Updated from repeat(4, 1fr) */
            gap: 16px; /* Updated from 24px */
            margin-bottom: 48px; /* Updated from 40px */
        }

        .feature-card {
            background: var(--white);
            padding: 24px;
            border-radius: 12px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border); /* Added border */
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .feature-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--light-bg); /* Updated background */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon.accent {
            background: var(--accent-bg);
        }

        .feature-icon svg {
            width: 20px; /* Updated from 24px */
            height: 20px; /* Updated from 24px */
            color: var(--text-dark); /* Updated color */
        }

        .feature-icon.accent svg {
            color: var(--primary); /* Added specific color for accent */
        }

        .feature-tag {
            font-size: 12px;
            font-weight: 500; /* Updated font-weight */
            color: var(--text-muted); /* Updated color */
            background: var(--light-bg); /* Updated background */
            padding: 4px 12px; /* Updated padding */
            border-radius: 100px; /* Updated border-radius */
        }

        .feature-title {
            font-size: 18px; /* Updated from 16px */
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark); /* Added color */
        }

        .feature-description {
            font-size: 14px; /* Updated from 13px */
            line-height: 1.6;
            color: var(--text-muted);
        }

        /* ========================================
           INTEGRATIONS SECTION
           ======================================== */
/*         .integrations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
        } */

       .integration-row {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 30px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .integration-new-home-card {
            display: flex;
            align-items: center;
            background: #f5eefd;
            border-radius: 14px;
            padding: 18px 18px;
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.02);
            min-width: 220px;
            gap: 16px;
            position: relative;
            cursor: pointer;
        }

        .integration-logo {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #fff;
        }

        .integration-title {
            font-size: 1.13rem;
            font-weight: 600;
            color: #231452;
        }

        .integration-type {
            font-size: 0.9rem;
            color: #8c7aac;
        }

        .integration-arrow {
            font-size: 1.3rem;
            color: #c6b1de;
            margin-left: auto;
        }

        .integration-btn {
            margin: 30px auto;
            background: #8000C7;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 16px 32px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 12px rgba(118, 26, 236, 0.2);
            cursor: pointer;
        }

        .integration-logos-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 22px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .integration-small-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: #fff;
        }

        @media (max-width: 700px) {

            .integration-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .integration-new-home-card { padding: 10px;
                min-width: 180px;
                gap: 5px;
            }
        }

        /* ========================================
           TESTIMONIALS SECTION
           ======================================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: -12px;
            left: -12px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quote-icon svg {
            width: 16px;
            height: 16px;
            color: var(--white);
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-rating svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
            fill: var(--primary);
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .testimonial-divider {
            width: 100%;
            height: 1px;
            background: var(--border);
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-muted);
        }

        .author-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .author-role {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .author-company {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--primary);
        }

        .author-company .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
        }

        .testimonial-stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .testimonial-stat {
            text-align: center;
        }

        .testimonial-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .testimonial-stat-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .testimonial-stat-divider {
            width: 1px;
            height: 48px;
            background: var(--border);
        }

        /* ========================================
           FAQ SECTION
           ======================================== */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 16px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Open Sans', sans-serif;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--accent-bg);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-muted);
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e3a5f 0%, #152a45 100%);
        }

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

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        @media (max-width: 480px) {
            .cta-badge {
                margin-bottom: 16px;
            }
        }

        .cta-badge svg {
            width: 16px;
            height: 16px;
            color: var(--white);
        }

        .cta-badge span {
            color: var(--white);
            font-size: 14px;
            font-weight: 500;
        }

        .cta-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.2;
			color: white !important;
        }

        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
.know-more-cta-buttons a{
	background: #F57C3B;
	color: white;
	border: none;
	display: inline-block;
    text-transform: uppercase;
    padding: 12px 30px 11px 30px;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
	border-radius: 25px;
}
.know-more-second a{
	background: #1e3a5f;
}
.know-more-cta-buttons a:hover {
	background: #F57C3B;
	color: white;
	border:none;
}

        .btn-white {
            background: var(--white);
            color: var(--text-dark);
            border: 2px solid var(--white);
        }

        .btn-white:hover {
            background: transparent;
            color: var(--white);
        }

        .cta-features {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-feature svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        .cta-feature span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .cta-dashboard {
            position: relative;
        }

        .dashboard-notification {
            position: absolute;
            top: -16px;
            right: -16px;
            background: var(--white);
            border-radius: 12px;
            padding: 12px 16px;
            box-shadow: var(--shadow-card-hover);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
        }

        .notification-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #22c55e;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-icon svg {
            width: 16px;
            height: 16px;
            color: var(--white);
        }

        .notification-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .notification-time {
            font-size: 12px;
            color: var(--text-muted);
        }

        .dashboard-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            box-shadow: var(--shadow-card-hover);
        }

        .browser-dots {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
        }

        .browser-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .browser-dot.red { background: #ef4444; }
        .browser-dot.yellow { background: #eab308; }
        .browser-dot.green { background: #22c55e; }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .dashboard-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .dashboard-growth {
            font-size: 14px;
            font-weight: 600;
            color: #22c55e;
        }

        .dashboard-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .progress-item {
            margin-bottom: 16px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .progress-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .progress-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .progress-bar {
            height: 8px;
            background: var(--light-bg);
            border-radius: 100px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            border-radius: 100px;
        }

        .progress-fill.orange { background: var(--primary); }
        .progress-fill.green { background: #22c55e; }
        .progress-fill.yellow { background: #eab308; }

        .ai-processing {
            position: absolute;
            bottom: 48px;
            left: -24px;
            background: var(--primary);
            border-radius: 12px;
            padding: 16px;
            box-shadow: var(--shadow-card-hover);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ai-spinner {
            width: 32px;
            height: 32px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: var(--white);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        .ai-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
        }

        .ai-count {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ========================================
           INTEGRATIONS
           ======================================== */

        .integration-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 24px;
        }

        @media (max-width: 1200px) {
            .integration-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .integration-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .integration-row {
                gap: 12px;
            }
        }

        .integration-new-home-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 480px) {
            .integration-new-home-card {
                padding: 16px;
                gap: 12px;
            }
        }

        .integration-new-home-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .integration-logo {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        @media (max-width: 480px) {
            .integration-logo {
                width: 40px;
                height: 40px;
            }
        }

        .integration-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        @media (max-width: 480px) {
            .integration-title {
                font-size: 14px;
            }
        }

        .integration-logos-row {
            display: grid;
            grid-template-columns: repeat(9, 1fr);
            gap: 12px;
            width: 100%;
            box-sizing: border-box;
        }

        @media (max-width: 1200px) {
            .integration-logos-row {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        @media (max-width: 768px) {
            .integration-logos-row {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .integration-logos-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
        }

        .integration-small-logo {
            width: 100%;
            height: auto;
            max-width: 100px;
            object-fit: contain;
            filter: brightness(1) contrast(1.1);
        }

        @media (max-width: 480px) {
            .integration-small-logo {
                max-width: 70px;
            }
        }

        /* ========================================
           TESTIMONIALS
           ======================================== */

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

        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-grid {
                gap: 12px;
            }
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        @media (max-width: 480px) {
            .testimonial-card {
                padding: 20px;
            }
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-card-hover);
        }

        .quote-icon {
            width: 36px;
            height: 36px;
            background: var(--accent-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .quote-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        @media (max-width: 480px) {
            .quote-icon {
                width: 32px;
                height: 32px;
            }

            .quote-icon svg {
                width: 18px;
                height: 18px;
            }
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-rating svg {
            width: 16px;
            height: 16px;
            fill: #F57C3B;
        }

        @media (max-width: 480px) {
            .testimonial-rating svg {
                width: 14px;
                height: 14px;
            }
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        @media (max-width: 480px) {
            .testimonial-text {
                font-size: 13px;
            }
        }

        .testimonial-divider {
            height: 1px;
            background: var(--border);
            margin-bottom: 16px;
        }

        .testimonial-author {
            display: flex;
            gap: 12px;
        }

        @media (max-width: 480px) {
            .testimonial-author {
                gap: 10px;
            }
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .author-avatar {
                width: 40px;
                height: 40px;
            }
        }

        .author-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        @media (max-width: 480px) {
            .author-name {
                font-size: 13px;
            }
        }

        .author-role {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        @media (max-width: 480px) {
            .author-role {
                font-size: 11px;
            }
        }

        .author-company {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-muted);
        }

        @media (max-width: 480px) {
            .author-company {
                font-size: 11px;
            }
        }

        .author-company .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22c55e;
        }

        /* ========================================
           PLATFORM SECTION
           ======================================== */

        .platform-header {
            border-radius: 12px;
            padding: 32px;
            display: flex;
            align-items: center;
            gap: 24px;
            margin-bottom: 32px;
        }

        @media (max-width: 768px) {
            .platform-header {
                padding: 24px;
                gap: 16px;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 480px) {
            .platform-header {
                padding: 20px;
                gap: 12px;
                margin-bottom: 16px;
            }
        }

        .platform-header-orange {
            background: linear-gradient(135deg, #FF9965 0%, #F57C3B 100%);
            color: var(--white);
        }

        .platform-header-blue {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
            color: var(--white);
        }

        .platform-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .platform-icon {
                width: 48px;
                height: 48px;
            }
        }

        .platform-icon svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        @media (max-width: 480px) {
            .platform-icon svg {
                width: 24px;
                height: 24px;
            }
        }

        .platform-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        @media (max-width: 480px) {
            .platform-info h3 {
                font-size: 16px;
            }
        }

        .platform-info p {
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 480px) {
            .platform-info p {
                font-size: 12px;
            }
        }

        .know-more-cta-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 48px;
        }

        @media (max-width: 480px) {
            .know-more-cta-buttons {
                margin-bottom: 32px;
            }
        }

        .know-more-cta-buttons a {
            display: inline-block;
            padding: 12px 32px;
            background: var(--primary);
            color: var(--white);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .know-more-cta-buttons a:hover {
            background: var(--primary-hover);
        }

        @media (max-width: 480px) {
            .know-more-cta-buttons a {
                padding: 10px 24px;
                font-size: 14px;
            }
        }
        .footer {
            background: var(--dark);
            padding: 64px 0 32px;
            color: var(--white);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .footer-brand-icon {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-brand-icon svg {
            width: 20px;
            height: 20px;
            color: var(--white);
        }

        .footer-brand-text {
            font-size: 18px;
            font-weight: 700;
        }

        .footer-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
        }

        .footer-copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ========================================
           RESPONSIVE STYLES
           ======================================== */
        @media (max-width: 1024px) {
            .cta-grid {
                grid-template-columns: 1fr;
            }

            .cta-dashboard {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .hero-stats {
                gap: 16px;
            }

            .stat-divider {
                display: none;
            }

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

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

        /* ========================================
           ANIMATIONS
           ======================================== */
/*         .animate-on-scroll {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        } */
