/* ==========================================================================
   TECHNOLOGY PAGE STYLES
   ========================================================================== */

.tech-page {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ==========================================================================
   1. HERO HEADER (Matches Home Page)
   ========================================================================== */

/* Section wrapper to hold the radial glow */
.tech-page__hero-section {
    position: relative;
    overflow: hidden;
}

/* Reusable Calm Teal radial glow */
.tech-page__hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(31, 138, 112, 0.20) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.tech-page__hero {
    position: relative;
    z-index: 1; /* Keeps content above the glow */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
}

.tech-page__hero-badge {
    margin-top: 32px;
    margin-bottom: 24px;
}

/* Enlarged White Title with Teal Emphasis */
.tech-page__hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

.tech-page__hero-title em {
    font-style: normal;
    color: #1F8A70; /* Brand Calm Teal */
}

/* Lightened, readable subtitle for dark backgrounds */
.tech-page__hero-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 18px;
    color: #E2E8F0; /* Soft Off-White/Grey */
    margin: 0;
    line-height: 1.6;
    max-width: 680px;
}

/* ==========================================================================
   2. CONTENT SECTIONS
   ========================================================================== */

.tech-page__section-header {
    margin-bottom: 48px; /* 3rem */
}

.tech-page__section-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 32px; /* 2rem */
    font-weight: 700;
    color: #0B3C5D; /* Brand Deep Trust Blue */
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.tech-page__section-title--centered {
    text-align: center;
}

.tech-page__section-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 18px;
    color: #2D3139; /* Brand Charcoal */
    line-height: 1.6;
}

.tech-page__section-subtitle--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-page__section-body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    color: #2D3139; /* Brand Charcoal */
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-page__feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

/* ==========================================================================
   3. VISUALS & SPECIFIC LAYOUTS
   ========================================================================== */

.tech-page__visual-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 350px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB; /* Subtler border */
    border-radius: 12px; /* Smoother corners */
    box-shadow: 0 8px 24px rgba(11, 60, 93, 0.08); /* Brand shadow instead of harsh black shadow */
}

.tech-page__visual-placeholder {
    color: #A0A8B5; /* Brand Soft Grey */
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-page__compliance {
    width: 100%;
}

/* ==========================================================================
   4. RESPONSIVE SCALING
   ========================================================================== */

@media screen and (max-width: 1023px) {
    .tech-page__hero-title {
        font-size: 44px;
    }
    
    .tech-page__section-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 639px) {
    .tech-page__hero-title {
        font-size: 36px;
    }
    
    .tech-page__hero-subtitle {
        font-size: 16px;
    }
    
    .tech-page__section-title {
        font-size: 24px;
    }
    
    .tech-page__section-header {
        margin-bottom: 32px;
    }
    
    .tech-page__visual-panel {
        min-height: 240px;
        margin-top: 32px; /* Adds spacing when stacked on mobile */
    }
}