/* =========================================
   INVENA-STYLE HERO SECTION
   ========================================= */

/* Hero Section - Invena Style */
.hero-invena {
    position: relative;
    min-height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.hero-invena-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    /* Forces full viewport width */
    height: 100%;
}

.hero-invena-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Centered to avoid scaling issues */
}

.hero-invena-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-invena-content {
    position: relative;
    height: 100%;
    min-height: 100vh;
    /* Match container height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    color: white;
}

.hero-invena-inner {
    max-width: 700px;
}

.hero-invena-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 48px;
    height: 1px;
    background: #0d9488;
}

.hero-eyebrow-text {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.65rem;
    font-weight: 700;
    color: #5eead4;
}

.hero-invena-title {
    font-family: var(--font-main);
    /* Enforce Global Font */
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    /* Match Global Heading Weight */
    line-height: 1.1;
    margin-bottom: 24px;
    font-style: normal;
    /* Removed Italic */
    color: #ffffff;
}

.hero-invena-title span {
    color: #5eead4;
    /* Teal accent */
    font-weight: 900;
}

.hero-invena-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    font-weight: 300;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-invena-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-invena-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: white;
    padding: 16px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-invena-primary:hover {
    transform: translateY(-2px);
    background: #333333;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-invena-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-invena-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: #0d9488;
    opacity: 0.5;
}

.scroll-text {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #0d9488;
    font-weight: 700;
}

/* =========================================
   PREMIUM HERO SECTION - LIGHT STYLE
   ========================================= */

.hero-premium {
    padding: 60px 0 40px;
    background: #FAFAFA;
}

.hero-premium-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-eyebrow-badge {
    display: inline-block;
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-premium-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-premium-title .title-accent {
    display: block;
    color: #0d9488;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-top: 8px;
}

.hero-premium-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Visual Container */
.hero-premium-visual {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.hero-visual-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1) saturate(1.1);
}

.hero-visual-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
}

/* Floating Tags */
.hero-floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    z-index: 10;
}

.hero-floating-tag.top-left {
    top: 24px;
    left: 24px;
}

.hero-floating-tag.top-right {
    top: 24px;
    right: 24px;
}

.tag-badge {
    background: #0d9488;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.tag-label {
    color: #0f172a;
    font-weight: 600;
}

.hero-floating-tag svg {
    color: #0d9488;
}

/* Bottom Overlay */
.hero-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.overlay-content {
    max-width: 500px;
}

.overlay-badge {
    display: inline-block;
    background: rgba(13, 148, 136, 0.2);
    color: #5eead4;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.overlay-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
}

.overlay-description {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overlay-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* App Cards */
.hero-app-cards {
    display: flex;
    gap: 12px;
}

.hero-app-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.app-card-info {
    display: flex;
    flex-direction: column;
}

.app-card-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

.app-card-role {
    font-size: 0.65rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-bottom-overlay {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-app-cards {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .hero-floating-tag.top-right {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-premium {
        padding: 40px 0 20px;
    }

    .hero-premium-header {
        margin-bottom: 24px;
    }

    .hero-bottom-overlay {
        padding: 20px;
    }

    .hero-floating-tag {
        padding: 8px 12px;
        font-size: 0.65rem;
    }

    .hero-app-cards {
        gap: 8px;
    }

    .hero-app-card {
        padding: 8px 12px;
        flex-shrink: 0;
    }
}


/* Executive Perspective Section - Multi Device */
.executive-section {
    padding: 120px 0;
    background: #FAFAFA;
    overflow: hidden;
}

.executive-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.executive-grid.reverse {
    grid-template-columns: 7fr 5fr;
}

.executive-grid.reverse .executive-visual {
    order: 2;
}

.executive-grid.reverse .executive-content {
    order: 1;
    padding-left: 0;
    padding-right: 40px;
}

.executive-section.dark {
    background: #0f172a;
}

.executive-section.dark .executive-title,
.executive-section.dark .executive-description {
    color: white;
}

.executive-section.dark .executive-feature {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0d9488;
}

.executive-section.dark .executive-feature h4,
.executive-section.dark .executive-feature p {
    color: #cbd5e1;
}

.executive-section.dark .executive-feature-icon {
    color: #0d9488;
}

.executive-visual {
    position: relative;
}

.executive-main-image {
    position: relative;
    z-index: 10;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
}

.executive-main-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.executive-float-image {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 55%;
    z-index: 20;
    border: 8px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: floating 6s ease-in-out infinite;
}

.executive-float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.executive-stat-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #0f172a;
    color: white;
    padding: 32px;
    z-index: 30;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.executive-stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #0d9488;
    line-height: 1;
}

.executive-stat-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top: 8px;
    font-weight: 700;
    opacity: 0.7;
}

.executive-bg-frame {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border: 2px solid #0d9488;
    opacity: 0.1;
    z-index: 0;
}

.executive-content {
    padding-left: 40px;
}

.executive-eyebrow {
    color: var(--accent-color);
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.executive-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.executive-description {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--gray-800);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}

.executive-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.executive-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0f172a;
    border-radius: 8px;
}

.executive-feature-icon {
    width: 24px;
    height: 24px;
    color: #0f172a;
    flex-shrink: 0;
}

.executive-feature h4 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
    color: var(--heading-color);
}

.executive-feature p {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.5;
}

.executive-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.executive-signature {
    display: flex;
    flex-direction: column;
}

.executive-signature-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.executive-signature-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
}

.executive-divider {
    width: 1px;
    height: 50px;
    background: #e2e8f0;
}

.executive-contact {
    display: flex;
    flex-direction: column;
}

.executive-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
}

.executive-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 1024px) {
    .executive-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .executive-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .executive-content {
        padding-left: 0;
    }

    .executive-float-image {
        width: 45%;
        right: -20px;
        top: -20px;
    }
}

@media (max-width: 768px) {
    .hero-invena-content {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-invena-title {
        font-size: 2.5rem;
    }

    .hero-invena-buttons {
        flex-direction: column;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .executive-section {
        padding: 80px 0;
    }

    .executive-features {
        grid-template-columns: 1fr;
    }

    .executive-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .executive-divider {
        width: 100%;
        height: 1px;
    }

    .executive-float-image {
        display: none;
    }

    .executive-stat-box {
        bottom: -20px;
        left: -10px;
        padding: 20px;
    }

    .executive-stat-number {
        font-size: 2rem;
    }
}