
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&family=Playfair+Display:wght@700;900&display=swap');

        :root {
            --primary: #0f0f0f;
            --secondary: #1a1a1a;
            --accent: #ff6b35;
            --accent-light: #ffa500;
            --text-light: #f0f0f0;
            --text-muted: #aaa;
            --border: #333;
            --success: #2ecc71;
            --warning: #f39c12;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }
        .stagger-5 { animation-delay: 0.5s; }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-bottom: 3px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background-color: rgba(15, 15, 15, 0.95);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        }

        .header-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid rgba(255, 107, 53, 0.2);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-family: 'Playfair Display', serif;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 .accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .subtitle {
            font-size: 1.25rem;
            color: #ddd;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .meta-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            background: rgba(255, 107, 53, 0.1);
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }

        .meta-item strong {
            color: var(--accent);
        }

        .stars {
            color: var(--accent-light);
            letter-spacing: 2px;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.4s both;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
            animation: pulse-glow 2s infinite;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        /* Section Styles */
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 20px;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .section h2 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 3px;
        }

        .section h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent);
            margin: 2rem 0 1rem 0;
            font-family: 'Playfair Display', serif;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ddd;
            margin: 2rem 0;
            max-width: 1000px;
        }

        /* Tables */
        .table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--secondary);
        }

        table th {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            padding: 1.3rem 1.5rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.95rem;
        }

        table td {
            padding: 1.1rem 1.5rem;
            border-bottom: 1px solid var(--border);
            color: #ddd;
            font-size: 0.95rem;
        }

        table tr:last-child td {
            border-bottom: none;
        }

        table tr:hover {
            background: rgba(255, 107, 53, 0.05);
        }

        table .value {
            color: var(--accent);
            font-weight: 700;
        }

        table .badge {
            display: inline-block;
            background: rgba(46, 204, 113, 0.2);
            color: var(--success);
            padding: 0.4rem 0.9rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Lists */
        ul, ol {
            margin: 1.5rem 0 1.5rem 2.5rem;
            color: #ddd;
        }

        li {
            margin-bottom: 0.9rem;
            line-height: 1.7;
            color: #ccc;
        }

        li strong {
            color: var(--accent);
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .card {
            background: var(--secondary);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--border);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
            border-color: var(--accent);
        }

        .card h4 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .case-study-number {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .result-badge {
            display: inline-block;
            background: rgba(46, 204, 113, 0.15);
            color: var(--success);
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-top: 1.2rem;
            border: 1px solid rgba(46, 204, 113, 0.3);
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 2rem auto;
        }

        .faq-item {
            background: var(--secondary);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 600;
            color: var(--text-light);
            background: var(--secondary);
        }

        .faq-question:hover {
            background: rgba(255, 107, 53, 0.05);
            padding-left: 2rem;
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            font-weight: 700;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.3);
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
            padding: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .faq-answer p {
            color: #aaa;
            line-height: 1.7;
        }

        /* Cities Grid */
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .city-card {
            background: var(--secondary);
            padding: 1.8rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .city-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
            transform: translateY(-5px);
        }

        .city-card h4 {
            color: var(--accent);
            margin: 1rem 0 0.5rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .city-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .city-emoji {
            font-size: 2rem;
        }

        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .pricing-card {
            background: var(--secondary);
            padding: 2.5rem;
            border-radius: 12px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
            transform: translateY(-10px);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            border-color: var(--accent-light);
            transform: scale(1.05);
        }

        .pricing-card.featured h3 {
            color: white;
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .pricing-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
            margin: 1.5rem 0;
        }

        .pricing-card.featured .price {
            color: white;
        }

        .pricing-card ul {
            margin: 1.5rem 0;
            padding: 0;
            list-style: none;
            color: var(--text-muted);
        }

        .pricing-card li {
            margin: 0.8rem 0;
            color: inherit;
        }

        .pricing-card li::before {
            content: '✓ ';
            color: var(--success);
            font-weight: 700;
            margin-right: 0.5rem;
        }

        .pricing-card.featured li {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-card.featured li::before {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-top: 3px solid var(--accent);
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .footer-section ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.7rem;
            color: var(--text-muted);
        }

        .footer-section ul a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 2rem 0 0;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-light);
        }

        /* Selection */
        ::selection {
            background: var(--accent);
            color: white;
        }

        /* Responsive */
        /* Floating Call Button */
        .floating-call-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: white;
            padding: 0;
            border: none;
            border-radius: 60px;
            width: 70px;
            height: 70px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
            font-size: 1.8rem;
            transition: all 0.3s ease;
            z-index: 99;
            animation: float 3s ease-in-out infinite;
            text-decoration: none;
        }

        .floating-call-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
        }

        .call-tooltip {
            position: absolute;
            right: 90px;
            bottom: 10px;
            background: white;
            color: var(--primary);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            opacity: 0;
            animation: tooltipFade 0.5s ease 0.5s forwards;
            font-size: 0.95rem;
            border-left: 4px solid var(--accent);
        }

        .call-status {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #2ecc71;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.7rem;
            animation: pulseDot 2s infinite;
            border: 3px solid white;
        }

        @keyframes tooltipFade {
            from {
                opacity: 0;
                transform: translateX(10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulseDot {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
            }
        }

        .blink-text {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% {
                opacity: 1;
            }
            51%, 100% {
                opacity: 0.3;
            }
        }

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .section h2 {
                font-size: 2.2rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .meta-info {
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px 40px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1rem;
            }

            .section {
                padding: 50px 20px;
            }

            .section h2 {
                font-size: 1.8rem;
            }

            table {
                font-size: 0.85rem;
            }

            table th, table td {
                padding: 0.8rem;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }

            .cities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .floating-call-btn {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .call-tooltip {
                right: 75px;
                font-size: 0.85rem;
            }
        }
    