/* Noohvia Widgets Styles */

/* =============================================
   UNIFIED TITLE STYLES
   ============================================= */

.widget-title,
.section-title,
.services-title,
.problem-title,
.solution-title,
.faq-title,
.final-cta-title,
.testimonial-title,
.benefit-title,
.step-title,
.value-title,
.case-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.widget-title,
.section-title {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 16px;
}

.services-title,
.problem-title,
.solution-title,
.faq-title,
.final-cta-title {
    font-size: clamp(24px, 2.5vw, 36px);
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h3.widget-title,
h3.section-title,
h3.services-title,
h3.problem-title,
h3.solution-title,
h3.faq-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.card-title,
.service-card-title,
.feature-title,
.solution-pillar-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Subtitle unified */
.widget-subtitle,
.section-subtitle,
.services-subtitle,
.problem-subtitle,
.solution-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* =============================================
   1. HERO V2 — 2-column split layout
   ============================================= */

.hero-v2 {
    background: linear-gradient(135deg, #fff 0%, var(--green-light) 100%);
    padding: 80px 0 64px;
}

.hero-v2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left column */
.hero-v2-content {
    display: flex;
    flex-direction: column;
}

.hero-v2-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-v2-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-v2-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-primary-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.hero-v2-secondary-link {
    font-weight: 600;
    color: var(--primary-navy);
    text-decoration: underline;
    font-size: 15px;
}

/* Trust badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

/* Right column — image + stats */
.hero-v2-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-stats-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 120px;
}

.hero-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero-v2-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-main-img {
        height: 320px;
    }

    .hero-stats-overlay {
        flex-direction: row;
        bottom: 12px;
        right: 12px;
        left: 12px;
        justify-content: flex-end;
    }

    .cta-primary-wrapper {
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .hero-stats-overlay {
        display: none;
    }

    .service-card-tag {
        font-size: 10px;
        padding: 4px 8px;
    }

    .service-card-description {
        font-size: 13px;
    }
}


/* =============================================
   2. PROBLEM SECTION
   ============================================= */

.problem-section {
    background-color: var(--bg-card);
}

.problem-container {
    max-width: 900px;
    margin: 0 auto;
}

.problem-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 24px;
    text-align: center;
}

.problem-description {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: center;
}

.risks-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.risk-item {
    background: var(--bg-body);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning-amber);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.risk-item span {
    font-size: 20px;
}

.risk-item p {
    margin: 0;
    font-weight: 600;
    color: var(--text-main);
}

.pivot-box {
    background: rgba(245, 158, 11, 0.1);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.3);
    text-align: center;
}

.pivot-text {
    margin: 0;
    font-size: 18px;
    color: var(--primary-navy);
    font-weight: 600;
}


/* =============================================
   3. SOLUTION SECTION — 2-column split
   ============================================= */

.solution-section {
    background-color: var(--bg-body);
}

.solution-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Image column */
.solution-image-col {
    flex-shrink: 0;
}

.solution-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Text column */
.solution-text-col {
    display: flex;
    flex-direction: column;
}

.solution-title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution-desc-1 {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Feature list — icon + title + content rows */
.solution-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution-pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.solution-pillar-icon {
    font-size: 28px;
    width: 52px;
    height: 52px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-pillar-body {
    flex: 1;
}

.solution-pillar-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.solution-pillar-content {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .solution-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-img {
        height: 280px;
    }
}


/* =============================================
   4. SERVICES SECTION — 3-column image cards
   ============================================= */

.services-section {
    background-color: var(--bg-body);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.services-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* 3-column grid */
.services-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Card */
.service-card-v2 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-v2:hover .service-card-img {
    transform: scale(1.04);
}

/* Tag overlay on image */
.service-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-navy);
    color: #fff;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
}

.service-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.service-card-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
    flex: 1;
}

.service-card-ideal {
    font-size: 13px;
    font-weight: 600;
    color: var(--success-green);
    margin: 0;
}

.services-cta-wrapper {
    text-align: center;
}

@media (max-width: 1024px) {
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid-3col {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   5. COMPARISON SECTION
   ============================================= */

.comparison-container {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px;
}

.comparison-table th {
    padding: 24px;
    text-align: left;
    border-bottom: 2px solid var(--border-light);
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    text-align: center;
    border-left: 1px solid var(--border-light);
}

.comparison-table th:nth-child(3) {
    border-bottom: 2px solid var(--primary-navy);
    background-color: var(--green-light);
    color: var(--primary-navy);
    font-weight: 800;
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
}

.comparison-table td:nth-child(1) {
    font-weight: 600;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
    border-left: 1px solid var(--border-light);
    font-size: 18px;
}

.comparison-table td:nth-child(3) {
    background-color: rgba(241, 243, 238, 0.4);
    font-weight: 700;
    color: var(--primary-navy);
}

.comparison-footer-text {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


/* =============================================
   6. BANDO INAIL — Process Steps
   ============================================= */

.process-steps-wrapper {
    position: relative;
    margin-bottom: 64px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 24px;
    border: 8px solid var(--bg-body);
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .process-line {
        display: none;
    }
}


/* =============================================
   7. BENEFIT SECTION
   ============================================= */

.benefit-section {
    background-color: var(--primary-navy);
    color: #fff !important;
}

.benefit-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 24px;
}

.benefit-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.7;
}

.value-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 12px;
}

.value-content {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0;
    line-height: 1.5;
}


/* =============================================
   8. CASE HISTORY SECTION
   ============================================= */

.case-history-container {
    text-align: center;
}

.case-placeholder {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border-light);
    text-align: center;
}

.case-study-card {
    padding: 40px;
    text-align: left;
}

.case-header {
    margin-bottom: 24px;
}

.case-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
}

.case-details {
    display: grid;
    gap: 20px;
}

.case-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.case-text {
    margin: 0;
    font-size: 15px;
    color: var(--text-main);
}

.case-result-box {
    background: rgba(245, 158, 11, 0.08);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--warning-amber);
}

.case-result-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.case-result-text {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
}


/* =============================================
   9. FAQ SECTION — 2-column layout
   ============================================= */

.faq-section {
    background-color: var(--bg-card);
}

.faq-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* Left column */
.faq-left-col {
    position: sticky;
    top: 120px;
}

.faq-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-form-wrapper {
    background: var(--bg-body);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

/* Right column — accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--primary-navy);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] .faq-chevron {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left-col {
        position: relative;
        top: 0;
    }
}


/* =============================================
   10. FINAL CTA SECTION
   ============================================= */

.final-cta-section {
    background: var(--primary-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
}

.final-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.final-cta-left {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.final-cta-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: left;
}

.final-cta-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 32px 0;
    text-align: left;
}

/* Features List styling */
.final-cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.cta-feature-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Form Wrapper "Lighter" styling */
.final-form-wrapper {
    text-align: left;
    padding: 36px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl); /* Stronger shadow to make it pop */
    max-width: 100%;
    width: 100%;
    border-top: 5px solid var(--warning-amber);
}

.final-form-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.final-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.final-form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Fluent Form overrides within this widget to make it "lighter" */
.final-form-light .fluentform .ff-el-input--label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}
.final-form-light .fluentform .ff-el-form-control {
    background-color: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
}
.final-form-light .fluentform .ff-el-form-control:focus {
    background-color: #fff;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(0, 61, 122, 0.1);
}
.final-form-light .fluentform button.ff-btn-submit {
    background: linear-gradient(135deg, var(--warning-amber), #FBBF24);
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 16px;
    padding: 16px;
    border-radius: 999px;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.final-form-light .fluentform button.ff-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.privacy-notice {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 32px;
    text-align: center;
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .final-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .privacy-notice {
        grid-column: 1;
    }

    .final-form-wrapper {
        padding: 24px;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .section-title,
    .services-title,
    .problem-title,
    .solution-title,
    .faq-title {
        font-size: 24px !important;
    }

    .widget-title {
        font-size: 20px !important;
    }

    .card-title,
    .service-card-title,
    .feature-title,
    .solution-pillar-title {
        font-size: 16px !important;
    }

    .widget-subtitle,
    .section-subtitle,
    .services-subtitle {
        font-size: 14px !important;
    }

    .testimonial-text {
        font-size: 14px !important;
    }
}

/* =============================================
   0. HERO MODERN — Main Hero Section
   ============================================= */

.noohvia-hero-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.noohvia-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 100%);
    z-index: -1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.hero-text-content {
    text-align: left;
    animation: fadeInLeft 0.8s ease-out;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.noohvia-hero-modern .hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.noohvia-hero-modern .hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.noohvia-hero-modern .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.noohvia-hero-modern .btn-primary {
    background: var(--primary-olive);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.noohvia-hero-modern .btn-primary:hover {
    background: var(--primary-olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 122, 88, 0.3);
}

.noohvia-hero-modern .btn-secondary {
    background: transparent;
    color: var(--primary-olive);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-olive);
}

.noohvia-hero-modern .btn-secondary:hover {
    background: var(--primary-olive);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 122, 88, 0.2);
}

.hero-image-content {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.noohvia-hero-modern .image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.noohvia-hero-modern .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.15) 0%, rgba(30, 41, 59, 0.05) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.noohvia-hero-modern .image-wrapper:hover::before {
    opacity: 1;
}

.noohvia-hero-modern .image-wrapper:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1.03) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.noohvia-hero-modern .hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.noohvia-hero-modern .image-wrapper:hover .hero-image {
    transform: scale(1.06);
}

.noohvia-hero-modern .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.25) 0%, rgba(30, 41, 59, 0.1) 100%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.noohvia-hero-modern .image-wrapper:hover .image-overlay {
    opacity: 1;
}

.noohvia-hero-modern .decorative-elements {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.8) 0%, rgba(186, 230, 253, 0.6) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 2s ease-in-out infinite;
}

.noohvia-hero-modern .decorative-elements::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.6) 0%, rgba(129, 212, 250, 0.4) 100%);
    border-radius: 50%;
    z-index: -1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .noohvia-hero-modern .hero-content-wrapper {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .noohvia-hero-modern {
        padding: 80px 0;
    }

    .noohvia-hero-modern .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .noohvia-hero-modern .hero-text-content {
        text-align: center;
    }

    .noohvia-hero-modern .hero-buttons {
        justify-content: center;
    }

    .noohvia-hero-modern .hero-title {
        font-size: 42px;
    }

    .noohvia-hero-modern .hero-image {
        height: 400px;
    }

    .noohvia-hero-modern .decorative-elements {
        top: -10px;
        right: -10px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .noohvia-hero-modern {
        padding: 60px 0;
    }

    .noohvia-hero-modern .hero-title {
        font-size: 36px;
    }

    .noohvia-hero-modern .hero-description {
        font-size: 16px;
    }

    .noohvia-hero-modern .hero-image {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .noohvia-hero-modern {
        padding: 50px 0;
    }

    .noohvia-hero-modern .hero-title {
        font-size: 30px;
    }

    .noohvia-hero-modern .btn-primary,
    .noohvia-hero-modern .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .noohvia-hero-modern .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .noohvia-hero-modern .hero-image {
        height: 280px;
    }

    .noohvia-hero-modern .decorative-elements {
        width: 60px;
        height: 60px;
    }
}