        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --black: #000000;
            --dark: #1a1a1a;
            --gray: #333333;
            --light-gray: #666666;
            --border: #e5e5e5;
            --white: #ffffff;
            --off-white: #f8f8f8;
            --blue: #3E89EC;
            --blue-light: #6BA6F3;
            --blue-dark: #3E89EC;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
        }

        /* Header - Minimal with Underline Effect */
        .header {
            background: rgba(0, 0, 0, 0.98);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 3px;
        }

        .logo::first-letter {
            color: var(--blue);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--blue);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-nav {
            background: var(--blue);
            color: var(--white);
            padding: 0.7rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-nav:hover {
            background: var(--blue-dark);
            transform: scale(1.05);
        }

        /* Hero - Asymmetric Split Layout */
        .hero {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            min-height: 85vh;
            align-items: center;
            gap: 4rem;
            padding: 0 4rem;
            background: var(--white);
        }

        .hero-text {
            padding-right: 3rem;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 102, 255, 0.1);
            color: var(--blue);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 102, 255, 0.2);
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            color: var(--black);
            letter-spacing: -2px;
        }

        .hero h1 .text-blue {
            display: block;
            color: var(--blue);
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--light-gray);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-large {
            padding: 1.2rem 3rem;
            font-size: 1.05rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-blue {
            background: var(--blue);
            color: var(--white);
        }

        .btn-blue:hover {
            background: var(--blue-dark);
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--black);
            border: 2px solid var(--black);
        }

        .btn-outline:hover {
            background: var(--black);
            color: var(--white);
        }

        .hero-visual {
            background: 
            linear-gradient(360deg, #00000079 0%, #00000044 100%),
             url("/src/assets/contentImages/Biometricf.png") center/cover no-repeat;
            height: 500px;
                background-size: cover;
    background-position: center right -350px; /* move image to the right */

            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .key-features{
            
    background: url("/src/assets/contentImages/bg1.webp") center/cover no-repeat fixed;
    min-height: 100vh;

        }

        .hero-visual::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1) ;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .hero-visual i {
            font-size: 12rem;
            color: rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
        }

        /* Section Common Styles */
        .section {
            padding: 5rem 4rem;

        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
         .container1 {
            /* max-width: 1400px; */
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 4rem;
        }

        .section-label {
            color: var(--blue);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--light-gray);
            max-width: 700px;
            line-height: 1.7;
        }

        /* How It Works - Horizontal Flow */
        .workflow-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
        }

        .workflow-flow::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
        }

        .flow-step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .flow-circle {
            width: 100px;
            height: 100px;
            background: var(--white);
            border: 4px solid var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }

        .flow-step:hover .flow-circle {
            background: var(--blue);
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
        }

        .flow-circle i {
            font-size: 2.5rem;
            color: var(--blue);
            transition: all 0.3s;
        }

        .flow-step:hover .flow-circle i {
            color: var(--white);
        }

        .flow-step h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--black);
        }

        .flow-step p {
            font-size: 1rem;
            color: var(--light-gray);
            line-height: 1.7;
            padding: 0 1rem;
        }

        /* Key Features - Asymmetric Grid */
        .features-asymmetric {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature-tile {
            /* background: var(--off-white); */
            padding: 3rem 2.5rem;
            border-radius: 25px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.288);
    backdrop-filter: blur(2px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(47, 47, 47, 0.053);
    transition: transform 0.3s ease;
    border-width: 1px;
    border-color: #8989894a;
        }

        .feature-tile::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--blue);
            transition: top 0.4s;
        }

        .feature-tile:hover::before {
            top: 0;
        }

        .feature-tile:hover {
            color: var(--white);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-tile.wide {
            /* grid-column: span 1; */
        }

        .feature-tile > * {
            position: relative;
            z-index: 1;
        }

        .feature-tile i {
            font-size: 3rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
            display: block;
            transition: all 0.3s;
        }

        .feature-tile:hover i {
            color: var(--white);
            /* transform: scale(1.1); */
        }

        .feature-tile h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .feature-tile p {
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Biometric Systems - Side by Side Blocks */
        .systems-blocks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 4rem;
            border-radius: 25px;
            overflow: hidden;
        }

        .system-block {
            background: var(--black);
            padding: 5rem 3rem;
            text-align: center;
            position: relative;
            transition: all 0.4s;
        }

        /* .system-block::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--blue);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .system-block:hover::after {
            opacity: 1;
        } */

        .system-block > * {
            position: relative;
            z-index: 1;
        }

        .system-block i {
            font-size: 5rem;
            color: var(--blue);
            margin-bottom: 2rem;
            transition: all 0.4s;
        }

        .system-block:hover i {
            color: var(--white);
            transform: rotateY(360deg) scale(1.2);
        }

        .system-block h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.4;
        }

        /* Use Cases - Stacked Cards */
        .usecases-stack {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .usecase-box {
            background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
            padding: 3.5rem 3rem;
            border-radius: 20px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 2.5rem;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .usecase-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .usecase-box:hover {
            transform: translateX(10px);
            box-shadow: 0 25px 60px rgba(0, 102, 255, 0.4);
        }

        .usecase-box > * {
            position: relative;
            z-index: 1;
        }

        .usecase-icon-box {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
        }

        .usecase-icon-box i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .usecase-box h3 {
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1.3;
        }

        /* Reports - Grid Cards with Top Accent */
        .reports-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .report-box {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }

        .report-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--blue);
            border-radius: 15px 15px 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .report-box:hover {
            border-color: var(--blue);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
            transform: translateY(-10px);
        }

        .report-box:hover::before {
            transform: scaleX(1);
        }

        .report-box i {
            font-size: 3.5rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
        }

        .report-box h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--black);
        }

        .report-box p {
            font-size: 0.95rem;
            color: var(--light-gray);
            line-height: 1.6;
        }

        /* Benefits - Two Column with Icons Left */
        .benefits-rows {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .benefit-row {
            background: var(--off-white);
            border-radius: 20px;
            padding: 3rem;
            display: flex;
            gap: 2.5rem;
            align-items: flex-start;
            transition: all 0.4s;
            border: 2px solid transparent;
        }

        .benefit-row:hover {
            background: var(--blue);
            color: var(--white);
            border-color: var(--blue-dark);
            transform: translateX(15px);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3);
        }

        .benefit-icon-circle {
            width: 80px;
            height: 80px;
            background: var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .benefit-row:hover .benefit-icon-circle {
            background: var(--white);
            transform: rotate(360deg);
        }

        .benefit-icon-circle i {
            font-size: 2.2rem;
            color: var(--white);
            transition: all 0.3s;
        }

        .benefit-row:hover .benefit-icon-circle i {
            color: var(--blue);
        }

        .benefit-text h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--black);
            transition: color 0.3s;
        }

        .benefit-row:hover .benefit-text h3 {
            color: var(--white);
        }

        .benefit-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--light-gray);
            transition: color 0.3s;
        }

        .benefit-row:hover .benefit-text p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Stats Banner - Full Width Dark */
        .stats-banner {
            background: var(--black);
            padding: 4rem 4rem;
            margin: 5rem 0;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--blue);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Section - Centered Block */
        .cta-block {
            background: #ffffff;
            padding: 6rem 4rem;
            text-align: center;
        }

        .cta-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--black);
            letter-spacing: -1px;
        }

        .cta-inner h2 .highlight {
            color: var(--blue);
        }

        .cta-inner p {
            font-size: 1.3rem;
            color: var(--light-gray);
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        /* Footer */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 4rem 4rem 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--blue);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--blue);
        }

        .social-row {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.98);
            z-index: 9999;
            padding: 2rem;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }

        .mobile-nav ul li {
            margin: 2rem 0;
        }

        .mobile-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .mobile-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
        }

        /* Tablet Responsive (768px - 1024px) */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 4rem 2rem;
                gap: 3rem;
            }

            .hero-text {
                padding-right: 0;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero-visual {
                height: 400px;
            }

            .section {
                padding: 4rem 2rem;
            }

            .section-title {
                font-size: 3rem;
            }

            .features-asymmetric {
                grid-template-columns: 1fr 1fr;
            }

            .feature-tile.wide {
                grid-column: span 1;
            }

            .usecases-stack {
                grid-template-columns: 1fr;
            }

            .benefits-rows {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Mobile Responsive (max-width: 768px) */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
            }

            .header {
                padding: 1rem 0;
            }

            .nav-container {
                padding: 0 1.5rem;
            }

            .logo {
                font-size: 1.3rem;
                letter-spacing: 2px;
            }

            /* Hero Section */
            .hero {
                grid-template-columns: 1fr;
                padding: 3rem 1.5rem;
                min-height: auto;
                gap: 2rem;
            }

            .hero-tag {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
                margin-bottom: 1.5rem;
            }

            .hero h1 {
                font-size: 2.2rem;
                letter-spacing: -1px;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 1.05rem;
                margin-bottom: 2rem;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn-large {
                width: 100%;
                text-align: center;
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .hero-visual {
                height: 300px;
                border-radius: 20px;
            }

            .hero-visual i {
                font-size: 8rem;
            }

            /* Stats Banner */
            .stats-banner {
                padding: 3rem 1.5rem;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 0.9rem;
            }

            .stat-item::after {
                display: none;
            }

            /* Section Styles */
            .section {
                padding: 3rem 1.5rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-label {
                font-size: 0.8rem;
                letter-spacing: 2px;
            }

            .section-title {
                font-size: 2rem;
                letter-spacing: -0.5px;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 1.05rem;
            }

            /* Workflow Flow */
            .workflow-flow {
                flex-direction: column;
                gap: 3rem;
                padding: 0;
            }

            .workflow-flow::before {
                display: none;
            }

            .flow-circle {
                width: 80px;
                height: 80px;
            }

            .flow-circle i {
                font-size: 2rem;
            }

            .flow-step h3 {
                font-size: 1.2rem;
            }

            .flow-step p {
                font-size: 0.95rem;
                padding: 0;
            }

            /* Features Grid */
            .features-asymmetric {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-tile {
                padding: 2rem 1.5rem;
                border-radius: 15px;
            }

            .feature-tile.wide {
                grid-column: span 1;
            }

            .feature-tile i {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .feature-tile h3 {
                font-size: 1.3rem;
            }

            .feature-tile p {
                font-size: 0.95rem;
            }

            /* Biometric Systems */
            .systems-blocks {
                grid-template-columns: 1fr;
                border-radius: 15px;
            }

            .system-block {
                padding: 3rem 2rem;
            }

            .system-block i {
                font-size: 3.5rem;
            }

            .system-block h3 {
                font-size: 1.2rem;
            }

            /* Use Cases */
            .usecases-stack {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .usecase-box {
                padding: 2.5rem 2rem;
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .usecase-icon-box {
                width: 80px;
                height: 80px;
            }

            .usecase-icon-box i {
                font-size: 2rem;
            }

            .usecase-box h3 {
                font-size: 1.3rem;
            }

            /* Reports */
            .reports-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .report-box {
                padding: 2rem 1.5rem;
            }

            .report-box i {
                font-size: 2.5rem;
            }

            .report-box h3 {
                font-size: 1.1rem;
            }

            .report-box p {
                font-size: 0.9rem;
            }

            /* Benefits */
            .benefits-rows {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .benefit-row {
                padding: 2rem 1.5rem;
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .benefit-icon-circle {
                width: 70px;
                height: 70px;
                margin: 0 auto;
            }

            .benefit-icon-circle i {
                font-size: 2rem;
            }

            .benefit-text h3 {
                font-size: 1.3rem;
            }

            .benefit-text p {
                font-size: 0.95rem;
            }

            /* CTA Section */
            .cta-block {
                padding: 4rem 1.5rem;
            }

            .cta-inner h2 {
                font-size: 2.2rem;
                letter-spacing: -0.5px;
            }

            .cta-inner p {
                font-size: 1.05rem;
                margin-bottom: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            /* Footer */
            .footer {
                padding: 3rem 1.5rem 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-col h3 {
                font-size: 1.1rem;
            }

            .footer-col p,
            .footer-col a {
                font-size: 0.95rem;
            }

            .social-row {
                justify-content: center;
            }

            .social-icon {
                width: 40px;
                height: 40px;
            }

            .footer-bottom {
                font-size: 0.85rem;
                padding-top: 1.5rem;
            }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .flow-circle {
                width: 70px;
                height: 70px;
            }

            .hero-visual {
                height: 250px;
            }

            .hero-visual i {
                font-size: 6rem;
            }

            .btn-large {
                padding: 0.9rem 1.5rem;
                font-size: 0.95rem;
            }

            .usecase-box {
                padding: 2rem 1.5rem;
            }

            .benefit-row {
                padding: 1.5rem;
            }

            .cta-inner h2 {
                font-size: 1.8rem;
            }

            .feature-tile {
                padding: 1.75rem 1.25rem;
            }

            .system-block {
                padding: 2.5rem 1.5rem;
            }
        }

        /* Landscape Mobile */
        @media (max-height: 600px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 2rem 1.5rem;
            }

            .stats-banner {
                padding: 2rem 1.5rem;
            }

            .section {
                padding: 2.5rem 1.5rem;
            }
        }
    