/**
 * Technology Overview Page Layout CSS
 * Verso Industries - Enterprise-level design
 * Multi-pillar technology showcase with world-class UX
 */

/* ============================================================================
   ROOT VARIABLES - Extends base.css tokens
   ============================================================================ */

.technology-page {
    /* Core Palette */
    --tech-bg-deep: #333333;
    --tech-bg-surface: #3a3a3a;
    --tech-bg-elevated: rgba(255, 255, 255, 0.05);

    /* Card Backgrounds */
    --tech-bg-card: rgba(60, 60, 60, 0.6);
    --tech-bg-card-hover: rgba(70, 70, 70, 0.8);

    /* Borders */
    --tech-border-subtle: rgba(255, 255, 255, 0.1);
    --tech-border-medium: rgba(255, 255, 255, 0.2);

    /* Text */
    --tech-text-primary: #ffffff;
    --tech-text-secondary: rgba(255, 255, 255, 0.85);
    --tech-text-muted: rgba(255, 255, 255, 0.6);

    /* Accents */
    --tech-accent-blue: var(--accent-blue, #4169e1);
    --tech-accent-gold: var(--accent-gold, #F4C430);
    --tech-accent-purple: #a855f7;
    --tech-accent-green: #22c55e;
    --tech-accent-silver: #94a3b8;

    /* Glows */
    --tech-glow-blue: 0 0 40px rgba(65, 105, 225, 0.4);
    --tech-glow-purple: 0 0 40px rgba(168, 85, 247, 0.4);
    --tech-glow-gold: 0 0 40px rgba(244, 196, 48, 0.3);

    /* Radii */
    --tech-radius-sm: 4px;
    --tech-radius-md: 8px;
    --tech-radius-lg: 12px;
    --tech-radius-xl: 16px;

    /* Transitions */
    --tech-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --tech-transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tech-transition-slow: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);

    width: 100%;
    min-height: 100vh;
    background: var(--tech-bg-deep);
    color: var(--tech-text-primary);
    overflow-x: hidden;
    font-family: 'Neon-Regular', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.technology-page .breadcrumbs {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.technology-page .breadcrumbs ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.technology-page .breadcrumbs li {
    color: var(--tech-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.technology-page .breadcrumbs li::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.technology-page .breadcrumbs li:last-child::after {
    display: none;
}

.technology-page .breadcrumbs li:last-child {
    color: var(--tech-accent-blue);
}

.technology-page .breadcrumbs a {
    color: var(--tech-accent-blue);
    text-decoration: none;
    transition: color var(--tech-transition-fast);
}

.technology-page .breadcrumbs a:hover {
    color: white;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes tech-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tech-circuit-flow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes tech-orb-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@keyframes tech-card-enter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tech-animate-slide-up {
    animation: tech-fade-up 0.8s var(--tech-transition-smooth) forwards;
}

.tech-section--visible {
    animation: tech-fade-up 0.7s var(--tech-transition-smooth) forwards;
}

/* ============================================================================
   SECTION UTILS
   ============================================================================ */

.tech-section-spacer {
    height: clamp(60px, 8vw, 100px);
}

.tech-section-title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--tech-text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.tech-section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--tech-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.tech-highlight {
    display: block;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 1rem;
}

.tech-highlight--blue {
    color: var(--tech-accent-blue);
}

.tech-highlight--purple {
    color: var(--tech-accent-purple);
}

.tech-highlight--gold {
    color: var(--tech-accent-gold);
}

.tech-highlight--silver {
    color: var(--tech-accent-silver);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.tech-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2a2a4a 0%, #333333 50%, #3a3a4a 100%);
}

.tech-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.tech-hero__circuit-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(65, 105, 225, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 105, 225, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: tech-circuit-flow 50s linear infinite;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.tech-hero__gradient-orbs {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 35% 25% at 20% 30%, rgba(65, 105, 225, 0.25), transparent 70%),
        radial-gradient(ellipse 35% 25% at 80% 70%, rgba(168, 85, 247, 0.2), transparent 70%);
    animation: tech-orb-pulse 12s ease-in-out infinite;
}

.tech-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.tech-hero__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--tech-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    animation: tech-fade-up 1s var(--tech-transition-smooth) forwards;
}

.tech-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--tech-text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: tech-fade-up 1s var(--tech-transition-smooth) 0.15s forwards;
    opacity: 0;
}

.tech-hero__subtitle strong {
    color: var(--tech-accent-blue);
}

.tech-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    animation: tech-fade-up 1s var(--tech-transition-smooth) 0.3s forwards;
    opacity: 0;
}

.tech-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: var(--tech-radius-md);
    transition: all var(--tech-transition-smooth);
    cursor: pointer;
}

.tech-hero__btn--primary {
    background: var(--tech-accent-blue);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
}

.tech-hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.6);
}

.tech-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tech-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ============================================================================
   TWO PILLARS SECTION
   ============================================================================ */

.tech-pillars {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
}

.tech-pillars__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-pillar-card {
    padding: 2.5rem;
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border-subtle);
    border-radius: var(--tech-radius-lg);
    transition: all var(--tech-transition-smooth);
    animation: tech-card-enter 0.5s ease forwards;
    opacity: 0;
}

.tech-pillar-card:hover {
    background: var(--tech-bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--tech-glow-blue);
}

.tech-pillar-card__icon {
    width: 48px;
    height: 48px;
    color: var(--tech-accent-blue);
    margin-bottom: 1.5rem;
}

.tech-pillar-card__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.tech-pillar-card__text {
    font-size: 1rem;
    color: var(--tech-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-pillar-card__tech {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--tech-accent-gold);
    font-weight: 600;
}

/* ============================================================================
   VERSO OS SECTION
   ============================================================================ */

.tech-verso-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: #2a2a2a;
}

.tech-verso-section__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-verso-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tech-verso-replace {
    padding: 2rem;
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border-subtle);
    border-radius: var(--tech-radius-lg);
}

.tech-verso-replace__heading {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
}

.tech-verso-replace__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-saas-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--tech-radius-md);
    transition: background var(--tech-transition-fast);
}

.tech-saas-item:hover {
    background: rgba(0, 0, 0, 0.4);
}

.tech-saas-item__icon {
    width: 24px;
    height: 24px;
    color: var(--tech-accent-blue);
    flex-shrink: 0;
}

.tech-saas-item__content {
    display: flex;
    flex-direction: column;
}

.tech-saas-item__name {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.7);
}

.tech-saas-item__category {
    font-size: 0.75rem;
    color: var(--tech-text-muted);
}

.tech-verso-arch {
    padding: 2rem;
    background: var(--tech-bg-card);
    border: 1px solid var(--tech-border-subtle);
    border-left: 4px solid var(--tech-accent-blue);
    border-radius: var(--tech-radius-lg);
}

.tech-verso-arch__heading {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1.5rem;
}

.tech-verso-arch__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.tech-verso-arch__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
}

.tech-verso-arch__list li svg {
    flex-shrink: 0;
    color: var(--tech-accent-green);
    margin-top: 2px;
}

.tech-verso-stat {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2), rgba(65, 105, 225, 0.05));
    border-radius: var(--tech-radius-md);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-verso-stat__value {
    display: block;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2.5rem;
    color: var(--tech-accent-blue);
    margin-bottom: 0.25rem;
}

.tech-verso-stat__label {
    font-size: 0.9rem;
    color: var(--tech-text-secondary);
}

.tech-verso-arch__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--tech-accent-blue);
    text-decoration: none;
    transition: gap var(--tech-transition-fast);
}

.tech-verso-arch__link:hover {
    gap: 0.75rem;
}

/* ============================================================================
   HSMN SECTION
   ============================================================================ */

.tech-hsmn-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
}

.tech-hsmn-section__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-hsmn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-hsmn-problem {
    padding: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--tech-radius-lg);
}

.tech-hsmn-problem__heading {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: rgba(239, 68, 68, 0.9);
    margin-bottom: 1rem;
}

.tech-hsmn-problem__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-hsmn-problem__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
}

.tech-hsmn-problem__x {
    color: rgba(239, 68, 68, 0.8);
    font-weight: bold;
}

.tech-hsmn-solution {
    padding: 2rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--tech-radius-lg);
}

.tech-hsmn-solution__heading {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: var(--tech-accent-green);
    margin-bottom: 1rem;
}

.tech-hsmn-solution__grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-hsmn-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.tech-hsmn-feature__icon {
    color: var(--tech-accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-hsmn-feature strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.tech-hsmn-feature p {
    font-size: 0.85rem;
    color: var(--tech-text-muted);
    margin: 0;
}

.tech-hsmn-apps {
    text-align: center;
    padding: 2rem;
    background: var(--tech-bg-card);
    border-radius: var(--tech-radius-lg);
}

.tech-hsmn-apps h4 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.9rem;
    color: var(--tech-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.tech-hsmn-apps__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-hsmn-apps__tags span {
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--tech-accent-purple);
}

.tech-hsmn-apps__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--tech-accent-purple);
    text-decoration: none;
    transition: gap var(--tech-transition-fast);
}

.tech-hsmn-apps__link:hover {
    gap: 0.75rem;
}

/* ============================================================================
   HIGHNOON SECTION
   ============================================================================ */

.tech-highnoon-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.tech-highnoon-section__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tech-highnoon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.tech-highnoon-gap {
    padding: 2rem;
    background: var(--tech-bg-card);
    border-radius: var(--tech-radius-lg);
}

.tech-highnoon-gap h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.tech-highnoon-gap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-highnoon-gap li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
}

.tech-highnoon-gap li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--tech-accent-gold);
}

.tech-highnoon-features {
    padding: 2rem;
    background: var(--tech-bg-card);
    border: 1px solid rgba(244, 196, 48, 0.2);
    border-radius: var(--tech-radius-lg);
}

.tech-highnoon-features h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: var(--tech-accent-gold);
    margin-bottom: 1rem;
}

.tech-highnoon-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tech-highnoon-feature {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--tech-radius-md);
}

.tech-highnoon-feature strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.tech-highnoon-feature p {
    font-size: 0.8rem;
    color: var(--tech-text-muted);
    margin: 0;
}

.tech-highnoon-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.tech-highnoon-badge span {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.2), rgba(244, 196, 48, 0.1));
    border: 1px solid rgba(244, 196, 48, 0.4);
    border-radius: 20px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.85rem;
    color: var(--tech-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tech-highnoon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--tech-accent-gold);
    text-decoration: none;
    transition: gap var(--tech-transition-fast);
}

.tech-highnoon-link:hover {
    gap: 0.75rem;
}

/* ============================================================================
   EHD PROPULSION SECTION
   ============================================================================ */

.tech-ehd-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
}

.tech-ehd-section__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tech-ehd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.tech-ehd-tech {
    padding: 2rem;
    background: var(--tech-bg-card);
    border-radius: var(--tech-radius-lg);
}

.tech-ehd-tech h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
}

.tech-ehd-tech__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}

.tech-ehd-tech__steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--tech-border-subtle);
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
}

.tech-ehd-tech__steps li:last-child {
    border-bottom: none;
}

.tech-ehd-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--tech-accent-silver);
    color: #1a1a1a;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.85rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-ehd-result {
    padding: 2rem;
    background: var(--tech-bg-card);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--tech-radius-lg);
}

.tech-ehd-result h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.tech-ehd-result__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tech-ehd-result__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
}

.tech-ehd-result__list svg {
    color: var(--tech-accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-ehd-result__note {
    font-size: 0.9rem;
    color: var(--tech-text-muted);
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid var(--tech-border-subtle);
}

.tech-ehd-result__note strong {
    color: var(--tech-accent-silver);
}

.tech-ehd-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.tech-ehd-badge span {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.2), rgba(148, 163, 184, 0.1));
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 20px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.85rem;
    color: var(--tech-accent-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tech-ehd-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--tech-accent-silver);
    text-decoration: none;
    transition: gap var(--tech-transition-fast);
}

.tech-ehd-link:hover {
    gap: 0.75rem;
}

/* ============================================================================
   STACK INTEGRATION SECTION
   ============================================================================ */

.tech-stack-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: #2a2a2a;
}

.tech-stack-section__inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tech-stack-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tech-stack-layer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--tech-bg-card);
    border-radius: var(--tech-radius-lg);
    text-align: left;
    transition: all var(--tech-transition-smooth);
}

.tech-stack-layer:hover {
    transform: translateX(10px);
}

.tech-stack-layer--purple {
    border-left: 4px solid var(--tech-accent-purple);
}

.tech-stack-layer--purple:hover {
    box-shadow: var(--tech-glow-purple);
}

.tech-stack-layer--blue {
    border-left: 4px solid var(--tech-accent-blue);
}

.tech-stack-layer--blue:hover {
    box-shadow: var(--tech-glow-blue);
}

.tech-stack-layer--gold {
    border-left: 4px solid var(--tech-accent-gold);
}

.tech-stack-layer--gold:hover {
    box-shadow: var(--tech-glow-gold);
}

.tech-stack-layer__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-stack-layer--purple .tech-stack-layer__icon svg {
    color: var(--tech-accent-purple);
}

.tech-stack-layer--blue .tech-stack-layer__icon svg {
    color: var(--tech-accent-blue);
}

.tech-stack-layer--gold .tech-stack-layer__icon svg {
    color: var(--tech-accent-gold);
}

.tech-stack-layer__content {
    flex: 1;
}

.tech-stack-layer__content strong {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: white;
}

.tech-stack-layer__subtitle {
    font-size: 0.85rem;
    color: var(--tech-text-muted);
    margin-left: 0.5rem;
}

.tech-stack-layer__content p {
    font-size: 0.9rem;
    color: var(--tech-text-secondary);
    margin: 0.25rem 0 0;
}

.tech-stack-summary {
    font-size: 1rem;
    color: var(--tech-text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.tech-stack-summary strong {
    color: var(--tech-accent-blue);
}

/* Open Frameworks */
.tech-frameworks {
    padding: 2rem;
    background: var(--tech-bg-card);
    border-radius: var(--tech-radius-lg);
}

.tech-frameworks h3 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.tech-frameworks>p {
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
    margin-bottom: 1.5rem;
}

.tech-frameworks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tech-framework-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--tech-border-subtle);
    border-radius: var(--tech-radius-md);
    text-decoration: none;
    color: white;
    transition: all var(--tech-transition-smooth);
}

.tech-framework-card:hover {
    background: rgba(65, 105, 225, 0.15);
    border-color: var(--tech-accent-blue);
    transform: translateY(-3px);
}

.tech-framework-card__icon {
    width: 24px;
    height: 24px;
    color: var(--tech-accent-blue);
    flex-shrink: 0;
}

.tech-framework-card span {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 600;
}

.tech-framework-card svg:last-child {
    color: var(--tech-text-muted);
    flex-shrink: 0;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.tech-cta-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(180deg, var(--tech-bg-deep) 0%, #252535 100%);
}

.tech-cta-section__inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech-cta-section__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.tech-cta-section__paths {
    margin-bottom: 2.5rem;
}

.tech-cta-section__paths p {
    font-size: 1.1rem;
    color: var(--tech-text-secondary);
    margin: 0.75rem 0;
}

.tech-cta-section__paths a {
    color: var(--tech-accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--tech-transition-fast);
}

.tech-cta-section__paths a:hover {
    color: white;
}

.tech-cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.tech-cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: var(--tech-radius-md);
    transition: all var(--tech-transition-smooth);
}

.tech-cta-section__btn--primary {
    background: var(--tech-accent-blue);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
}

.tech-cta-section__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.6);
}

.tech-cta-section__btn--secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tech-cta-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
    .tech-verso-grid {
        grid-template-columns: 1fr;
    }

    .tech-frameworks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .tech-hsmn-grid {
        grid-template-columns: 1fr;
    }

    .tech-highnoon-content {
        grid-template-columns: 1fr;
    }

    .tech-highnoon-features__grid {
        grid-template-columns: 1fr;
    }

    .tech-ehd-grid {
        grid-template-columns: 1fr;
    }

    .tech-verso-replace__grid {
        grid-template-columns: 1fr;
    }

    .tech-frameworks-grid {
        grid-template-columns: 1fr;
    }

    .tech-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .tech-hero__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .tech-cta-section__actions {
        flex-direction: column;
        align-items: center;
    }

    .tech-cta-section__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .technology-page .breadcrumbs {
        padding: 0.75rem 1rem;
    }

    .tech-hero {
        min-height: 60vh;
        padding: 3rem 1rem;
    }

    .tech-pillar-card,
    .tech-verso-replace,
    .tech-verso-arch,
    .tech-hsmn-problem,
    .tech-hsmn-solution,
    .tech-hsmn-apps,
    .tech-highnoon-gap,
    .tech-highnoon-features,
    .tech-ehd-tech,
    .tech-ehd-result,
    .tech-stack-layer,
    .tech-frameworks {
        padding: 1.5rem;
    }

    .tech-stack-layer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tech-framework-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .tech-framework-card svg:last-child {
        display: none;
    }
}