/* ==============================================
   SHORE Oracle - Page Specific Styles
   Uses components from software-development.css
   ============================================== */

/* ==============================================
   Hero Section Overrides
   ============================================== */
.oracle-hero .hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.oracle-hero .hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.65), rgba(0,0,0,0.8));
}

.oracle-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oracle-hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oracle-hero .hero-text-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.oracle-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.oracle-hero .hero-carousel-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.oracle-hero .hero-tag {
    display: inline-block;
    color: var(--shore-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.oracle-hero .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 0;
}

.oracle-hero .hero-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
    justify-content: center;
}

.oracle-hero .hero-pillar {
    padding: 12px 22px;
    border: 1px solid rgba(122, 189, 48, 0.4);
    color: var(--shore-green);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 6px;
    background: rgba(122, 189, 48, 0.06);
    backdrop-filter: blur(4px);
}

.oracle-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.oracle-hero .btn-cta-outline {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}

.oracle-hero .btn-cta-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.btn-hero-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--shore-green);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--shore-green-dark);
    color: #fff;
    box-shadow: 0 8px 25px rgba(122, 189, 48, 0.3);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ==============================================
   Problem Section - Editorial Asymmetric Layout
   (Stat left, content right)
   ============================================== */
.oracle-problem-section {
    background: #fff;
    padding: 100px 0 120px;
}

.oracle-problem-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.oracle-problem-tag {
    display: inline-block;
    color: var(--shore-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.oracle-problem-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.oracle-problem-intro {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Problem Card */
.oracle-problem-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e5e5e5;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.oracle-problem-card:hover {
    border-color: rgba(122, 189, 48, 0.4);
    box-shadow: 0 8px 30px rgba(122, 189, 48, 0.08);
}

/* Green top accent */
.oracle-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--shore-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oracle-problem-card:hover .oracle-card-accent {
    opacity: 1;
}

/* Inner flex layout */
.oracle-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* Stat column (left) */
.oracle-stat-col {
    flex-shrink: 0;
}

.oracle-stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--shore-green);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.oracle-stat-unit {
    font-size: 0.7rem;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

/* Content column (right) */
.oracle-content-col {
    flex: 1;
    min-width: 0;
}

.oracle-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.oracle-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: rgba(122, 189, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.oracle-problem-card:hover .oracle-icon-box {
    background: var(--shore-green);
}

.oracle-icon-box i {
    font-size: 1rem;
    color: var(--shore-green);
    transition: color 0.3s ease;
}

.oracle-problem-card:hover .oracle-icon-box i {
    color: #fff;
}

.oracle-content-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.oracle-content-col p {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .oracle-problem-title {
        font-size: 2.4rem;
    }
    .oracle-stat-value {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .oracle-problem-section {
        padding: 70px 0 80px;
    }
    .oracle-problem-header {
        margin-bottom: 40px;
    }
    .oracle-problem-title {
        font-size: 2rem;
    }
    .oracle-problem-intro {
        font-size: 1rem;
    }
    .oracle-problem-card {
        padding: 24px;
    }
    .oracle-card-inner {
        gap: 18px;
    }
    .oracle-stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .oracle-problem-section {
        padding: 50px 0 60px;
    }
    .oracle-problem-title {
        font-size: 1.7rem;
    }
    .oracle-card-inner {
        flex-direction: column;
        gap: 16px;
    }
    .oracle-stat-col {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    .oracle-stat-unit {
        margin-top: 0;
    }
}

/* ==============================================
   Nearshore Section - Dark Editorial Layout
   ============================================== */
.nearshore-section {
    background: #0D0D0D;
    padding: 100px 0 120px;
    overflow: hidden;
}

.nearshore-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.nearshore-tag {
    display: inline-block;
    color: var(--shore-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.nearshore-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nearshore-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Stats Row */
.nearshore-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .nearshore-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nearshore-stat {
    text-align: center;
}

.nearshore-stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--shore-green);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.nearshore-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Two-column content */
.nearshore-content {
    align-items: flex-start;
}

/* Image wrapper */
.nearshore-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.nearshore-image-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .nearshore-image-wrapper img {
        height: 400px;
    }
}

.nearshore-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.nearshore-image-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nearshore-image-badge .badge-line {
    width: 4px;
    height: 32px;
    background: var(--shore-green);
    border-radius: 2px;
}

.nearshore-image-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Quote */
.nearshore-quote {
    border-left: 4px solid var(--shore-green);
    padding-left: 24px;
}

.nearshore-quote .quote-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.nearshore-quote .quote-source {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

/* Advantages grid */
.nearshore-advantages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .nearshore-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

.nearshore-advantage {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.advantage-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(122, 189, 48, 0.1);
    border: 1px solid rgba(122, 189, 48, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nearshore-advantage:hover .advantage-icon {
    background: rgba(122, 189, 48, 0.2);
}

.advantage-icon i {
    font-size: 1.1rem;
    color: var(--shore-green);
}

.advantage-content h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
}

/* Sources */
.nearshore-sources {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nearshore-sources p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .nearshore-section {
        padding: 70px 0 80px;
    }
    .nearshore-title {
        font-size: 2.4rem;
    }
    .nearshore-stats-row {
        margin-bottom: 50px;
        padding-bottom: 40px;
    }
    .nearshore-stat-value {
        font-size: 2.5rem;
    }
    .nearshore-image-wrapper {
        margin-bottom: 24px;
    }
    .nearshore-advantages {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nearshore-title {
        font-size: 2rem;
    }
    .nearshore-intro {
        font-size: 1rem;
    }
    .nearshore-stat-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .nearshore-section {
        padding: 50px 0 60px;
    }
    .nearshore-title {
        font-size: 1.7rem;
    }
    .nearshore-stats-row {
        gap: 20px;
    }
    .nearshore-stat-value {
        font-size: 1.8rem;
    }
    .nearshore-stat-label {
        font-size: 0.75rem;
    }
}

/* ==============================================
   Approach Section
   ============================================== */
.approach-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.approach-image img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
}

.strategy-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--shore-green);
    margin-bottom: 12px;
}

.service-card.recommended {
    border: 2px solid var(--shore-green);
    position: relative;
    overflow: visible !important;
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--shore-green);
    border-radius: 4px;
    z-index: 10;
    white-space: nowrap;
}

/* ==============================================
   Phase Duration in Delivery Section
   ============================================== */
.delivery-h-content .phase-duration {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--shore-green);
    margin-bottom: 10px;
}

/* ==============================================
   Why Section Stats Row
   ============================================== */
.oracle-stats-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.oracle-stat-box {
    text-align: center;
    flex: 1;
    min-width: 100px;
    padding: 20px 15px;
    background: rgba(122, 189, 48, 0.1);
    border-radius: 10px;
}

.oracle-stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--shore-green);
    line-height: 1;
}

.oracle-stat-box .stat-text {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    margin-top: 8px;
}


/* ==============================================
   Entry Points Cards
   ============================================== */
.entry-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
}

.entry-card:hover {
    border-color: rgba(122, 189, 48, 0.4);
    box-shadow: 0 8px 30px rgba(122, 189, 48, 0.08);
}

.entry-card.entry-highlight {
    border: 2px solid var(--shore-green);
    box-shadow: 0 8px 30px rgba(122, 189, 48, 0.1);
}

.entry-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--shore-green);
    border-radius: 20px;
    white-space: nowrap;
}

.entry-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(122, 189, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.entry-card:hover .entry-icon {
    background: var(--shore-green);
}

.entry-icon i {
    font-size: 1.4rem;
    color: var(--shore-green);
    transition: all 0.3s ease;
}

.entry-card:hover .entry-icon i {
    color: #fff;
}

.entry-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.entry-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shore-green);
    margin-bottom: 15px;
}

.entry-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.entry-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.entry-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.entry-includes li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--shore-green);
    margin-top: 7px;
    flex-shrink: 0;
}

.entry-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.entry-duration .duration-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.entry-duration .duration-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
}

.entry-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(122, 189, 48, 0.1);
    color: var(--shore-green);
}

.entry-cta:hover {
    background: var(--shore-green);
    color: #fff;
}

.entry-cta.entry-cta-primary {
    background: var(--shore-green);
    color: #fff;
}

.entry-cta.entry-cta-primary:hover {
    background: var(--shore-green-dark);
    box-shadow: 0 8px 25px rgba(122, 189, 48, 0.3);
}

/* ==============================================
   Case Cards - Approach Badge & Result
   ============================================== */
.case-approach-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--shore-green);
    background: rgba(122, 189, 48, 0.1);
    border-radius: 5px;
    margin-bottom: 15px;
}

.case-result-box {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.case-result-box .result-metric {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--shore-green);
    line-height: 1;
}

.case-result-box .result-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 5px;
}

/* ==============================================
   FAQ Section
   ============================================== */
.faq-accordion {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-right: 15px;
}

.faq-question:hover span {
    color: var(--shore-green);
}

.faq-question i {
    color: #999;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--shore-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ==============================================
   Contact Section - White Background Override
   ============================================== */
.oracle-page .cta-section {
    background: #fff;
}

.oracle-page .cta-section::before,
.oracle-page .cta-section::after {
    display: none;
}

.oracle-page .cta-section .container {
    max-width: 1200px;
}

.oracle-page .cta-section .section-title-modern {
    color: var(--charcoal);
}

.oracle-page .cta-section .section-desc {
    color: var(--gray);
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(122, 189, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shore-green);
    flex-shrink: 0;
}

.contact-info-item div,
.contact-info-item a {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.contact-info-item strong {
    color: var(--charcoal);
}

.contact-info-item a {
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--shore-green);
}

.contact-form-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    padding: 30px;
}

/* ==============================================
   CTA Button Modern
   ============================================== */
.btn-cta-modern {
    display: inline-block;
    padding: 14px 28px;
    background: var(--shore-green);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta-modern:hover {
    background: var(--shore-green-dark);
    color: #fff;
    box-shadow: 0 5px 20px rgba(122, 189, 48, 0.3);
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 991px) {
    .oracle-stats-row {
        justify-content: center;
    }
    .approach-image {
        margin-top: 30px;
    }
    .oracle-hero h1 {
        font-size: 2.8rem;
    }
    .oracle-hero .hero-subtitle {
        font-size: 1.05rem;
    }
    .oracle-hero .hero-pillar {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .oracle-hero h1 {
        font-size: 2.2rem;
    }
    .oracle-hero .hero-subtitle {
        font-size: 1rem;
    }
    .oracle-hero .hero-pillars {
        gap: 10px;
    }
    .oracle-hero .hero-pillar {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .oracle-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .oracle-hero h1 {
        font-size: 1.8rem;
    }
    .oracle-hero .hero-subtitle {
        font-size: 0.95rem;
    }
    .oracle-hero .hero-pillar {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}
