/*
 * BasınOdam Servis Sayfaları - Ortak CSS
 * Kaynak gerçeği: online-basin-odasi-page.html (şablon sayfa)
 * Kural: Burada SADECE tüm sayfalarda değişmeden kullanılan stiller bulunur.
 * Sayfa-özel stiller (accent renkleri, mockup renkleri vb.) o sayfanın <style> bloğuna yazılır.
 * Version: 3.0.0
 */

/* ═══════════════════════════════════════════════════════════════════════ */
/* DESIGN TOKENS                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */
:root {
    --color-primary: #003762;
    --color-primary-hover: #002b5c;
    --color-secondary: #F68B1F;
    --color-secondary-hover: #e07d15;
    --color-bg-primary: #FAFBFB;
    --color-bg-soft: #F1F5F9;
    --color-bg-card: #FFFFFF;
    --color-text-primary: #1E293B;
    --color-text-secondary: #64748B;
    --color-text-muted: #94A3B8;
    --color-border: #E2E8F0;
    --color-icon-primary: #475569;
    --color-accent-1: #06B6D4;
    --color-accent-2: #10B981;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --shadow-sm: 0 0.125rem 0.375rem rgb(15 23 42 / 0.08);
    --shadow-md: 0 0.625rem 1.5rem rgb(15 23 42 / 0.1);
    --shadow-lg: 0 1rem 2.5rem rgb(15 23 42 / 0.14);
    /* Sayfa-özel accent (her sayfa kendi <style> bloğunda override eder) */
    --color-accent-page: #F68B1F;
    --color-accent-page-dark: #e07d15;
    --color-accent-page-light: #fef3c7;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* LAYOUT — CONTAINER & HOLDER                                            */
/* ═══════════════════════════════════════════════════════════════════════ */
.bo-container {
    width: 90%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
}

.bo-container-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.bo-nav-container-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.bo-bg-wrapper {
    background-color: #FAFBFB;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* HERO LAYOUT                                                            */
/* ═══════════════════════════════════════════════════════════════════════ */
#hero {
    overflow: hidden;
    position: relative;
    /* Sabit veya absolute olan header'ın alanını kompanse edip görseli tam ortaya almak için üstten padding veriyoruz */
    padding-top: 110px;
    padding-bottom: 50px;
    min-height: min(100vh, 950px);
    display: flex;
    align-items: center;
}

#hero .bo-container {
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
}

#hero .bo-hero-holder {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 100%;
}

#hero .hero-left-content {
    flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
    min-width: 0;
}

#hero .hero-image {
    flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* HERO TYPOGRAPHY & ELEMENTS                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
#hero h1.hero {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #003762;
    margin-bottom: 12px;
    margin-top: 10px;
}

p.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

ul.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

ul.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

ul.hero-checklist li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    background-color: #dcfce7;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316a34a'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    margin-bottom: 24px;
}

.hero-desc {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: .9rem !important;
}

.hero-subtext {
    color: #64748b;
    font-size: 13px;
    margin: 12px 0 0 0;
}

.cta-subtext {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 12px;
}

/* trust-badge: temel yapı — renk sayfa <style>'ında override edilir */
.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* HERO SVG MOCKUP — ANIMASYONLAR                                         */
/* ═══════════════════════════════════════════════════════════════════════ */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mockup-wrapper svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 55, 98, 0.15));
    overflow: visible;
}

.mockup-page-back {
    animation: mockup-float-back 6s ease-in-out infinite;
}

.mockup-page-mid {
    animation: mockup-float-mid 6s ease-in-out infinite 0.8s;
}

.mockup-page-front {
    animation: mockup-float-front 6s ease-in-out infinite 1.6s;
}

@keyframes mockup-float-back {

    0%,
    100% {
        transform: translateY(0px) rotate(-6deg);
    }

    50% {
        transform: translateY(-10px) rotate(-6deg);
    }
}

@keyframes mockup-float-mid {

    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(-2deg);
    }
}

@keyframes mockup-float-front {

    0%,
    100% {
        transform: translateY(0px) rotate(2deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.mockup-badge-pulse {
    animation: badge-pulse-anim 3s ease-in-out infinite;
}

@keyframes badge-pulse-anim {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.03);
    }
}

.mockup-dot-blink {
    animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* LOGO BAR                                                               */
/* ═══════════════════════════════════════════════════════════════════════ */
.logo-bar {
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.logo-bar-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.logo-bar-track-wrapper {
    position: relative;
    overflow: hidden;
}

.logo-bar-track-wrapper::before,
.logo-bar-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logo-bar-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-bar-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.logo-bar-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: logo-scroll 28s linear infinite;
}

.logo-bar-track:hover {
    animation-play-state: paused;
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 0.70;
    transition: opacity 0.25s, filter 0.25s;
    filter: grayscale(0.4);
}

.logo-bar-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.logo-bar-item .logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.logo-bar-item .logo-name {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    letter-spacing: -0.01em;
}

.logo-bar-item img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-bar-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* BUTTONS                                                                */
/* ═══════════════════════════════════════════════════════════════════════ */
.btn-gturuncu {
    position: relative;
    overflow: hidden;
}

.btn-gturuncu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.btn.btn-botrans {
    background: transparent !important;
    border: 2px solid #003762 !important;
    color: #003762 !important;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn.btn-botrans:hover {
    background: #003762 !important;
    color: #fff !important;
}

.btn.btn-botrans::after {
    content: '→';
    font-size: 1em;
    transition: transform 0.2s;
}

.btn.btn-botrans:hover::after {
    transform: translateX(3px);
}

.btn.btn-outline-white {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

.btn.btn-outline-white::after {
    content: '→';
    font-size: 1em;
    transition: transform 0.2s;
}

.btn.btn-outline-white:hover::after {
    transform: translateX(3px);
}

.btn-green-gradient {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(72, 187, 120, 0.3);
}

.btn-green-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.4);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* SECTION BADGE — temel yapı (renk sayfa <style>'ında override edilir)   */
/* ═══════════════════════════════════════════════════════════════════════ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #003762;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* SECTION HEADINGS — H2 Sınıf Ailesi                                     */
/* Kural: Tüm section h2 başlıkları bu sınıflarla stil alır,              */
/*        inline style YAZILMAZ.                                           */
/* ═══════════════════════════════════════════════════════════════════════ */

/* Standart section başlığı — 2rem */
.section-h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    text-wrap: balance;
}

/* Büyük section başlığı — hero altı, öne çıkan bölümler */
.section-h2--lg {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-wrap: balance;
}

/* Orta boy başlık — karşılaştırma, fiyatlandırma bölümleri */
.section-h2--md {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-wrap: balance;
}

/* Bölüm Alt Başlığı / Açıklaması (Section Lead) */
.section-lead {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.section-lead--sm {
    font-size: 1rem;
    max-width: 650px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* WRAPPER & SPACING HELPERS                                              */
/* ═══════════════════════════════════════════════════════════════════════ */
.wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-wrapper-py {
    padding-top: 60px;
    padding-bottom: 60px;
}

.white-wrapper {
    background: #fff;
}

.light-wrapper {
    background: #f8f9fa;
}

.gradient-wrapper {
    background: linear-gradient(135deg, #003762, #004d8a);
}

.gradient-wrapper h2,
.gradient-wrapper p {
    color: #fff;
}

.space40 {
    height: 40px;
}

.space50 {
    height: 50px;
}

.space100 {
    height: 100px;
}

.container.inner {
    padding-left: 15px;
    padding-right: 15px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* PROOF STRIP & STAT HIGHLIGHT                                           */
/* ═══════════════════════════════════════════════════════════════════════ */
.proof-strip {
    background: linear-gradient(90deg, rgb(0 55 98 / 0.08), rgb(246 139 31 / 0.08));
    border: 0.0625rem solid rgb(226 232 240);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.stat-highlight {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #003762 0%, #F68B1F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* FEATURE CARDS                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */
.feature-card {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.icon-pastel-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-pastel-orange {
    background: #ffedd5;
    color: #ea580c;
}

.icon-pastel-purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.icon-pastel-green {
    background: #dcfce7;
    color: #16a34a;
}

.icon-pastel-pink {
    background: #fce7f3;
    color: #db2777;
}

.icon-pastel-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.feature-icon--sm {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-bottom: 0;
    flex-shrink: 0;
    aspect-ratio: 1;
}

/* Card Typography & Internals */
.card-h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.card-h4--sm {
    font-size: 1rem;
    font-weight: 600;
}

.card-h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.card-p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.card-p--sm {
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.card-flex--sm {
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* SCENARIO CARDS — temel yapı (border-left rengi sayfa <style>'ında)     */
/* ═══════════════════════════════════════════════════════════════════════ */
.scenario-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* STEP NUMBERS — temel yapı (gradient rengi sayfa <style>'ında)          */
/* ═══════════════════════════════════════════════════════════════════════ */
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* FAQ                                                                    */
/* ═══════════════════════════════════════════════════════════════════════ */
.faq-item {
    border-bottom: 1px solid #edf2f7;
    padding: 24px 0;
    padding-left: 12px;
    border-left: 3px solid #003762;
    transition: all 0.3s ease;
}

.faq-question {
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
}

.faq-answer {
    color: #718096;
    margin-top: 16px;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* OBJECTION CARDS                                                        */
/* ═══════════════════════════════════════════════════════════════════════ */
.objection-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.objection-card:hover {
    border-color: #fc8181;
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.08);
}

.objection-q {
    color: #c53030;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 17px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* PANEL MOCKUP (hero sağ tarafı için)                                    */
/* ═══════════════════════════════════════════════════════════════════════ */
.panel-mockup {
    position: relative;
    width: 100%;
}

.panel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* renk sayfa <style>'ında override edilir */
    background: linear-gradient(90deg, #003762, #F68B1F, #003762);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.panel-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-title-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #003762, #004d8a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-title-icon svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.panel-live-badge {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: live-pulse 2s ease infinite;
}

@keyframes live-pulse {

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

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

.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.panel-stat {
    text-align: center;
    padding: 14px 8px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.panel-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #003762;
    display: block;
    line-height: 1;
}

.panel-stat-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
    display: block;
}

.panel-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.panel-filter-row:hover {
    border-color: #003762;
    background: #fff;
    transform: translateX(4px);
}

.panel-filter-type {
    width: 70px;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.panel-filter-value {
    flex: 1;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.panel-filter-count {
    background: linear-gradient(135deg, #F68B1F, #e07d15);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.panel-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* FLOATING BADGES                                                        */
/* ═══════════════════════════════════════════════════════════════════════ */
.floating-badge {
    position: absolute;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float-anim 4s ease-in-out infinite;
}

.floating-badge:nth-child(1) {
    top: -15px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge:nth-child(2) {
    bottom: 60px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes float-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.badge-dot.orange {
    background: #F68B1F;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* MODAL                                                                  */
/* ═══════════════════════════════════════════════════════════════════════ */
.bo-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px);
    z-index: 99999 !important;
    display: none !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 40px 20px !important;
    overflow-y: auto !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bo-modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.bo-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.bo-modal-overlay.active .bo-modal {
    transform: translateY(0);
}

.bo-modal.wide {
    max-width: 880px;
}

.bo-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    color: #fff;
}

.bo-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

.bo-modal-header {
    padding: 32px 32px 24px;
    text-align: center;
    background: linear-gradient(135deg, #003762 0%, #00508a 60%, #0066b0 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bo-modal-header::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(246, 139, 31, 0.15);
    pointer-events: none;
}

.bo-modal-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.bo-modal-header-icon {
    width: 52px;
    height: 52px;
    background: rgba(246, 139, 31, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #F68B1F;
}

.bo-modal-header h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.bo-modal-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.bo-modal-body {
    padding: 24px 32px 32px;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.bo-modal-body::-webkit-scrollbar {
    width: 6px;
}

.bo-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.bo-modal-body::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 3px;
}

.bo-modal-body::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* FORM STYLES                                                            */
/* ═══════════════════════════════════════════════════════════════════════ */
.bo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bo-form-group {
    margin-bottom: 14px;
}

.bo-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #003762;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.bo-form-group input,
.bo-form-group textarea,
.bo-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
    background: #f8fafc;
    color: #1e293b;
    box-sizing: border-box;
}

.bo-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding: 10px 36px 10px 12px;
    line-height: 1.5;
    height: auto;
    cursor: pointer;
}

.bo-form-group input::placeholder,
.bo-form-group textarea::placeholder {
    color: #94a3b8;
}

.bo-form-group input:focus,
.bo-form-group textarea:focus,
.bo-form-group select:focus {
    outline: none;
    border-color: #F68B1F;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(246, 139, 31, 0.12);
}

.bo-form-group textarea {
    min-height: 72px;
    resize: vertical;
}

.bo-form-submit {
    width: 100%;
    padding: 13px 24px;
    background: linear-gradient(135deg, #F68B1F 0%, #e07d15 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bo-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(246, 139, 31, 0.4);
}

.bo-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: #64748b;
    font-size: 13px;
}

/* Sample Table */
.sample-list-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    table-layout: fixed;
}

.sample-list-table thead {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.sample-list-table th,
.sample-list-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.sample-list-table th {
    font-weight: 600;
    color: #475569;
}

.sample-list-table th:first-child,
.sample-list-table td:first-child {
    width: 35%;
}

.sample-list-table th:nth-child(2),
.sample-list-table td:nth-child(2) {
    width: 25%;
}

.sample-list-table th:nth-child(3),
.sample-list-table td:nth-child(3) {
    width: 25%;
}

.sample-list-table th:nth-child(4),
.sample-list-table td:nth-child(4) {
    width: 15%;
}

.sample-list-table .blurred {
    filter: blur(4px);
    user-select: none;
}

.sample-list-cta {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f4fc, #d1e9f6);
    border-radius: 12px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* TESTIMONIAL CARDS (WALL OF LOVE)                                       */
/* ═══════════════════════════════════════════════════════════════════════ */
.testimonial-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #F59E0B;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--color-border-light);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    #hero {
        min-height: auto;
    }

    #hero .bo-hero-holder {
        flex-direction: column;
        flex-wrap: wrap !important;
        text-align: center;
        gap: 40px;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    #hero .hero-left-content {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    #hero .hero-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }

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

    .floating-badge {
        display: none;
    }
}

@media (max-width: 575px) {
    #hero .bo-hero-holder {
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #hero h1.hero {
        font-size: 28px;
    }

    .stat-highlight {
        font-size: 36px;
    }

    .feature-card {
        padding: 24px;
    }

    .panel-card {
        padding: 18px;
    }

    .panel-stats {
        gap: 8px;
    }

    .panel-stat {
        padding: 12px 6px;
    }

    .panel-stat-value {
        font-size: 18px;
    }

    .panel-stat-label {
        font-size: 10px;
    }

    .panel-filter-row {
        flex-wrap: wrap;
        padding: 10px 12px;
    }

    .panel-filter-type {
        width: 100%;
        margin-bottom: 4px;
    }

    .panel-filter-value {
        font-size: 13px;
    }

    .bo-modal {
        border-radius: 16px;
    }

    .bo-modal-header,
    .bo-modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bo-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1400px) {
    #hero {
        padding-top: 90px;
        padding-bottom: 30px;
        min-height: 100vh;
    }

    #hero .bo-hero-holder {
        gap: 20px;
    }

    #hero h1.hero {
        font-size: clamp(1.4rem, 2.4vw, 2rem);
    }
}

html {
    scroll-behavior: smooth;
}