/* New Banking Product Page Specific Styles */

/* Content Centering */
.content-center {
    text-align: center;
}

.content-center .section-title {
    margin-bottom: 1.25rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 1.75rem;
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.section-note {
    max-width: 800px;
    margin: 1.75rem auto 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Product Hero */
.product-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-cyan);
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-subtitle {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    color: var(--brand-weave);
    font-weight: 500;
    line-height: 1.5;
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vision-badge svg {
    flex-shrink: 0;
}

.vision-description {
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Thesis / Why Different */
.thesis-section,
.modules-section,
.wedges-section,
.trust-section,
.deployment-section {
    padding: clamp(2.75rem, 5vw, 4rem) 0;
    border-top: 1px solid var(--line-strong);
}

.thesis-section {
    background: var(--bg-dark);
}

.thesis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.thesis-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: left;
}

.thesis-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 80, 136, 0.3);
}

.thesis-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.thesis-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thesis-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Modules Section */
.modules-section {
    background: var(--bg-darker);
}

.modules-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 auto 1.5rem;
    max-width: 1100px;
    text-align: left;
}

.modules-subtitle:not(:first-of-type) {
    margin-top: 2rem;
}

.modules-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mandatory-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.licensable-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.module-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: left;
}

.module-card.compact {
    padding: 1.5rem;
    text-align: center;
}

.module-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15);
}

.module-code {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-weave);
    margin-bottom: 0.75rem;
}

.module-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.module-card.compact h3 {
    margin-bottom: 0;
    font-size: 1rem;
}

.module-card.compact .module-code {
    margin-bottom: 0.5rem;
}

.module-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Wedges / Entry Points */
.wedges-section {
    background: var(--bg-dark);
}

.wedges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.wedge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.wedge-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 80, 136, 0.3);
}

.wedge-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.wedge-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.wedge-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wedge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wedge-list li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wedge-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    background: var(--bg-darker);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: left;
}

.trust-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 80, 136, 0.3);
}

.trust-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Deployment Section */
.deployment-section {
    background: var(--bg-dark);
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.deployment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.deployment-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.deployment-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.deployment-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.deployment-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        padding: 100px 0 40px;
    }

    .modules-subtitle {
        text-align: center;
    }

    .thesis-grid,
    .mandatory-grid,
    .licensable-grid,
    .wedges-grid,
    .trust-grid,
    .deployment-grid {
        grid-template-columns: 1fr;
    }
}
