       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0a;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* Navigation */
        nav {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(124, 58, 237, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .nav-logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .nav-logo span {
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #10b981;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        .logo {
            font-size: 3.5rem;
            color: #10b981;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .header-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .brand-name {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        header h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            max-width: 100%;
            word-wrap: break-word;
            line-height: 1.2;
        }

        header p {
            color: #d1d5db;
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
            word-wrap: break-word;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
        }

        /* IA Section */
        .ia-section {
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            padding: 80px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .ia-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .ia-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .ia-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .ia-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .ia-benefit {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }

        .ia-benefit:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .ia-benefit-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        /* Flows Section */
        .flows-intro {
            background: #0a0a0a;
            padding: 80px 20px 40px;
            text-align: center;
        }

        .flows-intro h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .flows-intro p {
            color: #9ca3af;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* Flow Card */
        .flow-card {
            background: #1a1a1a;
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s;
        }

        .flow-card:nth-child(odd) {
            border-color: rgba(124, 58, 237, 0.3);
        }

        .flow-card:nth-child(even) {
            border-color: rgba(16, 185, 129, 0.3);
        }

        .flow-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
        }

        .flow-header {
            padding: 30px;
            background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .flow-card:nth-child(even) .flow-header {
            background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
        }

        .flow-title {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .flow-price {
            background: #10b981;
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
        }

        .flow-card:nth-child(odd) .flow-price {
            background: #7c3aed;
        }

        .flow-body {
            padding: 40px 30px;
        }

        .flow-description {
            color: #d1d5db;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .flow-benefit {
            background: rgba(16, 185, 129, 0.1);
            border-left: 4px solid #10b981;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }

        .flow-card:nth-child(odd) .flow-benefit {
            background: rgba(124, 58, 237, 0.1);
            border-left-color: #7c3aed;
        }

        .benefit-label {
            color: #10b981;
            font-weight: bold;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .flow-card:nth-child(odd) .benefit-label {
            color: #7c3aed;
        }

        .benefit-text {
            color: white;
            font-size: 1.3rem;
            font-weight: bold;
        }

        .roi-highlight {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
            padding: 25px;
            border-radius: 12px;
            margin-top: 20px;
            text-align: center;
        }

        .roi-text {
            color: #10b981;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .roi-number {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
        }

        /* Packs Section */
        .packs-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
            padding: 80px 20px;
        }

        .packs-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .packs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pack-card {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 40px 30px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            transition: all 0.3s;
            position: relative;
        }

        .pack-card.featured {
            border-color: #10b981;
            transform: scale(1.05);
        }

        .pack-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
        }

        .pack-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #10b981;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .pack-name {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .pack-price {
            color: #10b981;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .pack-savings {
            color: #9ca3af;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .pack-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .pack-features li {
            color: #d1d5db;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pack-features li::before {
            content: "✓ ";
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        .pack-button {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            color: white;
            padding: 15px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .pack-card.featured .pack-button {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .pack-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
            padding: 80px 20px;
        }

        .contact-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(124, 58, 237, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: #10b981;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #10b981;
            background: rgba(255, 255, 255, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-group select option{
            color: #111;          /* texto oscuro */
         background: #fff;     /* fondo blanco (lo típico del dropdown) */
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
        }

        /* Contact Info Cards */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-card {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(124, 58, 237, 0.3);
            transition: all 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: #10b981;
        }

        .info-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .info-card h3 {
            color: #10b981;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .info-card p {
            color: #d1d5db;
            font-size: 1.1rem;
        }

        /* Thank You Page */
        .thank-you-message {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 60px 20px;
        }

        .success-icon {
            font-size: 5rem;
            margin-bottom: 30px;
            animation: scaleIn 0.5s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .thank-you-message h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .thank-you-message > p {
            color: #9ca3af;
            font-size: 1.3rem;
            margin-bottom: 40px;
        }

        .thank-you-content {
            background: rgba(124, 58, 237, 0.1);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(124, 58, 237, 0.3);
            margin-bottom: 40px;
        }

        .thank-you-content p {
            color: #d1d5db;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .thank-you-content p:last-child {
            margin-bottom: 0;
        }

        .thank-you-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-button.secondary {
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
        }

        .contact-reminder {
            background: #1a1a1a;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #10b981;
        }

        .contact-reminder p {
            color: #9ca3af;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .contact-reminder p:last-child {
            margin-bottom: 0;
        }

        /* Chatbot Versions */
        .chatbot-version {
            background: rgba(16, 185, 129, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 2px solid rgba(16, 185, 129, 0.3);
            margin: 15px 0;
        }

        .version-badge {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .version-badge.hotel {
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            color: white;
        }

        .version-badge.agency {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .version-text {
            color: #d1d5db;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* Coming Soon Section */
        .coming-soon-section {
            background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
            padding: 80px 20px;
        }

        .coming-soon-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #9ca3af;
            font-size: 1.2rem;
            margin-bottom: 50px;
        }

        .coming-soon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .coming-soon-card {
            background: #1a1a1a;
            padding: 35px;
            border-radius: 20px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            position: relative;
            text-align: center;
            transition: all 0.3s;
            opacity: 0.85;
        }

        .coming-soon-card:hover {
            transform: translateY(-5px);
            opacity: 1;
            border-color: #7c3aed;
        }

        .coming-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .coming-icon {
            font-size: 3.5rem;
            margin: 20px 0 15px;
        }

        .coming-soon-card h3 {
            color: #10b981;
            font-size: 1.6rem;
            margin-bottom: 15px;
        }

        .coming-soon-card p {
            color: #9ca3af;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .coming-price {
            display: inline-block;
            background: rgba(124, 58, 237, 0.2);
            color: #7c3aed;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Additional Services Section */
        .additional-services {
            background: #0a0a0a;
            padding: 80px 20px;
        }

        .additional-services h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            transition: all 0.3s;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: #10b981;
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
        }

        .service-card.featured-service {
            border-color: #10b981;
        }

        .service-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #10b981;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: bold;
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: #10b981;
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .service-description {
            color: #d1d5db;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            color: #9ca3af;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 1rem;
        }

        .service-features li::before {
            content: "✓ ";
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        .service-pricing {
            text-align: center;
            padding: 25px 0;
            margin-bottom: 25px;
            border-top: 2px solid rgba(124, 58, 237, 0.2);
            border-bottom: 2px solid rgba(124, 58, 237, 0.2);
        }

        .service-price-main {
            color: #10b981;
            font-size: 2.8rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .service-price-sub {
            color: #9ca3af;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .service-price-extra {
            color: #6b7280;
            font-size: 0.95rem;
            font-style: italic;
        }

        .service-button {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 15px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .service-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: #9ca3af;
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(124, 58, 237, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #10b981;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .footer-logo-img {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }

        .footer-logo span {
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(124, 58, 237, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s;
            margin-bottom: 0 !important;
        }

        .social-links a:hover {
            background: #10b981;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #6b7280;
        }

        /* About Us / Quiénes Somos Styles */
        .about-story {
            background: #1a1a1a;
            padding: 80px 20px;
        }

        .about-story h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .story-text p {
            color: #d1d5db;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .story-quote {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quote-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .quote-text {
            color: white;
            font-size: 1.3rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 20px;
        }

        .quote-author {
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .who-we-serve {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
            padding: 80px 20px;
        }

        .who-we-serve h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .serve-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .serve-card {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            transition: all 0.3s;
        }

        .serve-card:hover {
            transform: translateY(-5px);
            border-color: #10b981;
        }

        .serve-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .serve-card h3 {
            color: #10b981;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .serve-card ul {
            list-style: none;
        }

        .serve-card ul li {
            color: #d1d5db;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
        }

        .serve-card ul li::before {
            content: "✓ ";
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        .mission-vision {
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            padding: 80px 20px;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .mv-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 50px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            transition: all 0.3s;
        }

        .mv-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .mv-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .mv-card h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .mv-card p {
            color: #e5e7eb;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .values-section {
            background: #0a0a0a;
            padding: 80px 20px;
        }

        .values-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .why-different {
            background: #1a1a1a;
            padding: 80px 20px;
        }

        .why-different h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .differences-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .diff-card {
            background: rgba(124, 58, 237, 0.1);
            padding: 30px;
            border-radius: 15px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            transition: all 0.3s;
        }

        .diff-card:hover {
            transform: translateY(-5px);
            border-color: #10b981;
        }

        .diff-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .diff-card h3 {
            color: #10b981;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .diff-card p {
            color: #d1d5db;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .tourism-opportunity {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
            padding: 80px 20px;
        }

        .tourism-opportunity h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .opportunity-content {
            max-width: 1100px;
            margin: 0 auto;
        }

        .opportunity-content h3 {
            text-align: center;
            color: #9ca3af;
            font-size: 1.3rem;
            margin-bottom: 50px;
        }

        .opportunity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .opp-item {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #10b981;
        }

        .opp-number {
            color: #7c3aed;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
            opacity: 0.3;
        }

        .opp-item h4 {
            color: #10b981;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .opp-item p {
            color: #d1d5db;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .team-section {
            background: #1a1a1a;
            padding: 80px 20px;
        }

        .team-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #10b981 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .founder-card {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
            padding: 50px;
            border-radius: 20px;
            border: 2px solid rgba(124, 58, 237, 0.3);
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .founder-avatar {
            flex-shrink: 0;
        }

        .avatar-circle {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #10b981 0%, #7c3aed 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: bold;
            color: white;
        }

        .founder-info h3 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 5px;
        }

        .founder-title {
            color: #10b981;
            font-size: 1.3rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .founder-credentials {
            margin-bottom: 25px;
        }

        .credential {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: #d1d5db;
            font-size: 1.1rem;
        }

        .credential-icon {
            font-size: 1.5rem;
        }

        .founder-bio {
            color: #e5e7eb;
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .final-cta {
            background: linear-gradient(135deg, #10b981 0%, #7c3aed 100%);
            padding: 80px 20px;
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-toggle {
                display: block;
            }

            header h1 {
                font-size: 1.8rem;
                padding: 0 10px;
            }

            header p {
                font-size: 1.1rem;
                padding: 0 10px;
            }

            .brand-name {
                font-size: 2rem;
            }

            .flow-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .pack-card.featured {
                transform: scale(1);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }

            .thank-you-message h1 {
                font-size: 2rem;
            }

            .thank-you-actions {
                flex-direction: column;
            }

            .success-icon {
                font-size: 4rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .story-content {
                grid-template-columns: 1fr;
            }

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

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

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

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

            .founder-card {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .avatar-circle {
                width: 150px;
                height: 150px;
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .header-logo {
                width: 80px;
                height: 80px;
            }

            .coming-soon-grid {
                grid-template-columns: 1fr;
            }

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

            .chatbot-version {
                padding: 15px;
            }
        }