:root {
    --primary-bg: rgb(255, 250, 235);
    --text-color: rgb(31, 31, 31);
    --button-bg: rgba(255, 240, 194, 0.5);
    --white-text: rgb(255, 255, 255);
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --accent-yellow: #ffd23f;
    --light-gray: #f8f9fa;
    --border-color: rgba(31, 31, 31, 0.1);
}

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

body {
    font-family: Arial, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-color);
    background-color: var(--primary-bg);
}

.navbar {
    background-color: var(--primary-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.navbar-brand .logo i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

.navbar-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline-primary:hover {
    background-color: var(--text-color);
    color: var(--white-text);
}

.btn-primary {
    background-color: var(--button-bg);
    border: 1px solid var(--button-bg);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--text-color);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 25%, #ffa726 50%, #ffb74d 75%, #ffcc80 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path d="M0,300 L0,200 L100,150 L200,180 L300,120 L400,160 L500,100 L600,140 L700,80 L800,120 L900,60 L1000,100 L1100,40 L1200,80 L1200,300 Z" fill="%23000" opacity="0.3"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 90px;
    line-height: 90px;
    font-weight: 400;
    color: var(--white-text);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--white-text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.intro-title {
    font-size: 32px;
    color: var(--white-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-text {
    font-size: 18px;
    color: var(--white-text);
    line-height: 1.6;
    opacity: 0.9;
}

.hero-search, .cta-search, .code-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-container .form-control {
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    background: transparent;
    flex: 1;
}

.search-container .form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn-search {
    background-color: var(--primary-orange);
    border: none;
    padding: 16px 20px;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background-color: var(--secondary-orange);
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: var(--button-bg);
    color: var(--text-color);
    border: 1px solid var(--button-bg);
}

.btn-hero-primary:hover {
    background-color: var(--accent-yellow);
    color: var(--text-color);
    text-decoration: none;
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-text);
    text-decoration: none;
}

.btn-hero-primary i, .btn-hero-secondary i {
    margin-left: 8px;
}

.partners-section {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
}

.partners-logos {
    gap: 3rem;
}

.partner-logo {
    font-size: 2rem;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.content-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.feature-item span {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.content-visual, .unified-visual, .deploy-visual {
    position: relative;
}

.visual-placeholder {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.visual-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white-text);
}

.cta-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.unified-section, .deploy-section {
    background-color: var(--primary-bg);
}

.code-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white-text);
}

.btn-dark {
    background-color: var(--text-color);
    border: 1px solid var(--text-color);
    color: var(--white-text);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white-text);
    text-decoration: none;
}

.btn-dark i {
    margin-left: 8px;
}

.footer {
    background-color: var(--text-color);
    color: var(--white-text);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white-text);
}

.footer-brand .logo i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white-text);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .partners-logos {
        gap: 1.5rem;
    }
    
    .partner-logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .navbar-brand .logo {
        font-size: 1.25rem;
    }
    
    .navbar-brand .logo i {
        font-size: 1.5rem;
    }
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.pricing-card .card-header {
    background: transparent;
    border: none;
    padding: 2rem 1.5rem 1rem;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 24px;
    color: var(--text-color);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.7;
}

.plan-description {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 14px;
}

.pricing-card .card-body {
    padding: 0 1.5rem;
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card .feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.pricing-card .feature-list li:last-child {
    border-bottom: none;
}

.pricing-card .feature-list i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
    font-size: 14px;
}

.pricing-card .card-footer {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem 2rem;
}

.feature-box {
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    color: var(--text-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-bg);
    color: var(--primary-orange);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white-text);
}

.pricing-cta .section-title {
    color: var(--white-text);
}

.pricing-cta .section-description {
    color: var(--white-text);
    opacity: 0.9;
}

.contact-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.success-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.success-message h3 {
    margin-bottom: 1rem;
}

.success-message p {
    opacity: 0.9;
    margin: 0;
}

.contact-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.contact-card a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.form-control.is-valid {
    border-color: #28a745;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-select.is-valid {
    border-color: #28a745;
}

.form-select.is-invalid {
    border-color: #dc3545;
}

.mission-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-3px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 32px;
    color: white;
}

.mission-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}

.tech-features {
    margin-top: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tech-feature i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.tech-feature h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
    color: var(--primary-orange);
    font-size: 24px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    margin-top: 1rem;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.about-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
