@import "template.css";

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0b0c2a;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: #3ad58c;
}

.hero-section p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Offer Section - Dual Pricing Cards */
.presentation-pack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards Base */
.pricing-card {
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Premium Card (Left - Dark Blue) */
.pricing-card.premium {
    background: linear-gradient(135deg, #0b0c2a 0%, #1e293b 100%);
    color: white;
}

.pricing-card.premium .card-header h2 {
    color: white;
}

.pricing-card.premium .card-header h2 span {
    color: #3ad58c;
}

.pricing-card.premium .price {
    color: white;
}

.pricing-card.premium .price-sub {
    color: #cbd5e1;
}

.pricing-card.premium .service-title {
    color: white;
}

.pricing-card.premium .service-title i {
    color: #3ad58c;
}

.pricing-card.premium .service-list li {
    color: #e2e8f0;
}

.pricing-card.premium .service-list li::before {
    color: #3ad58c;
}

/* Standard Card (Right - White) */
.pricing-card.standard {
    background: white;
    color: #0b0c2a;
}

.pricing-card.standard .card-header h2 {
    color: #0b0c2a;
}

.pricing-card.standard .card-header h2 span {
    color: #3ad58c;
}

.pricing-card.standard .price {
    color: #0b0c2a;
}

.pricing-card.standard .price-sub {
    color: #64748b;
}

.pricing-card.standard .service-title {
    color: #0b0c2a;
}

.pricing-card.standard .service-title i {
    color: #3ad58c;
}

.pricing-card.standard .service-list li {
    color: #475569;
}

.pricing-card.standard .service-list li::before {
    color: #3ad58c;
}

.pricing-card.standard .service-note {
    color: #64748b;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.price-sub {
    font-size: 1.1rem;
}

/* Custom Separator */
.custom-separator {
    height: 3px;
    background: linear-gradient(90deg, #0f4585 0%, #3ad58c 100%);
    border-radius: 10px;
    margin: 25px 0;
}

/* Service Sections */
.service-section {
    margin-bottom: 25px;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    padding-left: 5px;
}

.service-list li::before {
    content: "✓";
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.rocket {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* Technical Specs Section */
.tech-specs-section {
    margin-top: 80px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    padding-top: 0;
}

.tech-header {
    background: linear-gradient(135deg, #0b0c2a 0%, #1e293b 100%);
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.tech-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-header h2 span {
    color: #3ad58c;
}

.tech-header p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Tabs */
.tabs-container {
    background: #f1f5f9;
    padding: 30px 20px;
    border-bottom: 2px solid #e2e8f0;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #475569;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-button:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.tab-button.active {
    background: #3ad58c;
    color: #0b0c2a;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(58, 213, 140, 0.3);
}

/* Specs Grid */
.tab-content {
    display: none;
    padding: 50px 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.spec-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #3ad58c;
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.spec-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 14px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    background: #3ad58c;
    transform: rotate(5deg) scale(1.1);
}

.spec-icon i {
    color: #16a34a;
    font-size: 1.8rem;
}

.spec-card:hover .spec-icon i {
    color: white;
}

.spec-title {
    font-weight: 700;
    color: #0b0c2a;
    font-size: 1rem;
    flex: 1;
}

.spec-value {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Launch Offer Banner */
.launch-banner {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 60px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.launch-banner::before {
    content: "🚀";
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: -20px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.launch-badge {
    display: inline-block;
    background: white;
    color: #f59e0b;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.launch-banner h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.launch-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .presentation-pack {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-header h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 2.8rem;
    }

    .tech-header h2 {
        font-size: 2.2rem;
    }

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

    .launch-banner h3 {
        font-size: 1.5rem;
    }
}