@import "template.css";

/* Why SFAIT Section */
.why-sfait-section {
    padding: 100px 20px;
    background: white;
    margin: 0 0 60px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

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

.why-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 226, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #1e1ee2;
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(5deg);
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b0c2a;
    margin-bottom: 15px;
}

.why-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

/* For Who Section */
.for-who-section {
    padding: 100px 20px;
    background: transparent;
    margin: 0 0 60px;
    border-radius: 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.use-case {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #1e1ee2;
}

.use-case-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.use-case:hover .use-case-icon {
    background: linear-gradient(135deg, #1e1ee2 0%, #0f4585 100%);
    transform: rotate(5deg) scale(1.1);
}

.use-case-icon i {
    font-size: 2.2rem;
    color: #1e1ee2;
    transition: color 0.3s ease;
}

.use-case:hover .use-case-icon i {
    color: white;
}

.use-case h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b0c2a;
    margin-bottom: 12px;
}

.use-case p {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

/* How it works */
.how-it-works-section {
    padding: 100px 20px;
    background: white;
    margin: 0 0 60px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 25px;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #1e1ee2;
}

.step-number {
    background: linear-gradient(135deg, #1e1ee2 0%, #0f4585 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Chakra Petch', sans-serif;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b0c2a;
    margin-bottom: 12px;
}

.step-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: #1e1ee2;
    font-weight: 700;
    flex-shrink: 0;
}

/* Main Offer Section - 3 Pricing Cards */
.presentation-pack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 30px;
    padding: 100px 20px 40px;
    max-width: 100%;
    margin: 0 0 20px;
    background: transparent;
    border-radius: 0;
}

.offers-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.offers-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b0c2a;
    margin-bottom: 10px;
}

.offers-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Pricing Cards Base */
.pricing-card {
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
    background: white;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    font-family: 'Chakra Petch', sans-serif;
}

/* Starter Card (Blue accent) */
.pricing-card.starter {
    border-color: #93c5fd;
}

.pricing-card.starter:hover {
    border-color: #60a5fa;
}

.pricing-card.starter .card-header h2 span {
    color: #3b82f6;
}

/* Business Card (Green accent - highlighted) */
.pricing-card.business {
    border-color: #1e1ee2;
    border-width: 2px;
}

.pricing-card.business:hover {
    border-color: #0f4585;
    box-shadow: 0 12px 40px rgba(30, 30, 226, 0.2);
}

.pricing-card.business .card-header h2 span {
    color: #1e1ee2;
}

/* Ultimate Card (Purple accent) */
.pricing-card.ultimate {
    border-color: #c084fc;
}

.pricing-card.ultimate:hover {
    border-color: #a855f7;
}

.pricing-card.ultimate .card-header h2 span {
    color: #a855f7;
}

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

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b0c2a;
    margin-bottom: 15px;
}

.offer-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 15px;
    padding: 0 10px;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 10px 0;
    font-family: 'Chakra Petch', sans-serif;
    color: #0b0c2a;
    line-height: 1;
}

.price-sub {
    font-size: 1rem;
    color: #64748b;
}

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

.pricing-card.business .custom-separator {
    background: linear-gradient(90deg, #1e1ee2 0%, #0f4585 100%);
}

/* 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.05rem;
    color: #0b0c2a;
}

.service-title i {
    color: #1e1ee2;
    font-size: 1.2rem;
}

.pricing-card.starter .service-title i {
    color: #3b82f6;
}

.pricing-card.ultimate .service-title i {
    color: #a855f7;
}

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

.service-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    padding-left: 5px;
    color: #475569;
    font-size: 0.95rem;
}

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

.pricing-card.starter .service-list li::before {
    color: #3b82f6;
}

.pricing-card.ultimate .service-list li::before {
    color: #a855f7;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #1e1ee2 0%, #0f4585 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(30, 30, 226, 0.3);
    transition: all 0.3s ease;
    margin-top: 30px;
}

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

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

/* Technical Specs Section */
.tech-specs-section {
    margin: 0 0 60px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    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: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tech-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
    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: #1e1ee2;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 30, 226, 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: #1e1ee2;
}

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

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

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

.spec-icon i {
    color: #1e1ee2;
    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: 0 0 60px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
    position: relative;
    overflow: hidden;
}

.launch-banner::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.launch-banner::before {
    content: '🚀';
    position: absolute;
    font-size: 6rem;
    opacity: 0.50;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.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: 12px;
    font-family: 'Chakra Petch', sans-serif;
}

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

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