/* =========================================
   Service Page Styles (ITS)
   ========================================= */

/* -----------------------------------------
   1. Hero Section (from pricing.css)
   ----------------------------------------- */
.pricing-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.pricing-hero .hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
}

.pricing-hero .hero__title {
    margin-top: 0;
    color: white;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .pricing-hero .hero__title {
        font-size: 32px;
    }
}

.pricing-hero .hero__description {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.6;
}

.pricing-hero .hero__grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.pricing-hero .hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

.pricing-hero .hero__orb--1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #2b5af4;
    /* Primary Accent */
}

.pricing-hero .hero__orb--2 {
    bottom: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: #ff5000;
    /* Orange Accent */
    opacity: 0.2;
}

.pricing-hero .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.pricing-hero .hero__badge span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pricing-hero .badge-dot {
    width: 8px;
    height: 8px;
    background: #ff5000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff5000;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -----------------------------------------
   2. Content Sections (from product.css)
   ----------------------------------------- */

/* About Section */
.product-about-card {
    max-width: 1170px;
    margin: 0 auto;
    text-align: left;
}

#about-product .section__subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    text-align: left;
    max-width: none;
}

.about-text-v2 {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

/* Advantages Section V2 */
.advantages-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .advantages-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.advantage-card-v2 {
    background: white;
    padding: 32px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.advantage-card-v2:hover {
    box-shadow: 0 20px 25px -5px rgba(255, 80, 0, 0.05);
    transform: translateY(-4px);
    border-color: rgba(255, 80, 0, 0.2);
}

.advantage-icon-v2 {
    width: 48px;
    height: 48px;
    background: #fff5f0;
    color: #ff5000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon-v2 svg {
    width: 24px;
    height: 24px;
}

.advantage-content-v2 {
    font-size: 15px;
    line-height: 1.5;
    color: #475569;
}

.advantage-card-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    width: 100%;
}

/* Pricing Grid (Access Conditions) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card--popular {
    border-color: #ff5000;
    box-shadow: 0 20px 40px -15px rgba(255, 80, 0, 0.1);
    transform: scale(1.02);
}

.pricing-card__tier {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 16px;
}

.pricing-card--popular .pricing-card__tier {
    color: #ff5000;
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.pricing-card__price {
    margin-bottom: 32px;
}

.pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pricing-card__currency {
    font-size: 24px;
    color: #64748b;
    font-weight: 600;
}

.pricing-card__period {
    color: #64748b;
    font-size: 16px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #475569;
    font-size: 15px;
}

.pricing-card__feature::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pricing-card__button {
    width: 100%;
    justify-content: center;
}

/* -----------------------------------------
   3. Ecosystem Section (Hub Style)
   ----------------------------------------- */
.ecosystem-section {
    background: #0f172a;
    padding: 100px 0;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

.ecosystem-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ecosystem-card:hover {
    background: rgba(30, 41, 59, 1);
    transform: translateY(-5px);
    border-color: rgba(255, 80, 0, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.ecosystem-card--main {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 80, 0, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-color: rgba(255, 80, 0, 0.3);
}

@media (min-width: 1025px) {
    .ecosystem-card--main {
        grid-row: span 2;
        justify-content: center;
    }

    .ecosystem-card--main .ecosystem-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .ecosystem-card--main h3 {
        font-size: 24px;
    }
}

.ecosystem-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 80, 0, 0.1);
    color: #ff5000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ecosystem-icon svg {
    width: 24px;
    height: 24px;
}

.ecosystem-card:hover .ecosystem-icon {
    background: #ff5000;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.ecosystem-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ecosystem-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}