 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        body {
            background: #f5f7fa;
            color: #1a2332;
            line-height: 1.7;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(245, 184, 126, 0.15); }
            50% { box-shadow: 0 0 40px rgba(245, 184, 126, 0.25); }
        }

        .animate-fade-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-slide-left {
            animation: slideInLeft 0.8s ease forwards;
        }

        .animate-slide-right {
            animation: slideInRight 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }

        /* navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            background: #ffffff;
            border-radius: 0 0 20px 20px;
            padding-left: 24px;
            padding-right: 24px;
            margin: 0 -24px;
            animation: fadeInUp 0.6s ease;
        }

        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .logo img {
            height: 50px;
            width: auto;
        }
        .logo i {
            color: #d4853a;
            font-size: 2rem;
        }
        .logo small {
            font-size: 0.75rem;
            color: #6b7a8f;
            font-weight: 400;
            background: #f0f2f5;
            padding: 2px 12px;
            border-radius: 20px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            font-weight: 500;
            color: #2d3748;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: #2d3748;
            transition: 0.3s;
            font-size: 0.95rem;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #d4853a, #b86a2a);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a:hover {
            color: #b86a2a;
        }
        .nav-cta {
            background: linear-gradient(145deg, #d4853a, #b86a2a);
            color: #ffffff !important;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 700;
            transition: 0.3s;
            animation: pulse 2s infinite;
        }
        .nav-cta:hover {
            transform: scale(1.06);
            color: #ffffff !important;
            background: #c97a30;
        }
        .nav-cta::after {
            display: none !important;
        }

        /* hero */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 50px 0 30px;
            gap: 30px;
        }
        .hero-content {
            flex: 1 1 500px;
        }
        .hero-content .badge {
            display: inline-block;
            background: rgba(212, 133, 58, 0.1);
            color: #b86a2a;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            border: 1px solid rgba(212, 133, 58, 0.2);
            animation: glow 3s infinite;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            color: #1a2332;
        }
        .hero-content h1 span {
            background: linear-gradient(135deg, #d4853a, #b86a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: #4a5a6e;
            max-width: 550px;
            margin: 20px 0 28px;
        }
        .hero-tags {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .hero-tags span {
            background: #f0f2f5;
            padding: 8px 20px;
            border-radius: 30px;
            border: 1px solid #e2e8f0;
            font-size: 0.9rem;
            transition: 0.3s;
            cursor: default;
            color: #2d3748;
        }
        .hero-tags span:hover {
            border-color: #d4853a;
            background: #fcf6ed;
            transform: translateY(-2px);
        }
        .hero-tags span i {
            color: #d4853a;
            margin-right: 6px;
        }

        .hero-form {
            background: #ffffff;
            padding: 32px 36px;
            border-radius: 28px;
            box-shadow: 0 20px 50px -8px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            flex: 1 1 380px;
            transition: 0.3s;
        }
        .hero-form:hover {
            border-color: #d4853a;
            box-shadow: 0 20px 50px -8px rgba(212, 133, 58, 0.15);
        }
        .hero-form h3 {
            font-size: 1.6rem;
            margin-bottom: 18px;
            color: #1a2332;
        }
        .hero-form h3 i {
            color: #d4853a;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1rem;
            background: #f8f9fb;
            color: #1a2332;
            transition: 0.3s;
        }
        .form-group input:focus {
            outline: none;
            border-color: #d4853a;
            box-shadow: 0 0 0 3px rgba(212, 133, 58, 0.1);
            background: #ffffff;
        }
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.85rem;
            color: #5a6a7e;
            margin: 18px 0 22px;
        }
        .checkbox-group input {
            width: 18px;
            height: 18px;
            margin-top: 4px;
            accent-color: #d4853a;
            cursor: pointer;
        }
        .btn-primary {
            background: linear-gradient(145deg, #d4853a, #b86a2a);
            color: #ffffff;
            border: none;
            padding: 16px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 0.3px;
        }
        .btn-primary:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(212, 133, 58, 0.3);
        }

        /* trust */
        .trust-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 30px 0 10px;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 20px;
        }
        .trust-row span {
            font-weight: 500;
            color: #6b7a8f;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .trust-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
        }
        .trust-logos .dummy-img {
            width: 52px;
            height: 52px;
            background: #f0f2f5;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.4rem;
            color: #6b7a8f;
            border: 1px solid #e2e8f0;
            transition: 0.3s;
        }
        .trust-logos .dummy-img:hover {
            border-color: #d4853a;
            color: #b86a2a;
            transform: translateY(-4px) scale(1.05);
        }
        .trust-logos i {
            font-size: 2.2rem;
            color: #6b7a8f;
            opacity: 0.5;
            transition: 0.3s;
        }
        .trust-logos i:hover { opacity: 1; color: #b86a2a; transform: scale(1.1); }

        /* section */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 60px 0 12px;
            letter-spacing: -0.5px;
            color: #1a2332;
        }
        .section-title i {
            color: #d4853a;
            margin-right: 12px;
        }
        .section-sub {
            color: #5a6a7e;
            max-width: 700px;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        /* services */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 28px;
            margin: 30px 0 20px;
        }
        .service-card {
            background: #ffffff;
            padding: 30px 20px;
            border-radius: 24px;
            border: 1px solid #e2e8f0;
            transition: 0.4s;
            text-align: center;
            cursor: default;
        }
        .service-card:hover {
            border-color: #d4853a;
            transform: translateY(-8px);
            box-shadow: 0 16px 40px -12px rgba(0,0,0,0.08);
        }
        .service-card .dummy-icon {
            width: 72px;
            height: 72px;
            background: #f8f9fb;
            border-radius: 20px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: #b86a2a;
            border: 1px solid #e2e8f0;
            transition: 0.3s;
        }
        .service-card:hover .dummy-icon {
            border-color: #d4853a;
            transform: rotate(8deg) scale(1.05);
            background: #fcf6ed;
        }
        .service-card h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #1a2332;
        }
        .service-card p {
            color: #5a6a7e;
            font-size: 0.95rem;
        }

        /* automation */
        .automation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .auto-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 26px 24px;
            border-left: 5px solid #d4853a;
            border: 1px solid #e2e8f0;
            border-left-width: 6px;
            transition: 0.4s;
        }
        .auto-card:hover {
            background: #fcfcfd;
            transform: translateX(6px);
            border-color: #d4853a;
        }
        .auto-card h4 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.2rem;
            color: #1a2332;
        }
        .auto-card h4 i {
            color: #d4853a;
            font-size: 1.4rem;
        }
        .auto-card p {
            color: #5a6a7e;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .auto-card .dummy-small {
            display: inline-block;
            background: #f0f2f5;
            padding: 3px 16px;
            border-radius: 30px;
            font-size: 0.7rem;
            color: #6b7a8f;
            margin-top: 10px;
            border: 1px solid #e2e8f0;
        }

        /* stats */
        .stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            padding: 50px 20px;
            border-radius: 32px;
            margin: 50px 0;
            text-align: center;
        }
        .stats-row div {
            flex: 1 1 120px;
            transition: 0.3s;
        }
        .stats-row div:hover {
            transform: scale(1.05);
        }
        .stats-row h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #b86a2a;
        }
        .stats-row p {
            opacity: 0.7;
            font-size: 0.95rem;
            color: #5a6a7e;
        }

        /* case study */
        .case-study {
            background: #ffffff;
            border-radius: 32px;
            padding: 36px 40px;
            border: 1px solid #e2e8f0;
            margin: 40px 0;
            transition: 0.3s;
        }
        .case-study:hover {
            border-color: #d4853a;
        }
        .case-study h3 {
            font-size: 1.8rem;
            color: #1a2332;
        }
        .case-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        .case-flex .text {
            flex: 2 1 300px;
        }
        .case-flex .text p {
            color: #4a5a6e;
        }
        .case-flex .dummy-img-large {
            flex: 0 0 160px;
            height: 140px;
            background: #f8f9fb;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: #b86a2a;
            border: 1px solid #e2e8f0;
            transition: 0.3s;
        }
        .case-flex .dummy-img-large:hover {
            border-color: #d4853a;
            transform: scale(1.04);
        }
        .stars {
            color: #d4853a;
            letter-spacing: 2px;
        }

        /* process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 30px 0 20px;
        }
        .process-card {
            background: #ffffff;
            padding: 28px 20px;
            border-radius: 24px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #d4853a, #b86a2a);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        .process-card:hover::before {
            transform: scaleX(1);
        }
        .process-card:hover {
            transform: translateY(-6px);
            border-color: #d4853a;
        }
        .process-card .step {
            font-size: 2.5rem;
            font-weight: 800;
            color: #d4853a;
            opacity: 0.2;
            margin-bottom: 6px;
        }
        .process-card h4 {
            font-size: 1.1rem;
            color: #1a2332;
        }
        .process-card p {
            color: #5a6a7e;
            font-size: 0.9rem;
            margin-top: 6px;
        }

        /* contact */
        .contact-section {
            background: #ffffff;
            border-radius: 32px;
            padding: 44px 40px;
            margin: 50px 0;
            border: 1px solid #e2e8f0;
            transition: 0.3s;
        }
        .contact-section:hover {
            border-color: #d4853a;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        @media (max-width: 700px) {
            .contact-grid { grid-template-columns: 1fr; }
        }
        .contact-grid input, .contact-grid textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 16px;
            background: #f8f9fb;
            color: #1a2332;
            font-size: 1rem;
            transition: 0.3s;
        }
        .contact-grid input:focus, .contact-grid textarea:focus {
            outline: none;
            border-color: #d4853a;
            box-shadow: 0 0 0 3px rgba(212, 133, 58, 0.08);
            background: #ffffff;
        }
        .contact-grid textarea {
            min-height: 120px;
        }
        .contact-info {
            background: #f8f9fb;
            border-radius: 24px;
            padding: 28px 32px;
            border: 1px solid #e2e8f0;
        }
        .contact-info h4 {
            margin: 16px 0 4px;
            color: #1a2332;
        }
        .contact-info h4:first-of-type {
            margin-top: 0;
        }
        .contact-info i {
            color: #d4853a;
            margin-right: 8px;
        }
        .contact-info p {
            color: #4a5a6e;
        }
        .contact-info .social-icons {
            margin-top: 24px;
        }
        .contact-info .social-icons i {
            font-size: 1.8rem;
            margin-right: 18px;
            opacity: 0.5;
            color: #2d3748;
            transition: 0.3s;
            cursor: pointer;
        }
        .contact-info .social-icons i:hover {
            opacity: 1;
            color: #b86a2a;
            transform: scale(1.1);
        }

        /* footer */
        .footer {
            padding: 40px 0 20px;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer .col {
            flex: 1 1 160px;
        }
        .footer .col h5 {
            font-weight: 600;
            margin-bottom: 14px;
            color: #1a2332;
        }
        .footer a {
            display: block;
            color: #5a6a7e;
            text-decoration: none;
            margin-bottom: 8px;
            font-size: 0.95rem;
            transition: 0.3s;
        }
        .footer a:hover { color: #b86a2a; transform: translateX(4px); }
        .footer .social i {
            font-size: 1.6rem;
            margin-right: 14px;
            color: #5a6a7e;
            opacity: 0.5;
            transition: 0.3s;
        }
        .footer .social i:hover { opacity: 1; color: #b86a2a; transform: scale(1.1); }

        .footer-newsletter input {
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #e2e8f0;
            background: #f8f9fb;
            color: #1a2332;
            width: 100%;
            transition: 0.3s;
        }
        .footer-newsletter input:focus {
            outline: none;
            border-color: #d4853a;
        }
        .footer-newsletter button {
            background: linear-gradient(145deg, #d4853a, #b86a2a);
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 40px;
            margin-top: 10px;
            width: 100%;
            font-weight: 700;
            transition: 0.3s;
            cursor: pointer;
        }
        .footer-newsletter button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(212, 133, 58, 0.25);
        }

        .copyright {
            text-align: center;
            padding: 20px 0 10px;
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 0.9rem;
            color: #6b7a8f;
        }

        /* scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 800px) {
            .hero-content h1 { font-size: 2.4rem; }
            .navbar { flex-direction: column; gap: 16px; }
            .nav-links { flex-wrap: wrap; justify-content: center; }
        }