
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        body {
            background-color: #0b0b0b;
            color: #f0f0f0;
            line-height: 1.5;
            background-image: url('/content/img/bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: -1;
        }
        /* black & white + orange/flame accents */
        :root {
            --bg-dark: #0b0b0b;
            --bg-card: #131313;
            --border-light: #2a2a2a;
            --text-white: #f5f5f5;
            --text-muted: #b0b0b0;
            --flame: #ff7b00;      /* primary orange */
            --flame-glow: #ff8c1a;
            --flame-light: #ffa94d;
            --fnt-sz-txt: 1.2rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1580px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ----- HEADER / NAV (fixed) ----- */
        header {
            position: fixed;
            height: 70px;
            display: flex;
            align-items: center;
            top: 0;
            left: 0;
            width: 100%;
            background: #0b0b0bcc;
            backdrop-filter: blur(6px);
            border-bottom: 1px solid #2a2a2a;
            z-index: 1000;
            padding: 5px 0;
            transition: 0.2s;
        }

        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;

        }

        .logo {
            display: flex;
            align-items: center;
            height: 100%;
        }
        .logo-img {
            height: 105px;
            width: 180px;
            object-fit: contain;
            display: block;
        }

        .logo span {
            color: var(--flame);
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            font-weight: 500;
            font-size:var(--fnt-sz-txt);
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .nav-links a {
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #ddd;
        }

        .nav-links a:hover {
            color: var(--flame);
            border-bottom-color: var(--flame);
        }

        .btn-demo {
            background: var(--flame);
            color: #fff !important;
            padding: 8px 20px !important;
            border-radius: 40px;
            font-weight: 400;
            border: none;
            transition: 0.2s;
            border-bottom: none !important;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .btn-demo:hover {
            background: #ff8c1a;
            transform: scale(1.02);
            color: #0b0b0b !important;
            border-bottom: none !important;
        }

        /* ----- HERO / HOME ----- */
        .section {
            padding: 80px 0 60px;
            border-bottom: 1px solid #1f1f1f;
        }

        #home {
            padding-top: 120px;
        }

        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-top: 20px;
        }

        .hero-content {
            flex: 1 1 300px;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero-content p{
            font-size: var(--fnt-sz-txt);
        }

        .hero-highlight {
            color: var(--flame);
            border-bottom: 3px solid var(--flame);
            display: inline-block;
        }

        .hero-sub {
            font-size: 1.2rem;
            color: #ccc;
            margin: 20px 0 24px;
            max-width: 550px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .hero-sub h1{
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            background: var(--flame);
            color: #ffff;
            padding: 12px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .btn-primary i {
            color: #ffff;
        }

        .btn-primary:hover {
            background: #ff8c1a;
            transform: scale(1.02);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #444;
            color: var(--flame);
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .btn-outline i {
            color: var(--flame);
        }

        .btn-outline:hover {
            /*border-color: var(--flame);*/
            background: #1f1f1f;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 32px;
            border-top: 1px solid #2a2a2a;
            padding-top: 30px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
             text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 3.8rem;
            font-weight: 700;
            color: var(--flame, #ff6b00);
            line-height: 1.2;
            transition: all 0.3s ease;
        }
        .stat-number.animating {
            animation: numberPop 0.3s ease-out;
        }

        @keyframes numberPop {
            0% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }
        .stat-label {
            color: #ccc;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .stat-number[data-target="99.9"]::after {
            content: '%';
        }

        .stat-number[data-target="250"]::after {
            content: '+';
        }

        .stat-number[data-target="15"]::after {
            content: '+';
        }

        .stat-number[data-target="50"]::after {
            content: '+';
        }
        .hero-visual {
            flex: 1 1 280px;
            display: flex;
            justify-content: center;
    
        }
        .hero-image{
            display: block;
            max-width: 100%;
            height: auto;
            opacity: 80%;
        }
        
        /* ----- FEATURES (cards) ----- */
        .features-grid {
            display: grid;
            /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }

        .feature-card {
            
            background: #131313;
            border-radius: 24px;
            padding: 28px 20px;
            border: 1px solid #252525;
            transition: 0.2s;
            overflow: hidden;
        }

        .feature-card:hover {
            /*border-color: var(--flame);*/
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
        }

        .feature-card::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--flame), var(--flame-light));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .feature-card:hover::before{
            transform: scaleX(1);
        }
        .feature-card i {
            font-size: 2.2rem;
            color: var(--flame);
            margin-bottom: 12px;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 8px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .feature-card p {
            color: #ccc;
            font-size: 0.9rem;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        /* ----- SOLUTIONS SECTION STYLES ----- */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .solution-card {
            background: linear-gradient(145deg, #131313, #0d0d0d);
            border: 1px solid #252525;
            border-radius: 24px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--flame), var(--flame-light));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .solution-card:hover {
            /*border-color: var(--flame);*/
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 123, 0, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .solution-icon i {
            font-size: 2rem;
            color: var(--flame);
        }

        .solution-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #f5f5f5;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .solution-tag {
            display: inline-block;
            background: rgba(255, 123, 0, 0.15);
            color: var(--flame);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .solution-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .solution-content p {
            color: #b0b0b0;
            margin-bottom: 25px;
            line-height: 1.6;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .solution-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
            flex-grow: 1;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .solution-features li {
            color: #ccc;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .solution-features li i {
            color: var(--flame);
            font-size: 0.9rem;

        }
        .solution-action {
            margin-top: auto;
        }
        /* Integration Platform */
        .integration-platform {
            margin-top: 60px; 
            background: transparent;
            border-radius: 30px; 
            padding: 0px; 
            
        }
        .integration-platform p{
            font-size: var(--fnt-sz-txt);
        }
        .integration-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 30px;
        }

        .integration-item {
            background: linear-gradient(145deg, #131313, #0d0d0d);
            border: 1px solid #2a2a2a;
            flex: 1 1 calc(25% - 19px);
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-sizing: border-box;
            overflow: hidden;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .integration-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--flame), var(--flame-light));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .integration-item:hover {
            /*border-color: var(--flame);*/
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
        }
        .integration-item:hover::before {
            transform: scaleX(1);
        }
        .integration-item i {
            font-size: 2.5rem;
            color: var(--flame);
            margin-bottom: 15px;
        }

        .integration-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #f5f5f5;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .integration-item p {
            color: #ccc;
            font-size: 0.9rem;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        /* Services Grid */
        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }

        .service-card {
            flex:1 1 calc(25% - 19px);
            min-width: 280px;
            background: #131313;
            border: 1px solid #252525;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transition: all 0.3s ease;
            box-sizing: border-box;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--flame), var(--flame-light));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .service-card:hover {
            /*border-color: var(--flame);*/
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 123, 0, 0.1);
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(255, 123, 0, 0.1);
            position: absolute;
            top: 20px;
            right: 25px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--flame);
            position: relative;
            z-index: 1;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .service-card p {
            color: #b0b0b0;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .service-card ul {
            position: relative;
            z-index: 1;
        }


        /* ----- INDUSTRIES (pill list) ----- */
        .industry-list {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-top: 20px;
        }
        .industry-badge {
            cursor: pointer;
            transition: all .3s ease;
        }

        .industry-badge.active {
            background: var(--flame);
            color: #fff;
            border-color: var(--flame);
        }
        .industry-badge.active i{
            color: #fff;
        }
        .industry-details {
            margin-top: 30px;
            background: #111;
            border: 1px solid #2a2a2a;
            border-radius: 24px;
            padding: 30px;
        }

        .industry-details h3 {
            color: var(--flame);
            margin-bottom: 12px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .industry-details ul {
            margin-top: 15px;
            padding-left: 20px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .industry-details li {
            margin-bottom: 8px;
            color: #b8b8b8;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .industry-details p{
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .industry-badge {
            background: #1a1a1a;
            padding: 10px 28px;
            border-radius: 60px;
            border: 1px solid #2e2e2e;
            font-weight: 500;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .industry-badge i {
            color: var(--flame);
            font-size: 0.9rem;
            
        }

        .industry-badge:hover {
            /*border-color: var(--flame);*/
            background: #222;
        }
         /* form styles */
        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 4px;
            color: #ccc;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .form-row {
            display: flex;
            gap: 12px;
        }

        .form-row .form-group {
            flex: 1;
            min-width: 0;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px 14px;
            background: #1a1a1a;
            border: 1px solid #2e2e2e;
            border-radius: 12px;
            color: #f0f0f0;
            font-size: 0.95rem;
            transition: 0.2s;
            outline: none;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--flame);
            box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2);
        }

        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }

        .form-group select option {
            background: #1a1a1a;
        }

        .btn-submit {
            background: var(--flame);
            color: #fff;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            width: 100%;
            justify-content: center;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .btn-submit i{
            color: #fff !important;
        }

        .btn-submit:hover {
            background: #ff8c1a;
            transform: scale(1.02);
        }

        /* ----- ABOUT / CONTACT (mixed) ----- */
        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 20px;
        }

        .about-text {
            flex: 2 1 280px;
        }

        .about-text p {
            color: #ccc;
            max-width: 600px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .contact-card {
            flex: 1 1 320px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
            background: #111;
            padding: 28px 24px;
            border-radius: 28px;
            border: 1px solid #2a2a2a;
        }
        .contact-card .form-group {
            width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }
        .contact-card input,
        .contact-card select,
        .contact-card textarea {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            min-width: 0;
        }
        .contact-card form {
            width: 100%;
            box-sizing: border-box;
        }
        .contact-card i {
            color: var(--flame);
            width: 28px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 18px 0;
        }

        .contact-item a {
            color: #ddd;
            transition: 0.2s;
        }

        .contact-item a:hover {
            color: var(--flame);
        }

        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .social-links a {
            color: #aaa;
            font-size: 1.4rem;
            transition: 0.2s;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .social-links a:hover {
            color: var(--flame);
            transform: scale(1.1);
        }

        /* footer / quick links */
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #1f1f1f;
            padding-top: 30px;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #888;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .footer-quick {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-quick a {
            color: #bbb;
            transition: 0.2s;
        }

        .footer-quick a:hover {
            color: var(--flame);
        }

        /* section titles */
        .section-title {
            font-size: 3rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .section-sub {
            color: #ccc;
            margin-bottom: 20px;
            font-size: var(--fnt-sz-txt);
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .solution-hero {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }
        .solution-hero-content {
            flex: 1 1 300px;
        }
        .solution-hero-content h1 {
            font-size: 3.2rem;
            line-height: 1.1;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .solution-hero-content p {
            color: #ccc;
            font-size: 1.2rem;
            max-width: 550px;
            margin: 16px 0 24px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        
        .flame-underline {
            width: 60px;
            height: 4px;
            background: var(--flame);
            border-radius: 4px;
            margin: 8px 0 20px;
        }
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b00, #ff8c00);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #ff8c00, #ffaa00);
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(255, 107, 0, 0.6);
        }

        .back-to-top:active {
            transform: scale(0.9);
        }
        /* enterprise*/
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        .detail-card {
            background: #131313;
            border: 1px solid #252525;
            border-radius: 24px;
            padding: 30px 24px;
            transition: 0.25s;
            overflow: hidden;
        }
        .detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--flame), var(--flame-light));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .detail-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(255, 123, 0, 0.08);
        }
         .detail-card:hover::before {
            transform: scaleX(1);
        }
        .detail-card i {
            font-size: 2.4rem;
            color: var(--flame);
            margin-bottom: 16px;
        }
        .detail-card h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .detail-card p {
            color: #ccc;
            line-height: 1.6;
            font-family: 'Inter', 'Poppins', sans-serif;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        .feature-list li {
            color: #ccc;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            font-family: 'Inter', 'Poppins', sans-serif;
        }
        .feature-list li i {
            color: var(--flame);
            width: 22px;
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #aaa;
            transition: 0.2s;
            margin-bottom: 30px;
        }
        .back-link:hover { color: var(--flame); }
        /* Pulse animation for attention */
        .back-to-top.pulse {
            animation: pulse 2s ease-in-out;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            z-index: 1100;
        }

        /* Desktop navigation */
        .nav-links {
            display: flex;
            align-items: center;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
        }

        /* Responsive adjustments */
        
       
        @media (max-width: 1200px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .integration-item {
                flex: 1 1 calc(50% - 13px);
            }
        }

        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .integration-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .solution-card {
                padding: 30px 20px;
            }
            
            .integration-platform {
                padding: 30px 20px !important;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .solution-hero-content h1 { font-size: 2.4rem; }
            .navbar { flex-direction: column; align-items: stretch; gap: 12px; }
            .nav-links { justify-content: center; gap: 14px; font-size: 0.85rem; }
        }
        @media (max-width: 720px) {
            .navbar {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
            .nav-links {
                justify-content: center;
                gap: 14px;
                font-size: 0.85rem;
            }
            .btn-demo {
                padding: 6px 16px !important;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .hero-stats {
                gap: 16px;
            }
            .section {
                padding: 60px 0 40px;
            }
            #home {
                padding-top: 160px;
            }
        }
        @media (max-width: 600px) {
            .integration-item {
                flex: 1 1 100%;
            }
        }
        
        /* =========================================================
        MOBILE RESPONSIVE FIX - 480px and below
        Optimized for 412px screens
        ========================================================= */
        @media (max-width: 480px) {

            /* ---------- GLOBAL MOBILE ---------- */

            html,
            body {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }
            

            .container {
                overflow: visible !important;
                padding: 15px !important;
            }

            .section {
                width: 100%;
                padding: 45px 0 35px !important;
                box-sizing: border-box;
            }


            /* =====================================================
            HEADER / NAVIGATION
            ===================================================== */

            header {
                height: 70px !important;
                min-height: 70px !important;
                width: 100% !important;
                padding: 5px 0 !important;
                overflow: visible !important;
                position: fixed !important ;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                margin: 0 !important;
                z-index: 9999 !important;
                transform: none !important;
                -webkit-transform: none !important;
            }

            .navbar {
                width: 100%;
                height: 60px;
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                align-items: center !important;
                justify-content: space-between !important;
                gap: 0 !important;
                padding: 0 15px !important;
                position: relative;
            }
            .logo {
                width: auto !important;
                height: 60px !important;
                flex: 0 0 auto !important;
                display: flex !important;
                align-items: center !important;
            }

            .logo-img {
                width: 120px !important;
                height: auto !important;
                max-width: 120px !important;
                object-fit: contain !important;
            }

            .nav-links .btn-demo {
                width: 100% !important;
                margin-top: 8px !important;

                padding: 11px 15px !important;

                text-align: center !important;

                border-radius: 10px !important;

                background: var(--flame);
                color: #fff !important;

                border: none !important;
            }
            .nav-links .btn-demo:hover {
                background: #ff8c1a;
                color: #fff !important;
                border: none !important;
            }
            .nav-links {
                position: absolute !important;
                top: 65px;
                left: 15px;
                right: 15px;

                width: auto !important;

                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;

                gap: 0 !important;

                padding: 10px !important;

                background: rgba(17, 17, 17, 0.98);
                border: 1px solid #2a2a2a;
                border-radius: 16px;

                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                pointer-events: none;

                transition:
                    opacity 0.25s ease,
                    transform 0.25s ease,
                    visibility 0.25s ease;

                z-index: 1050;
                box-sizing: border-box;
            }
            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
            .nav-links a {
                width: 100%;
                box-sizing: border-box;
                padding: 13px 15px !important;
                border-bottom: 1px solid #252525 !important;
                font-size: 0.95rem !important;
                line-height: 1.4 !important;
                color: #ddd;
                text-align: left;
                transition:
                    background 0.2s ease,
                    color 0.2s ease;
            }

            .nav-links a:hover {
                background: #1d1d1d;
                color: var(--flame);
                border-bottom-color: #252525 !important;
            }

            /* Remove border from last item */
            .nav-links a:last-child {
                border-bottom: none !important;
            }

            .hamburger {
                display: flex !important;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
                flex: 0 0 44px;
                color: #fff;
                background: transparent;
                border: 1px solid #333;
                border-radius: 10px;
                transition: all 0.25s ease;
            }

            .hamburger:hover {
                color: var(--flame);
                border-color: var(--flame);
            }

            .hamburger i {
                color: inherit;
                transition: transform 0.25s ease;
            }

            #home {
                padding-top: 110px !important;
            }


            /* =====================================================
            HERO
            ===================================================== */

            .hero {
                
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                gap: 25px !important;
            }

            .hero-content {
                width: 100% !important;
                flex: none !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
            }

            .hero-content h1 {
                width: 100% !important;
                font-size: 2.15rem !important;
                line-height: 1.15 !important;
                text-align: center !important;
            }

            .hero-sub {
                width: 100% !important;
                max-width: 100% !important;
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .hero-actions {
                width: 100% !important;
                justify-content: center !important;
                flex-wrap: wrap !important;
            }

            .hero-visual {
                width: 100% !important;
                display: flex !important;
                justify-content: center !important;
            }

            .hero-image {
                width: 100% !important;
                max-width: auto !important;
                height: auto !important;
            }


            /* =====================================================
            HERO STATS
            ===================================================== */

            .hero-stats {
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                gap: 18px !important;
            }

            .stat-item {
                width: 100% !important;
                text-align: center !important;
            }

            .stat-number {
                font-size: 3rem !important;
            }


            /* =====================================================
            CARDS / GRIDS
            ===================================================== */

            .features-grid,
            .solutions-grid,
            .services-grid,
            .integration-grid,
            .detail-grid {
                width: 100% !important;
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .feature-card,
            .solution-card,
            .service-card,
            .integration-item,
            .detail-card {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                margin: 0 !important;
                box-sizing: border-box !important;
            }

            .feature-card {
                text-align: center !important;
            }


            /* =====================================================
            ABOUT / CONTACT
            ===================================================== */

            .about-grid {
                width: 100% !important;
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 25px !important;
            }

            .about-text {
                width: 100% !important;
                flex: none !important;
                text-align: center !important;
            }

            .about-text p {
                width: 100% !important;
                max-width: 100% !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .contact-card {
                margin-bottom: 0 !important;
                padding-bottom: 16px !important;
                overflow: visible !important;
            }

            .contact-card form {
                margin-bottom: 0 !important;
            }

            .form-group {
                width: 100% !important;
                margin-bottom: 14px !important;
                box-sizing: border-box !important;
            }

            /* Make every form field fully visible */
            .form-group input,
            .form-group select,
            .form-group textarea {
                width: 100% !important;
                max-width: 100% !important;
                min-width: 0 !important;
                box-sizing: border-box !important;
            }

            /* Phone + country and every other row become vertical */
            .form-row {
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 0 !important;
                box-sizing: border-box !important;
            }

            .form-row .form-group {
                width: 100% !important;
                min-width: 0 !important;
                flex: none !important;
            }

            .form-group textarea {
                min-height: 100px !important;
            }

            .btn-submit {
                width: 100% !important;
                min-height: 46px !important;
                margin-top: 5px !important;
            }


            /* =====================================================
            INDUSTRIES
            ===================================================== */

            .industry-list {
                width: 100% !important;
                justify-content: center !important;
                gap: 10px !important;
            }

            .industry-badge {
                font-size: 0.85rem !important;
                padding: 8px 14px !important;
                white-space: normal !important;
                text-align: center !important;
            }

            .industry-details {
                width: 100% !important;
                box-sizing: border-box !important;
                padding: 20px 16px !important;
                text-align: center !important;
            }

            .industry-details ul {
                text-align: left !important;
                padding-left: 18px !important;
            }


            /* =====================================================
            SOLUTION HERO
            ===================================================== */

            .solution-hero {
                width: 100% !important;
                flex-direction: column !important;
                text-align: center !important;
                gap: 25px !important;
            }

            .solution-hero-content {
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
            }

            .solution-hero-content h1 {
                font-size: 2.15rem !important;
                text-align: center !important;
            }

            .solution-hero-content p {
                width: 100% !important;
                max-width: 100% !important;
                text-align: center !important;
            }


            /* =====================================================
            SECTION TITLES
            ===================================================== */

            .section-title {
                width: 100% !important;
                font-size: 2.15rem !important;
                line-height: 1.2 !important;
                text-align: center !important;
            }

            .section-sub {
                width: 100% !important;
                max-width: 100% !important;
                text-align: center !important;
            }
            

            /* =====================================================
            FOOTER
            Required order:
            Logo
            All Rights Reserved
            Privacy Policy
            Terms of Service
            ===================================================== */

            .footer-links {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 10px !important;
                padding: 20px 12px 24px !important;
                margin-top: 20px !important;
                border-top: 1px solid #1f1f1f !important;
                width: 100% !important;
                clear: both !important;
                position: relative !important;
                background: transparent !important;
                overflow: visible !important;
                margin-bottom: 80px;
            }
            .footer-links > * {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                flex: 0 0 auto !important;
                max-width: 100% !important;
            }
            .footer-links .footer-brand,
            .footer-links > span:first-of-type {
                font-size: 0.85rem !important;
                color: #888 !important;
                order: 1 !important;
                margin-bottom: 2px !important;
            }

            /* "All rights reserved" text */
            .footer-links > span:nth-of-type(2) {
                font-size: 0.8rem !important;
                color: #777 !important;
                order: 2 !important;
                margin-bottom: 4px !important;
            }

            /* Footer logo */
            .footer-links .logo {
                width: 120px !important;
                height: 55px !important;
                max-width: 120px !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .footer-links .logo-img {
                width: 120px !important;
                height: 55px !important;
                max-width: 120px !important;
                object-fit: contain !important;
            }
            .footer-links .logo-img,
            .footer-links img {
                display: block !important;
                margin: 0 auto 6px auto !important;
                width: 120px !important;
                height: auto !important;
                max-width: 120px !important;
                object-fit: contain !important;
            }
            /* Copyright text */
            .footer-links > span {
                width: 100% !important;
                display: block !important;
                text-align: center !important;
                line-height: 1.4 !important;
            }

            /* Privacy / Terms */
            .footer-quick {
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: wrap !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 16px 20px !important;
                order: 3 !important;
                width: 100% !important;
                padding: 0 !important;
                margin: 4px 0 0 0 !important;
            }

            .footer-quick a {
                font-size: 0.8rem !important;
                color: #bbb !important;
                text-decoration: none !important;
                padding: 2px 0 !important;
                white-space: nowrap !important;
                transition: 0.2s !important;
            }
            .footer-quick a:hover {
                color: var(--flame) !important;
            }


            /* =====================================================
            BACK TO TOP
            ===================================================== */

            .back-to-top {
                width: 42px !important;
                height: 42px !important;
                right: 14px !important;
                bottom: 14px !important;
                font-size: 17px !important;
            }
            .section:last-of-type {
                padding-bottom: 20px !important;
                margin-bottom: 0 !important;
            }

        }
        /* utility */
        .text-flame {
            color: var(--flame);
        }

        .mb-1 { margin-bottom: 10px; }
        .mt-2 { margin-top: 20px; }
        .flex-center { display: flex; align-items: center; gap: 8px; }

        
       
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }