/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #20201d;
    color: #e0ddd5;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c8a864;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #aaa;
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0da192, #0b8c7f);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(13, 161, 146, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 168, 100, 0.1);
}

.nav-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.nav-logo img {
    width: 85%;
    height: auto;

}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #e0ddd5;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.4vw, 22px);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    color: #aaa;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c8a864;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #e0ddd5;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(200, 168, 100, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #c8a864;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: rgba(200, 168, 100, 0.1);
    border-color: #c8a864;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e0ddd5;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #e0ddd5;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: #c8a864;
}

.mobile-link.cta {
    color: #c8a864;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-dotted-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    opacity: 0.75;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 32, 29, 0.3) 0%, rgba(32, 32, 29, 0.6) 70%, #20201d 100%);
    z-index: 3;
}

.hero-container-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c8a864;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8a864;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-secondary-outline:hover {
    border-color: rgba(200, 168, 100, 0.3);
    background: rgba(200, 168, 100, 0.05);
    color: #c8a864;
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    width: 100%;
    max-width: 500px;
}

.trust-text {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
}

.trust-text strong {
    color: #bbb;
    font-weight: 600;
}

/* Right Side: Live Cases Mockup */
.hero-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.live-cases-mockup {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.live-cases-mockup:hover {
    border-color: rgba(200, 168, 100, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(200, 168, 100, 0.02);
}


.mockup-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 16px;
    border-radius: 12px;
    color: #555;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}

.case-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.case-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
}

.case-item.active {
    background: rgba(200, 168, 100, 0.02);
    border-color: rgba(200, 168, 100, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.case-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-cat {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #c8a864;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
}

.case-badge.badge-gold {
    background: rgba(200, 168, 100, 0.08);
    border: 1px solid rgba(200, 168, 100, 0.15);
    color: #c8a864;
}

.case-badge.badge-green {
    background: rgba(13, 161, 146, 0.08);
    border: 1px solid rgba(13, 161, 146, 0.15);
    color: #0da192;
}

.case-badge.badge-gray {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #777;
}

.case-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.45;
}

.case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-tag svg {
    color: #444;
}

.meta-tag.text-green {
    color: #0da192;
    font-weight: 500;
}


/* ===== Benefits ===== */
.section-dark-bg {
    background: #20201d;
    padding: 120px 0;
    position: relative;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-light {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    margin-top: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px 28px 36px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.benefit-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(200, 168, 100, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.benefit-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 161, 146, 0.06);
    border: 1px solid rgba(13, 161, 146, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: rgba(200, 168, 100, 0.08);
    border-color: rgba(200, 168, 100, 0.25);
    color: #c8a864;
    transform: scale(1.05);
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
    transition: color 0.3s;
}

.benefit-card:hover .benefit-text {
    color: #bbb;
}

.benefit-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    transition: color 0.3s;
}

.benefit-card:hover .benefit-number {
    color: rgba(200, 168, 100, 0.08);
}

/* ===== Online Consultations ===== */
.online-consultations {
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 90px;
    overflow: hidden;
}

.consultations-glow-bg {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(13, 161, 146, 0.12) 0%, rgba(200, 168, 100, 0.05) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.consultations-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-subtitle-left {
    font-size: 1.02rem;
    color: #b0ad9e;
    line-height: 1.7;
    margin-bottom: 36px;
    text-align: left;
}

.consultations-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.consultation-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 22px 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.consultation-feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(200, 168, 100, 0.02) 100%);
    border-color: rgba(200, 168, 100, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 168, 100, 0.05);
}

.consultation-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(13, 161, 146, 0.1);
    border: 1px solid rgba(13, 161, 146, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.consultation-feature-item:hover .consultation-feature-icon {
    background: rgba(200, 168, 100, 0.12);
    border-color: rgba(200, 168, 100, 0.3);
    color: #c8a864;
    transform: scale(1.05);
}

.consultation-feature-icon svg {
    width: 21px;
    height: 21px;
}

.consultation-feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.consultation-feature-item p {
    font-size: 0.83rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.consultations-cta-row {
    margin-top: 10px;
}

/* Consultations Right / Mockup */
.consultations-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.consultation-mockup-card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(180deg, rgba(30, 30, 27, 0.85) 0%, rgba(20, 20, 18, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.consultation-mockup-card:hover {
    border-color: rgba(200, 168, 100, 0.3);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 30px rgba(13, 161, 146, 0.08);
}

.consultation-mockup-settings {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 16px;
}

.settings-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.settings-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c8a864;
    font-weight: 600;
}

.status-badge-active {
    font-size: 0.72rem;
    color: #0da192;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13, 161, 146, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(13, 161, 146, 0.2);
}

.schedule-days-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.day-pill {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #888;
}

.day-pill.active {
    background: rgba(200, 168, 100, 0.1);
    border-color: rgba(200, 168, 100, 0.25);
    color: #c8a864;
    font-weight: 600;
}

.settings-prices {
    display: flex;
    gap: 10px;
}

.price-chip {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    border-radius: 12px;
}

.price-chip.highlight {
    background: rgba(13, 161, 146, 0.08);
    border-color: rgba(13, 161, 146, 0.25);
}

.chip-duration {
    font-size: 0.68rem;
    color: #888;
    margin-bottom: 2px;
}

.chip-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.consultation-booking-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0da192, #0b8c7f);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 161, 146, 0.2);
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.booking-topic {
    font-size: 0.72rem;
    color: #888;
    display: block;
}

.booking-status-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(13, 161, 146, 0.12);
    border: 1px solid rgba(13, 161, 146, 0.3);
    color: #0da192;
}

.booking-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
    color: #aaa;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item.text-green {
    color: #0da192;
    font-weight: 500;
}

.consultation-timer-box {
    background: rgba(13, 161, 146, 0.06);
    border: 1px solid rgba(13, 161, 146, 0.2);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #aaa;
}

.timer-val {
    font-family: monospace;
    font-size: 0.88rem;
    color: #0da192;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.meet-link-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 6px 10px;
    border-radius: 8px;
    overflow: hidden;
}

.meet-text {
    color: #70a5ff;
}

.meet-url {
    color: #60a5fa;
    font-weight: 500;
    text-decoration: underline;
}

.booking-actions-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.mockup-btn-chat {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #ccc;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.mockup-btn-chat:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mockup-btn-join {
    flex: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(135deg, #0da192, #0b8c7f);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 161, 146, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mockup-btn-join:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 161, 146, 0.35);
}

.mockup-summary-pills {
    display: flex;
    justify-content: space-around;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-pill {
    font-size: 0.68rem;
    color: #888;
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== Laptop Video Call Showcase ===== */
.consultation-laptop-showcase {
    margin-top: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.laptop-showcase-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.laptop-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #0da192;
    background: rgba(13, 161, 146, 0.1);
    border: 1px solid rgba(13, 161, 146, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.laptop-showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.laptop-showcase-desc {
    font-size: 1rem;
    color: #a09d90;
    line-height: 1.6;
}

/* Laptop Device Frame */
.laptop-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.laptop-screen-frame {
    background: #0f1013;
    border-radius: 20px 20px 0 0;
    border: 12px solid #22242a;
    border-bottom: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(13, 161, 146, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.laptop-container:hover .laptop-screen-frame {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(200, 168, 100, 0.15);
}

.laptop-webcam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: #18191d;
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.webcam-lens {
    width: 5px;
    height: 5px;
    background: #0a0b0d;
    border-radius: 50%;
    border: 1px solid #3a3c42;
}

.webcam-led-green {
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
}

/* Screen Content Area */
.laptop-screen-content {
    background: #0d0e12;
    display: flex;
    flex-direction: column;
    height: 520px;
    position: relative;
    user-select: none;
}

/* Video App Header */
.video-app-header {
    background: rgba(18, 20, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-tag {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pulse-ring {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
}

.app-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.room-name {
    font-size: 0.8rem;
    color: #a09d90;
}

.app-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.encrypt-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.timer-badge {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: #c8a864;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(200, 168, 100, 0.2);
}

/* Video Call Viewport & Grid */
.video-call-viewport {
    flex: 1;
    position: relative;
    padding: 14px;
    display: flex;
    gap: 14px;
    background: radial-gradient(circle at center, #14161f 0%, #090a0d 100%);
    overflow: hidden;
}

.video-streams-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    width: 100%;
    height: 100%;
}

.stream-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #15171e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stream-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.96) contrast(1.04);
}

.stream-tag {
    position: absolute;
    z-index: 3;
}

.stream-tag.top-left {
    top: 12px;
    left: 12px;
}

.stream-tag.top-right {
    top: 12px;
    right: 12px;
}

.stream-tag.bottom-left {
    bottom: 12px;
    left: 12px;
}

.role-chip {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lawyer-chip {
    background: rgba(13, 161, 146, 0.85);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.client-chip {
    background: rgba(200, 168, 100, 0.85);
    color: #111;
    backdrop-filter: blur(4px);
}

.hd-badge {
    background: rgba(0, 0, 0, 0.6);
    color: #a0a0a0;
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 17, 23, 0.82);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.user-name {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 500;
}

/* Audio Wave Indicator */
.audio-wave-indicator {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.wave-bar {
    width: 3px;
    background: #0da192;
    border-radius: 2px;
    animation: wavePulse 1.2s infinite ease-in-out alternate;
}

.wave-bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(2) {
    height: 90%;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(3) {
    height: 60%;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 100%;
    animation-delay: 0.4s;
}

@keyframes wavePulse {
    0% {
        height: 20%;
    }

    100% {
        height: 100%;
    }
}

.mic-active-dot {
    font-size: 0.75rem;
}

/* Floating Document Panel */
.video-doc-panel {
    position: absolute;
    bottom: 20px;
    right: 24px;
    width: 260px;
    background: rgba(20, 22, 30, 0.9);
    border: 1px solid rgba(200, 168, 100, 0.3);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 4;
    transition: transform 0.3s ease;
}

.video-doc-panel:hover {
    transform: translateY(-3px);
}

.doc-panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #c8a864;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.doc-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-icon-pdf {
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 6px;
    border-radius: 4px;
}

.doc-title {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.doc-status {
    color: #8e8b80;
    font-size: 0.68rem;
}

/* Video Toolbar Bottom */
.video-toolbar {
    background: rgba(16, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.toolbar-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.06);
}

.active-tool {
    background: rgba(13, 161, 146, 0.2);
    border-color: rgba(13, 161, 146, 0.4);
    color: #0da192;
}

.highlight-tool {
    width: auto;
    padding: 0 16px;
    border-radius: 20px;
    background: rgba(200, 168, 100, 0.15);
    border-color: rgba(200, 168, 100, 0.35);
    color: #c8a864;
    gap: 8px;
}

.tool-text {
    font-size: 0.78rem;
    font-weight: 600;
}

.chat-count {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #0da192;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.end-call-tool {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    margin-left: 10px;
}

.end-call-tool:hover {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

/* Laptop Keyboard Chassis Base */
.laptop-keyboard-chassis {
    height: 18px;
    background: linear-gradient(180deg, #2b2d35 0%, #17181c 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.chassis-opening-notch {
    width: 80px;
    height: 6px;
    background: #111215;
    border-radius: 0 0 6px 6px;
    margin: 0 auto;
}

.chassis-glow-reflection {
    position: absolute;
    bottom: -15px;
    left: 10%;
    right: 10%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(13, 161, 146, 0.25) 0%, transparent 70%);
    filter: blur(10px);
}

@media (max-width: 900px) {
    .video-streams-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .laptop-screen-content {
        height: auto;
        min-height: 480px;
    }

    .video-doc-panel {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 10px;
    }

    .laptop-showcase-title {
        font-size: 1.5rem;
    }
}

/* ===== Gain Clients ===== */
.gain-clients {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #141414;
}

.gain-clients-bg {
    position: absolute;
    inset: 0;
}

.gain-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.gain-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.8));
}

.gain-clients-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gain-left {
    display: flex;
    justify-content: center;
    width: 100%;
}

.gain-right {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gain-right .section-title {
    margin-bottom: 24px;
}

.analytics-mockup {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.analytics-mockup:hover {
    border-color: rgba(200, 168, 100, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.analytics-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.analytics-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 20px;
}

.analytics-main-value {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.analytics-main-value .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.analytics-main-value .val {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.analytics-main-value .growth {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #0da192;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.analytics-circle-container {
    position: relative;
    width: 68px;
    height: 68px;
}

.analytics-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 3.5;
}

.circle {
    fill: none;
    stroke: #0da192;
    stroke-dasharray: 85, 100;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.circle-percentage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.analytics-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mini-stat {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.mini-stat:hover {
    border-color: rgba(200, 168, 100, 0.15);
}

.mini-stat .m-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #555;
    font-weight: 500;
    line-height: 1.3;
}

.mini-stat .m-val {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.check-list {
    list-style: none;
    width: 100%;
    margin: 0 0 36px 0;
    text-align: left;
    padding: 0;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

.check-item:last-child {
    border-bottom: none;
}

.check-item strong {
    color: #fff;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #0da192;
}

/* ===== Advisor Redesign ===== */
/* ===== Advisor Redesign ===== */
.advisor {
    background: #20201d;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.advisor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(13, 161, 146, 0.04) 0%, rgba(200, 168, 100, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.advisor .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.advisor-section-header {
    max-width: 700px;
    margin-bottom: 56px;
}

.advisor-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

/* Left Visual Card - Mockup */
.advisor-visual-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.advisor-visual-card:hover {
    border-color: rgba(200, 168, 100, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(200, 168, 100, 0.02);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mockup-dots {

    margin-top: 0.5rem;
    margin-left: 1rem;
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.mockup-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mockup-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Advisor profile widget */
.advisor-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.advisor-avatar-container {
    position: relative;
    width: 44px;
    height: 44px;
}

.advisor-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(13, 161, 146, 0.15);
    border: 1px solid rgba(13, 161, 146, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
}

.advisor-avatar svg {
    width: 22px;
    height: 22px;
}

.status-indicator {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #141414;
}

.status-indicator.online {
    background: #0da192;
    box-shadow: 0 0 8px rgba(13, 161, 146, 0.6);
}

.advisor-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.advisor-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.advisor-role {
    font-size: 0.75rem;
    color: #777;
    margin: 0;
}

.advisor-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #0da192;
    background: rgba(13, 161, 146, 0.08);
    border: 1px solid rgba(13, 161, 146, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: auto;
}

/* Chat bubble card */
.chat-bubble-card {
    display: flex;
    justify-content: flex-start;
}

.chat-bubble {
    background: rgba(13, 161, 146, 0.06);
    border: 1px solid rgba(13, 161, 146, 0.12);
    border-radius: 18px 18px 18px 4px;
    padding: 16px 20px;
    max-width: 85%;
    position: relative;
    transition: all 0.3s ease;
}

.chat-bubble p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
    margin: 0;
}

.chat-bubble strong {
    color: #c8a864;
    font-weight: 600;
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #555;
    margin-top: 8px;
}

/* Mockup Stats Grid */
.mockup-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-mini-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-ring-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar-wrapper {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0da192, #c8a864);
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.stat-tip {
    font-size: 0.7rem;
    color: #0da192;
    margin: 0;
}

.stat-big-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-big-value.text-gold {
    color: #c8a864;
    text-shadow: 0 0 15px rgba(200, 168, 100, 0.15);
}

.stat-subtext {
    font-size: 0.7rem;
    color: #555;
    margin: 0;
}

/* Mockup Checklist */
.mockup-checklist {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.checklist-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #777;
    margin: 0 0 4px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.checklist-item.done {
    color: #666;
}

.checklist-item.done span {
    text-decoration: line-through;
    opacity: 0.7;
}

.checklist-item.active {
    color: #e0ddd5;
    font-weight: 500;
}

.checklist-item .check-box {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.checklist-item.done .check-box {
    background: rgba(13, 161, 146, 0.15);
    border: 1px solid rgba(13, 161, 146, 0.3);
    color: #0da192;
}

.checklist-item.active .check-box {
    border: 1px solid rgba(200, 168, 100, 0.4);
    background: rgba(200, 168, 100, 0.05);
}

/* Right Stack features */
.advisor-features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advisor-feature-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 24px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.advisor-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background-color 0.3s;
}

.advisor-feature-item:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(200, 168, 100, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.advisor-feature-item:hover::before {
    background-color: #c8a864;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(13, 161, 146, 0.08);
    border: 1px solid rgba(13, 161, 146, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.advisor-feature-item:hover .feature-icon {
    background: rgba(200, 168, 100, 0.1);
    border-color: rgba(200, 168, 100, 0.3);
    color: #c8a864;
    transform: scale(1.05);
}

.feature-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.feature-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    letter-spacing: 0.2px;
}

.feature-badge.badge-green {
    background: rgba(13, 161, 146, 0.08);
    border: 1px solid rgba(13, 161, 146, 0.2);
    color: #0da192;
}

.feature-badge.badge-gold {
    background: rgba(200, 168, 100, 0.08);
    border: 1px solid rgba(200, 168, 100, 0.2);
    color: #c8a864;
}

.feature-badge.badge-gray {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
}

.feature-text {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
    padding-left: 58px;
    transition: color 0.3s;
}

.advisor-feature-item:hover .feature-text {
    color: #ccc;
}

/* Dynamic Interactive Focus Styles (via Javascript hover) */
.advisor-feature-item.focused {
    border-color: rgba(200, 168, 100, 0.3) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
}

.advisor-widget.highlighted {
    border-color: rgba(200, 168, 100, 0.3);
    background: rgba(200, 168, 100, 0.05);
}

.chat-bubble.highlighted {
    border-color: rgba(200, 168, 100, 0.3);
    background: rgba(200, 168, 100, 0.08);
}

.stat-mini-card.highlighted {
    border-color: rgba(200, 168, 100, 0.3);
    background: rgba(200, 168, 100, 0.05);
    box-shadow: 0 0 20px rgba(200, 168, 100, 0.05);
}

/* ===== Security & Privacy ===== */
.security-section {
    position: relative;
    padding: 120px 0;
    background: #191917;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 161, 146, 0.08) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
}

.security-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.003) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 20px 24px;
    font-size: 0.92rem;
    color: #aaa;
    line-height: 1.65;
    transition: all 0.35s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(13, 161, 146, 0.25);
    transform: translateY(-2px);
    color: #e0ddd5;
}

.security-item strong {
    color: #fff;
    font-weight: 600;
}

.security-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(13, 161, 146, 0.1);
    border: 1px solid rgba(13, 161, 146, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.security-item:hover .security-icon {
    background: rgba(200, 168, 100, 0.12);
    border-color: rgba(200, 168, 100, 0.3);
    color: #c8a864;
}

.security-icon svg {
    width: 20px;
    height: 20px;
}

.security-cta-row {
    margin-top: 10px;
}

/* Security Visual Card */
.security-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.security-card-visual {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(180deg, rgba(25, 25, 23, 0.9) 0%, rgba(15, 15, 13, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.security-badge-main {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(13, 161, 146, 0.06);
    border: 1px solid rgba(13, 161, 146, 0.2);
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.shield-pulse-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(13, 161, 146, 0.15);
    border: 1px solid rgba(13, 161, 146, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shield-pulse-icon svg {
    width: 24px;
    height: 24px;
}

.security-status-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
}

.security-status-subtitle {
    font-size: 0.75rem;
    color: #0da192;
    font-weight: 500;
}

.security-checklist-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.sec-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #ccc;
}

.sec-icon-green {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(13, 161, 146, 0.15);
    border: 1px solid rgba(13, 161, 146, 0.3);
    color: #0da192;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.security-footer-note {
    font-size: 0.72rem;
    color: #888;
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== Differentiators ===== */
.differentiators {
    position: relative;
    padding: 100px 0;
    background: url('./backgrounds/2.png') center/cover;
    overflow: hidden;
}

.diff-split-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.diff-card-left {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
    text-align: left;
}

.diff-list {
    list-style: none;
    margin: 32px 0 40px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

.diff-bullet {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin-top: 10px;
}

.diff-item strong {
    color: #e0ddd5;
}

.diff-portrait-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diff-portrait-img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    filter: grayscale(100%);
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.diff-portrait-right:hover .diff-portrait-img {
    filter: grayscale(20%);
    opacity: 0.95;
    transform: scale(1.02);
    border-color: rgba(13, 161, 146, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Why Us ===== */
.why-us {
    background: #1a1915;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 161, 146, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Why Us: Layout & List */
.why-us-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.003) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 20px 24px;
    font-size: 0.92rem;
    color: #aaa;
    line-height: 1.65;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(200, 168, 100, 0.25);
    transform: translateY(-2px);
    color: #e0ddd5;
}

.why-item strong {
    color: #fff;
    font-weight: 600;
}

.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(13, 161, 146, 0.1);
    border: 1px solid rgba(13, 161, 146, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: rgba(200, 168, 100, 0.12);
    border-color: rgba(200, 168, 100, 0.3);
    color: #c8a864;
    transform: scale(1.05);
}

.why-icon svg {
    width: 20px;
    height: 20px;
}

/* Why Us: Ranking Mockup Card */
.why-us-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.ranking-card {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(180deg, rgba(26, 26, 23, 0.9) 0%, rgba(17, 17, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.ranking-card:hover {
    border-color: rgba(200, 168, 100, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(200, 168, 100, 0.03);
}

.rank-box-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Position Widget */
.rank-position-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.rank-position-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rank-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rank-value {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #c8a864;
    text-shadow: 0 0 20px rgba(200, 168, 100, 0.2);
}

.rank-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    color: #0da192;
    text-align: left;
}

.rank-trend svg {
    flex-shrink: 0;
}

/* Weekly Chart */
.rank-chart-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 20px 14px;
    margin-bottom: 16px;
}

.rank-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 88px;
}

.rank-bar {
    flex: 1;
    height: var(--h, 50%);
    min-height: 6px;
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, rgba(13, 161, 146, 0.85), rgba(13, 161, 146, 0.25));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.rank-bar.today {
    background: linear-gradient(180deg, #c8a864, rgba(200, 168, 100, 0.3));
    box-shadow: 0 0 16px rgba(200, 168, 100, 0.25);
}

.rank-chart.visible .rank-bar {
    transform: scaleY(1);
}

.rank-chart.visible .rank-bar:nth-child(1) {
    transition-delay: 0.05s;
}

.rank-chart.visible .rank-bar:nth-child(2) {
    transition-delay: 0.12s;
}

.rank-chart.visible .rank-bar:nth-child(3) {
    transition-delay: 0.19s;
}

.rank-chart.visible .rank-bar:nth-child(4) {
    transition-delay: 0.26s;
}

.rank-chart.visible .rank-bar:nth-child(5) {
    transition-delay: 0.33s;
}

.rank-chart.visible .rank-bar:nth-child(6) {
    transition-delay: 0.40s;
}

.rank-chart.visible .rank-bar:nth-child(7) {
    transition-delay: 0.47s;
}

.rank-chart-days {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.rank-chart-days span {
    flex: 1;
    text-align: center;
    font-size: 0.62rem;
    color: #555;
    letter-spacing: 0.5px;
}

/* Level Progress */
.rank-level-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.rank-level-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.rank-level-row .rank-box-label {
    margin-bottom: 0;
}

.rank-level-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0da192;
}

/* Points Feed */
.points-feed {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.points-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #aaa;
}

.points-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(13, 161, 146, 0.1);
    border: 1px solid rgba(13, 161, 146, 0.25);
    color: #0da192;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.points-item.highlight .points-check {
    background: rgba(200, 168, 100, 0.12);
    border-color: rgba(200, 168, 100, 0.3);
    color: #c8a864;
}

.points-name {
    flex-grow: 1;
}

.points-val {
    font-weight: 600;
    font-size: 0.78rem;
    color: #0da192;
}

.points-item.highlight .points-val {
    color: #c8a864;
}

/* Summary */
.rank-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #888;
    padding: 4px 6px 0;
}

.rank-summary strong {
    color: #c8a864;
    font-weight: 700;
}

.rank-summary-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8a864;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

.why-us-header {
    text-align: center;
    margin-bottom: 72px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0da192, #c8a864);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(200, 168, 100, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(13, 161, 146, 0.08);
    border: 1px solid rgba(13, 161, 146, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0da192;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(200, 168, 100, 0.1);
    border-color: rgba(200, 168, 100, 0.3);
    color: #c8a864;
    transform: scale(1.05);
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
}

.why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.why-card-text {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s;
}

.why-card:hover .why-card-text {
    color: #ccc;
}

/* ===== Trust Section ===== */
.trust-section {
    position: relative;
    padding: 120px 0;
    background: #151513;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 168, 100, 0.06) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.trust-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
}

.trust-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 20px 22px;
    transition: all 0.35s ease;
}

.trust-feature-item:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(200, 168, 100, 0.25);
    transform: translateY(-2px);
}

.trust-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(200, 168, 100, 0.08);
    border: 1px solid rgba(200, 168, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a864;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-feature-item:hover .trust-feature-icon {
    background: rgba(13, 161, 146, 0.12);
    border-color: rgba(13, 161, 146, 0.3);
    color: #0da192;
}

.trust-feature-icon svg {
    width: 20px;
    height: 20px;
}

.trust-feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.trust-feature-item p {
    font-size: 0.84rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.trust-cta-row {
    margin-top: 10px;
}

/* Trust Visual Card Mockup */
.trust-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.trust-card-visual {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(180deg, rgba(28, 28, 25, 0.9) 0%, rgba(18, 18, 16, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.trust-expert-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expert-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.expert-avatar-box {
    position: relative;
}

.expert-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c8a864, #9a7d3c);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(200, 168, 100, 0.25);
}

.verified-badge-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0da192;
    border: 2px solid #1c1c19;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.expert-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.verified-pill {
    font-size: 0.65rem;
    color: #0da192;
    background: rgba(13, 161, 146, 0.1);
    border: 1px solid rgba(13, 161, 146, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.expert-spec {
    font-size: 0.72rem;
    color: #888;
}

.expert-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    margin-top: 2px;
}

.stars {
    color: #c8a864;
    letter-spacing: 1px;
}

.rating-val {
    color: #fff;
    font-weight: 700;
}

.reviews-count {
    color: #888;
    font-size: 0.7rem;
}

.trust-metrics-bar {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 14px;
}

.trust-metric {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: #aaa;
}

.trust-metric strong {
    color: #fff;
}

.trust-review-quote {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #c8a864;
    padding: 12px 14px;
    border-radius: 0 12px 12px 0;
    font-size: 0.76rem;
    color: #ccc;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-author {
    font-style: normal;
    font-size: 0.68rem;
    color: #888;
    font-weight: 500;
}

@media (max-width: 968px) {
    .trust-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-right {
        justify-content: center;
    }
}

/* ===== Contact ===== */
.contact-section {
    background: #0f0f0f;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 161, 146, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 80px;
    text-align: center;
}

.contact-line {
    width: 60px;
    height: 1px;
    background: #c8a864;
    opacity: 0.6;
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-row {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-row:hover {
    transform: translateY(-12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(200, 168, 100, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #c8a864;
    transition: all 0.3s ease;
}

.contact-row:hover .contact-icon {
    background: #c8a864;
    color: #111;
    transform: rotate(10deg);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-info {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-btn:hover {
    background: #fff;
    color: #111;
}

.contact-row:last-child .contact-btn {
    background: linear-gradient(135deg, #0da192, #0b8c7f);
    border: none;
    color: #fff;
}

.contact-row:last-child .contact-btn:hover {
    box-shadow: 0 10px 20px rgba(13, 161, 146, 0.3);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: #0a0a0a;
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #c8a864;
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #666;
}

/* ===== Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.25, .8, .25, 1), transform 0.7s cubic-bezier(.25, .8, .25, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Form Page Styles ===== */
.form-page {
    min-height: 100vh;
    background: #1a1a1a;
}

.form-header {
    background: #111;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200, 168, 100, 0.15);
}

.form-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-body {
    padding: 60px 24px 100px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.step-indicator {
    color: #c8a864;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 16px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 48px;
    line-height: 1.3;
}

.form-step-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: -32px 0 32px;
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #c8a864;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e0ddd5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: #555;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-wrapper .form-input {
    padding-right: 48px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #888;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
    z-index: 2;
}

.password-toggle-btn:hover {
    color: #c8a864;
    background: rgba(200, 168, 100, 0.1);
}

.password-toggle-btn:focus-visible {
    outline: 2px solid #c8a864;
    outline-offset: 1px;
}

.form-input:focus,
.form-select:focus {
    border-color: rgba(200, 168, 100, 0.4);
    box-shadow: 0 0 0 3px rgba(200, 168, 100, 0.08);
}

.form-input[readonly] {
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
    color: #888;
    border-color: rgba(255, 255, 255, 0.04);
}

.form-input[readonly]:focus {
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-select option {
    background: #1a1a1a;
    color: #e0ddd5;
}

.form-select optgroup {
    background: #1a1a1a;
    color: #888;
    font-style: normal;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Custom Select Dropdown dla Miasta (rejestracja) */
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 20px;
    color: #e0ddd5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-select-trigger .placeholder-text {
    color: #555;
}

.custom-select-trigger .select-chevron {
    color: #888;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.custom-select-trigger.active .select-chevron {
    transform: rotate(180deg);
    color: #0b8c7f;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(22, 22, 20, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(11, 140, 127, 0.3);
    border-radius: 12px;
    z-index: 200;
    display: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    animation: fadeInDown 0.2s ease;
}

.custom-select-dropdown.active {
    display: block;
}

.dropdown-search-wrapper {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
}

.dropdown-search-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(11, 140, 127, 0.3);
    border-radius: 8px;
    color: #e0ddd5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.dropdown-search-input:focus {
    border-color: #0b8c7f;
}

.dropdown-options-list {
    max-height: 220px;
    overflow-y: auto;
}

.dropdown-options-list::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.dropdown-options-list::-webkit-scrollbar-thumb {
    background: rgba(11, 140, 127, 0.3);
    border-radius: 10px;
}

.dropdown-status-msg {
    padding: 14px 16px;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    font-style: italic;
}

.select-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #e0ddd5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s, color 0.2s;
}

.select-option-item:last-child {
    border-bottom: none;
}

.select-option-item:hover,
.select-option-item.highlighted {
    background: rgba(11, 140, 127, 0.15);
    color: #fff;
}

.select-option-item.selected {
    background: rgba(11, 140, 127, 0.2);
    color: #ffffff;
    font-weight: 500;
}

.select-option-item.is-placeholder-option {
    color: #777;
    font-style: italic;
}

.select-option-item.is-optgroup-child {
    padding-left: 26px;
}

.dropdown-optgroup-label {
    padding: 10px 16px 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0b8c7f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    user-select: none;
}

.custom-select-trigger:focus,
.custom-select-trigger:focus-visible,
.custom-select-trigger.active {
    border-color: rgba(11, 140, 127, 0.4);
    box-shadow: 0 0 0 3px rgba(11, 140, 127, 0.12);
    outline: none;
}

.custom-select-trigger.input-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15) !important;
}

.select-option-item .option-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.select-option-item .option-city-name {
    font-weight: 500;
}

.select-option-item .option-postal-code {
    font-size: 0.8rem;
    color: #0b8c7f;
}

.select-option-item .option-voivodeship-name {
    font-size: 0.8rem;
    color: #888;
    margin-left: auto;
}

/* Autocomplete Dropdown */
.dropdown-container {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 168, 100, 0.3);
    border-radius: 10px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 14px 20px;
    cursor: pointer;
    font-size: 0.92rem;
    color: #e0ddd5;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item .item-zip {
    font-weight: 600;
    color: #c8a864;
}

.autocomplete-item .item-details {
    font-size: 0.82rem;
    color: #888;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
    background: rgba(200, 168, 100, 0.15);
    color: #fff;
}

.autocomplete-item:hover .item-details,
.autocomplete-item.highlighted .item-details {
    color: #ccc;
}

.autocomplete-no-results {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
}

/* Custom Scrollbar for Dropdown */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(200, 168, 100, 0.3);
    border-radius: 10px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 168, 100, 0.5);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 24px;
    cursor: pointer;
}

.form-checkbox input {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid rgba(200, 168, 100, 0.3);
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.form-checkbox input:checked+.checkbox-custom {
    background: #0da192;
    border-color: #0da192;
}

.checkbox-custom svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-checkbox input:checked+.checkbox-custom svg {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.85rem;
    color: #aaa;
    text-align: left;
}

.checkbox-text strong {
    color: #e0ddd5;
    display: block;
    margin-bottom: 2px;
}

.form-actions {
    margin-top: 48px;
}

.form-actions-split {
    margin-top: 48px;
    display: flex;
    gap: 12px;
}

/* Rejestracja eksperta – układ pól */
.form-section-heading {
    font-family: 'Inter', sans-serif;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a864;
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section-heading:first-of-type {
    margin-top: 8px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1 1 0;
    min-width: 0;
}

.form-optional {
    color: #777;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.required {
    color: #e06c6c;
    margin-left: 2px;
    font-weight: 700;
}

.field-error {
    display: none;
    color: #e06c6c;
    font-size: 0.8rem;
    margin-top: 6px;
    text-align: left;
    line-height: 1.4;
}

.field-error.active {
    display: block;
}

.form-input.input-error,
.form-select.input-error {
    border-color: #e06c6c !important;
    box-shadow: 0 0 0 3px rgba(224, 108, 108, 0.15) !important;
}

.form-checkbox.input-error {
    border-color: #e06c6c !important;
}

.form-error {
    text-align: left;
    color: #e06c6c;
    font-size: 0.9rem;
    margin-top: 16px;
    min-height: 1.2em;
}

.form-error:empty {
    margin-top: 0;
}

/* Typ rejestracji: osoba prywatna / firma */
.reg-type-toggle {
    display: flex;
    gap: 12px;
}

.reg-type-option {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #aaa;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.reg-type-option input {
    display: none;
}

.reg-type-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(200, 168, 100, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.reg-type-check svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.reg-type-option.selected {
    border-color: #0da192;
    background: rgba(13, 161, 146, 0.08);
    color: #e0ddd5;
}

.reg-type-option.selected .reg-type-check {
    background: #0da192;
    border-color: #0da192;
}

.reg-type-option.selected .reg-type-check svg {
    opacity: 1;
}

/* Wyszukiwanie danych firmy po NIP (Wykaz podatników VAT) */
.company-lookup {
    margin-top: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: left;
}

.company-lookup-hint {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 12px;
}

.company-lookup-row {
    display: flex;
    gap: 12px;
}

.company-lookup-row .form-input {
    flex: 1 1 auto;
    min-width: 0;
}

.btn-form.btn-lookup {
    flex: 0 0 auto;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 12px;
}

.company-data {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.company-data-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0da192;
    margin-bottom: 10px;
}

.company-data dl {
    display: grid;
    gap: 6px;
    font-size: 0.85rem;
}

.company-data-row {
    display: flex;
    gap: 8px;
}

.company-data dt {
    flex: 0 0 180px;
    color: #888;
}

.company-data dd {
    color: #e0ddd5;
    font-weight: 500;
    word-break: break-word;
}

@media (max-width: 560px) {

    .form-row,
    .form-row-3 {
        flex-direction: column;
        gap: 0;
    }

    .reg-type-toggle {
        flex-direction: column;
    }

    .company-lookup-row {
        flex-direction: column;
    }

    .company-data-row {
        flex-direction: column;
        gap: 0;
    }
}

.btn-form {
    padding: 18px 40px;
    background: linear-gradient(135deg, #0da192, #0b8c7f);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-form.btn-full {
    width: 100%;
}

.btn-form.btn-grow {
    flex: 1 1 auto;
    min-width: 0;
}

.btn-form.btn-back {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.06);
    padding: 18px 28px;
}

.btn-form.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(13, 161, 146, 0.35);
}

.btn-form:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Progress bar */
.progress-bar {
    height: 3px;
    background: rgba(200, 168, 100, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8a864, #0da192);
    transition: width 0.6s cubic-bezier(.25, .8, .25, 1);
}

/* Step transitions */
.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

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

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

/* Success page */
.success-content {
    padding: 80px 24px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(90, 154, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: scaleIn 0.6s cubic-bezier(.25, .8, .25, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: #0da192;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

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

    .diff-split-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .diff-portrait-right {
        margin-top: 16px;
    }

    .diff-portrait-img {
        max-width: 320px;
    }

    .advisor-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        border-top: none;
        padding-top: 16px;
        margin: 0 auto;
    }

    .hero-right {
        justify-content: center;
    }

    .gain-clients-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gain-right {
        align-items: center;
        text-align: center;
    }

    .gain-right .btn-primary {
        align-self: center;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-right {
        justify-content: center;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-card {
        padding: 32px 24px;
    }

    .advisor-feature-item {
        padding: 20px;
    }

    .feature-text {
        padding-left: 0;
        margin-top: 8px;
    }

    .mockup-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

    .hero-subtitle br {
        display: none;
    }

    .section-title br {
        display: none;
    }

    .why-card {
        padding: 24px 20px;
    }

    .contact-form-card {
        padding: 32px 20px;
        min-height: auto;
    }

    .btn-contact-submit {
        width: 100%;
        justify-content: center;
    }

    .diff-portrait-right {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .consultations-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .consultations-right {
        justify-content: center;
    }

    .consultations-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Premium Polish & WOW Enhancements
   ============================================================ */

/* ----- Selection & Scrollbar ----- */
::selection {
    background: rgba(200, 168, 100, 0.28);
    color: #fff;
    text-shadow: none;
}

html {
    scrollbar-color: #3a3a34 #161614;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #161614;
}

::-webkit-scrollbar-thumb {
    background: #33332e;
    border-radius: 8px;
    border: 2px solid #161614;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 168, 100, 0.55);
}

/* ----- Scroll Progress Bar ----- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c8a864, #0da192);
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 1200;
    pointer-events: none;
}

/* ----- Reveal: subtelne wyostrzenie przy scrollu ----- */
.animate-on-scroll {
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(.25, .8, .25, 1),
        transform 0.8s cubic-bezier(.25, .8, .25, 1),
        filter 0.8s cubic-bezier(.25, .8, .25, 1);
}

.animate-on-scroll.visible {
    filter: blur(0);
}

/* ----- Hero: ambientowe orby ----- */
.hero-decor {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    transition: transform 0.35s ease-out;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

.hero-glow-teal {
    width: 540px;
    height: 540px;
    top: -12%;
    right: -6%;
    background: radial-gradient(circle, rgba(13, 161, 146, 0.16) 0%, transparent 65%);
    animation: glow-drift 14s ease-in-out infinite alternate;
}

.hero-glow-gold {
    width: 480px;
    height: 480px;
    bottom: -18%;
    left: -10%;
    background: radial-gradient(circle, rgba(200, 168, 100, 0.13) 0%, transparent 65%);
    animation: glow-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes glow-drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(42px, 30px, 0) scale(1.08);
    }
}

/* ----- Hero: choreografia wejścia ----- */
@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

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

@keyframes hero-rise-scale {
    from {
        opacity: 0;
        transform: translateY(44px) scale(0.965);
    }

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

.hero-left>.hero-badge,
.hero-left>.hero-title,
.hero-left>.hero-subtitle,
.hero-left>.hero-actions,
.hero-left>.hero-trust {
    opacity: 0;
    animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-left>.hero-badge {
    animation-delay: 0.15s;
}

.hero-left>.hero-title {
    animation-delay: 0.3s;
}

.hero-left>.hero-subtitle {
    animation-delay: 0.45s;
}

.hero-left>.hero-actions {
    animation-delay: 0.6s;
}

.hero-left>.hero-trust {
    animation-delay: 0.75s;
}

.hero-right {
    opacity: 0;
    animation: hero-rise-scale 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

/* ----- Hero: gradientowy akcent w tytule ----- */
.text-shine {
    background: linear-gradient(110deg, #c8a864 0%, #eddcb0 22%, #c8a864 45%, #eddcb0 72%, #c8a864 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: text-shine-slide 7s linear infinite;
}

@keyframes text-shine-slide {
    to {
        background-position: 220% center;
    }
}

/* ----- Hero: lewitacja mockupu ----- */
.live-cases-mockup {
    animation: mockup-float 7s ease-in-out 2s infinite alternate;
}

@keyframes mockup-float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

/* ----- Hero: wskaźnik przewijania ----- */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: hero-rise 1s ease 1.5s forwards;
    transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
    pointer-events: none;
    animation: none;
}

.scroll-indicator-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(200, 168, 100, 0.55);
}

.scroll-indicator-track {
    display: block;
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-dot {
    position: absolute;
    left: 0;
    top: -30%;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, #c8a864);
    animation: scroll-dot 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scroll-dot {
    0% {
        top: -30%;
    }

    60%,
    100% {
        top: 105%;
    }
}

/* ----- Przyciski: smuga światła ----- */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -85%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 135%;
}

/* ----- Karty: spotlight podążający za kursorem ----- */
.benefit-card::after,
.advisor-feature-item::after,
.consultation-feature-item::after,
.trust-feature-item::after,
.why-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(200, 168, 100, 0.07), transparent 65%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.benefit-card:hover::after,
.advisor-feature-item:hover::after,
.consultation-feature-item:hover::after,
.trust-feature-item:hover::after,
.why-item:hover::after {
    opacity: 1;
}

.consultation-feature-item,
.trust-feature-item {
    position: relative;
    overflow: hidden;
}

/* ----- Tilt 3D: baza ----- */
[data-tilt] {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ----- Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-left>.hero-badge,
    .hero-left>.hero-title,
    .hero-left>.hero-subtitle,
    .hero-left>.hero-actions,
    .hero-left>.hero-trust,
    .hero-right,
    .scroll-indicator {
        opacity: 1;
        animation: none;
    }
}

/* ----- WOW: korekty mobilne ----- */
@media (max-width: 968px) {
    .scroll-indicator {
        display: none;
    }
}

/* ============================================================
   WOW 2.0 — choreografia premium
   ============================================================ */

/* ----- Navbar: zjazd przy wejściu ----- */
.navbar {
    animation: nav-drop 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

@keyframes nav-drop {
    from {
        opacity: 0;
        transform: translateY(-110%);
    }

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

/* ----- Hero: Ken Burns na tle ----- */
.hero-bg-img {
    transform-origin: 50% 30%;
    animation: hero-kenburns 7s cubic-bezier(0.19, 0.6, 0.32, 1) both;
}

@keyframes hero-kenburns {
    from {
        transform: scale(1.16);
    }

    to {
        transform: scale(1.02);
    }
}

/* ----- Hero: filmowe ziarno ----- */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----- Hero: maskowany reveal linii tytułu ----- */
.title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.14em;
    margin-bottom: -0.14em;
}

.title-line-inner {
    display: inline-block;
    transform: translateY(112%);
    animation: title-line-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) .title-line-inner {
    animation-delay: 0.4s;
}

.title-line:nth-child(2) .title-line-inner {
    animation-delay: 0.55s;
}

@keyframes title-line-up {
    to {
        transform: translateY(0);
    }
}

/* ----- Hero: kaskada elementów mockupu ----- */
.hero-right .mockup-search-bar {
    opacity: 0;
    animation: hero-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-right .case-item {
    opacity: 0;
    animation: hero-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-right .case-item:nth-child(1) {
    animation-delay: 0.95s;
}

.hero-right .case-item:nth-child(2) {
    animation-delay: 1.1s;
}

.hero-right .case-item:nth-child(3) {
    animation-delay: 1.25s;
}

/* ----- Hero: animowana obwódka mockupu (conic) ----- */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.live-cases-mockup {
    position: relative;
}

.live-cases-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.2px;
    background: conic-gradient(from var(--border-angle),
            transparent 8%,
            rgba(200, 168, 100, 0.55) 18%,
            transparent 30%,
            transparent 55%,
            rgba(13, 161, 146, 0.45) 68%,
            transparent 80%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: border-spin 9s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes border-spin {
    to {
        --border-angle: 360deg;
    }
}

/* ----- Hero: piszący się search + migający kursor ----- */
.search-typing {
    display: inline-flex;
    align-items: center;
    color: #777;
}

.search-caret {
    display: inline-block;
    width: 1px;
    height: 13px;
    margin-left: 3px;
    background: #c8a864;
    animation: caret-blink 1.1s steps(1) infinite;
}

@keyframes caret-blink {
    50% {
        opacity: 0;
    }
}

/* ----- Hero: smuga światła po aktywnej sprawie ----- */
.case-item {
    position: relative;
    overflow: hidden;
}

.case-item::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70%;
    width: 45%;
    background: linear-gradient(100deg, transparent, rgba(200, 168, 100, 0.09), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}

.case-item.active::after {
    animation: case-sweep 1.1s ease 0.15s;
}

@keyframes case-sweep {
    to {
        left: 135%;
    }
}

.case-item.active {
    transform: translateX(4px);
}

/* ----- Sekcja ciemna: dryfująca aurora ----- */
.section-dark-bg {
    overflow: hidden;
}

.section-dark-bg::before,
.section-dark-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.section-dark-bg::before {
    width: 720px;
    height: 720px;
    top: -240px;
    left: -200px;
    background: radial-gradient(circle, rgba(13, 161, 146, 0.07) 0%, transparent 62%);
    animation: glow-drift 24s ease-in-out infinite alternate;
}

.section-dark-bg::after {
    width: 640px;
    height: 640px;
    bottom: -220px;
    right: -180px;
    background: radial-gradient(circle, rgba(200, 168, 100, 0.06) 0%, transparent 62%);
    animation: glow-drift 30s ease-in-out infinite alternate-reverse;
}

.section-dark-bg>.container {
    position: relative;
    z-index: 1;
}

/* ----- Reveal kierunkowy: panele wjeżdżają z boków ----- */
.gain-left.animate-on-scroll,
.consultations-left.animate-on-scroll,
.security-left.animate-on-scroll,
.trust-left.animate-on-scroll,
.why-us-left.animate-on-scroll,
.diff-card-left.animate-on-scroll,
.advisor-visual-card.animate-on-scroll {
    transform: translate3d(-52px, 24px, 0);
}

.gain-right.animate-on-scroll,
.consultations-right.animate-on-scroll,
.security-right.animate-on-scroll,
.trust-right.animate-on-scroll,
.why-us-right.animate-on-scroll {
    transform: translate3d(52px, 24px, 0);
}

.gain-left.animate-on-scroll.visible,
.consultations-left.animate-on-scroll.visible,
.security-left.animate-on-scroll.visible,
.trust-left.animate-on-scroll.visible,
.why-us-left.animate-on-scroll.visible,
.diff-card-left.animate-on-scroll.visible,
.advisor-visual-card.animate-on-scroll.visible,
.gain-right.animate-on-scroll.visible,
.consultations-right.animate-on-scroll.visible,
.security-right.animate-on-scroll.visible,
.trust-right.animate-on-scroll.visible,
.why-us-right.animate-on-scroll.visible {
    transform: translate3d(0, 0, 0);
}

/* ----- Kaskada elementów list wewnątrz reveal'owanych paneli ----- */
@keyframes cascade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill) {
    animation: cascade-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(1) {
    animation-delay: 0.1s;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(2) {
    animation-delay: 0.19s;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(3) {
    animation-delay: 0.28s;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(4) {
    animation-delay: 0.37s;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(5) {
    animation-delay: 0.46s;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(6) {
    animation-delay: 0.55s;
}

.animate-on-scroll.visible :is(.check-item, .consultation-feature-item, .security-item, .why-item, .trust-feature-item, .diff-item, .points-item, .sec-check-item, .contact-row, .summary-pill):nth-child(7) {
    animation-delay: 0.64s;
}

/* ----- Benefits: rysujące się ikony ----- */
.fx-draw .benefit-icon svg :is(path, line, polyline, circle, rect) {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.fx-draw .benefit-card.visible .benefit-icon svg :is(path, line, polyline, circle, rect) {
    animation: icon-draw 1.2s ease-out 0.35s forwards;
}

@keyframes icon-draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ----- Advisor: doradca najpierw "pisze", potem wysyła ----- */
.chat-bubble {
    min-height: 52px;
}

.chat-typing {
    position: absolute;
    top: 18px;
    left: 20px;
    display: flex;
    gap: 5px;
}

.chat-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(13, 161, 146, 0.65);
    animation: typing-bounce 1.15s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typing-bounce {

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

    30% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.advisor-visual-card .chat-bubble p,
.advisor-visual-card .chat-time {
    opacity: 0;
}

.advisor-visual-card.visible .chat-typing {
    animation: chat-typing-off 0.25s ease 1.6s forwards;
}

@keyframes chat-typing-off {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.advisor-visual-card.visible .chat-bubble p {
    animation: msg-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.75s both;
}

.advisor-visual-card.visible .chat-time {
    animation: msg-in 0.4s ease 2s both;
}

@keyframes msg-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ----- Scroll progress: poświata ----- */
.scroll-progress {
    box-shadow: 0 0 14px rgba(200, 168, 100, 0.45);
}

/* ----- Reduced motion / mobile ----- */
@media (prefers-reduced-motion: reduce) {

    .title-line-inner,
    .hero-right .mockup-search-bar,
    .hero-right .case-item,
    .advisor-visual-card .chat-bubble p,
    .advisor-visual-card .chat-time {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .search-caret,
    .chat-typing {
        display: none;
    }

    .hero::after {
        display: none;
    }
}

@media (max-width: 968px) {

    .gain-left.animate-on-scroll,
    .consultations-left.animate-on-scroll,
    .security-left.animate-on-scroll,
    .trust-left.animate-on-scroll,
    .why-us-left.animate-on-scroll,
    .diff-card-left.animate-on-scroll,
    .advisor-visual-card.animate-on-scroll,
    .gain-right.animate-on-scroll,
    .consultations-right.animate-on-scroll,
    .security-right.animate-on-scroll,
    .trust-right.animate-on-scroll,
    .why-us-right.animate-on-scroll {
        transform: translate3d(0, 30px, 0);
    }
}

/* ============================================================
   WOW 3.0 — Laptop showcase: choreografia wejścia i mikrointerakcje
   ============================================================ */

/* Scena 3D — klapa laptopa otwiera się w perspektywie */
.laptop-container {
    perspective: 1600px;
}

/* Ambientowa poświata oddychająca za laptopem */
.laptop-container::before {
    content: '';
    position: absolute;
    inset: -10% -14% -20%;
    z-index: -1;
    background:
        radial-gradient(55% 60% at 50% 55%, rgba(13, 161, 146, 0.14) 0%, transparent 70%),
        radial-gradient(42% 48% at 70% 38%, rgba(200, 168, 100, 0.09) 0%, transparent 70%);
    filter: blur(34px);
    opacity: 0;
    transition: opacity 1.2s ease 0.5s;
    animation: laptop-ambient-breathe 7s ease-in-out infinite;
    pointer-events: none;
}

.consultation-laptop-showcase.visible .laptop-container::before {
    opacity: 1;
}

@keyframes laptop-ambient-breathe {

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

    50% {
        transform: scale(1.06);
    }
}

/* Nagłówek podsekcji — kaskada z wyostrzeniem */
@keyframes laptop-el-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(5px);
    }
}

.consultation-laptop-showcase.visible .laptop-badge {
    animation: laptop-el-rise 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.consultation-laptop-showcase.visible .laptop-showcase-title {
    animation: laptop-el-rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.consultation-laptop-showcase.visible .laptop-showcase-desc {
    animation: laptop-el-rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Ekran otwiera się jak prawdziwa klapa */
.laptop-screen-frame {
    transform-origin: 50% 100%;
}

@keyframes laptop-lid-open {
    from {
        opacity: 0;
        transform: rotateX(-28deg) translateY(48px) scale(0.96);
    }
}

.consultation-laptop-showcase.visible .laptop-screen-frame {
    animation: laptop-lid-open 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes laptop-chassis-in {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
}

.consultation-laptop-showcase.visible .laptop-keyboard-chassis {
    animation: laptop-chassis-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

/* Poświata pod obudową oddycha */
.chassis-glow-reflection {
    animation: laptop-glow-breathe 4.5s ease-in-out infinite;
}

@keyframes laptop-glow-breathe {

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

    50% {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

/* Interfejs rozmowy "bootuje się" etapami */
@keyframes laptop-header-drop {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
}

.consultation-laptop-showcase.visible .video-app-header {
    animation: laptop-header-drop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

@keyframes laptop-stream-in {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(16px);
    }
}

.consultation-laptop-showcase.visible .lawyer-stream {
    animation: laptop-stream-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.consultation-laptop-showcase.visible .client-stream {
    animation: laptop-stream-in 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

@keyframes laptop-panel-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
}

.consultation-laptop-showcase.visible .video-doc-panel {
    animation: laptop-panel-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.15s both;
}

@keyframes laptop-toolbar-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
}

.consultation-laptop-showcase.visible .video-toolbar {
    animation: laptop-toolbar-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}

/* Przyciski wskakują sprężyście jeden po drugim */
@keyframes laptop-pop-in {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(10px);
    }
}

.consultation-laptop-showcase.visible .toolbar-center .tool-btn {
    animation: laptop-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.consultation-laptop-showcase.visible .toolbar-center .tool-btn:nth-child(1) {
    animation-delay: 1s;
}

.consultation-laptop-showcase.visible .toolbar-center .tool-btn:nth-child(2) {
    animation-delay: 1.08s;
}

.consultation-laptop-showcase.visible .toolbar-center .tool-btn:nth-child(3) {
    animation-delay: 1.16s;
}

.consultation-laptop-showcase.visible .toolbar-center .tool-btn:nth-child(4) {
    animation-delay: 1.24s;
}

.consultation-laptop-showcase.visible .toolbar-center .tool-btn:nth-child(5) {
    animation-delay: 1.32s;
}

/* Glare podążający za kursorem po ekranie */
.laptop-screen-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 25;
    background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 40%), rgba(255, 255, 255, 0.08) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.laptop-container:hover .laptop-screen-frame::before {
    opacity: 1;
}

/* Refleks świetlny przelatujący po ekranie */
.laptop-screen-frame::after {
    content: '';
    position: absolute;
    top: -25%;
    bottom: -25%;
    left: -60%;
    width: 45%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.13) 50%, rgba(255, 255, 255, 0.05) 58%, transparent 100%);
    transform: skewX(-16deg);
    z-index: 30;
    pointer-events: none;
    opacity: 0;
}

.consultation-laptop-showcase.visible .laptop-screen-frame::after {
    animation: laptop-sheen-sweep 7s ease-in-out 1.6s infinite;
}

@keyframes laptop-sheen-sweep {
    0% {
        transform: translateX(0) skewX(-16deg);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    18% {
        transform: translateX(480%) skewX(-16deg);
        opacity: 0;
    }

    100% {
        transform: translateX(480%) skewX(-16deg);
        opacity: 0;
    }
}

/* Mikrointerakcje: strumienie wideo delikatnie zoomują na hover */
.stream-video-img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.stream-tile:hover .stream-video-img {
    transform: scale(1.045);
    filter: brightness(1.02) contrast(1.05);
}

/* LIVE i dioda kamerki pulsują */
.pulse-ring {
    animation: livePulse 1.6s infinite;
}

.webcam-led-green {
    animation: laptop-led-pulse 2.6s ease-in-out infinite;
}

@keyframes laptop-led-pulse {

    0%,
    100% {
        box-shadow: 0 0 6px #10b981;
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 10px #10b981, 0 0 18px rgba(16, 185, 129, 0.5);
        opacity: 0.85;
    }
}

/* ============================================================
   Mobile polish — poprawki układu na małych ekranach
   ============================================================ */

@media (max-width: 968px) {

    /* Konsultacje: jedna kolumna zamiast ściśniętych dwóch */
    .consultations-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .consultations-right {
        justify-content: center;
    }

    .consultations-layout>* {
        min-width: 0;
    }

    /* Bezpieczeństwo: karta pod tekstem zamiast obok */
    .security-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .security-right {
        justify-content: center;
    }

    .timer-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {

    /* Laptop: interfejs rozmowy układa się w kolumnę,
       panel dokumentu wpada pod strumienie wideo */
    .video-call-viewport {
        flex-direction: column;
    }

    .video-streams-grid {
        grid-template-rows: 230px 180px;
        height: auto;
    }

    .video-app-header {
        padding: 8px 12px;
    }
}

@media (max-width: 640px) {

    /* Laptop: smuklejsza ramka na telefonach */
    .laptop-screen-frame {
        border-width: 8px;
        border-radius: 14px 14px 0 0;
    }

    .laptop-keyboard-chassis {
        height: 14px;
        border-radius: 0 0 14px 14px;
    }

    .laptop-webcam {
        width: 48px;
        height: 8px;
    }

    /* Nagłówek rozmowy: tylko LIVE + tytuł + licznik */
    .room-name,
    .video-app-header .divider,
    .encrypt-badge {
        display: none;
    }

    .app-title {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .video-call-viewport {
        padding: 10px;
    }

    .video-streams-grid {
        grid-template-rows: 200px 150px;
        gap: 10px;
    }

    .laptop-showcase-desc {
        font-size: 0.95rem;
    }

    .consultation-laptop-showcase {
        margin-top: 56px;
    }

    /* Mockup konsultacji: ciaśniej, bez przepełnienia karty */
    .mockup-body {
        padding: 22px 16px;
    }

    .consultation-booking-preview {
        padding: 14px;
    }
}

@media (max-width: 560px) {

    /* Toolbar rozmowy mieści się na najwęższych ekranach */
    .video-toolbar {
        padding: 10px 8px;
    }

    .toolbar-center {
        gap: 8px;
    }

    .tool-btn {
        width: 36px;
        height: 36px;
    }

    .highlight-tool {
        width: auto;
        padding: 0 12px;
    }

    .end-call-tool {
        margin-left: 2px;
    }
}

/* Reduced motion — wyłącz choreografię laptopa */
@media (prefers-reduced-motion: reduce) {

    .consultation-laptop-showcase.visible .laptop-badge,
    .consultation-laptop-showcase.visible .laptop-showcase-title,
    .consultation-laptop-showcase.visible .laptop-showcase-desc,
    .consultation-laptop-showcase.visible .laptop-screen-frame,
    .consultation-laptop-showcase.visible .laptop-keyboard-chassis,
    .consultation-laptop-showcase.visible .video-app-header,
    .consultation-laptop-showcase.visible .lawyer-stream,
    .consultation-laptop-showcase.visible .client-stream,
    .consultation-laptop-showcase.visible .video-doc-panel,
    .consultation-laptop-showcase.visible .video-toolbar,
    .consultation-laptop-showcase.visible .toolbar-center .tool-btn,
    .laptop-container::before,
    .chassis-glow-reflection,
    .pulse-ring,
    .webcam-led-green {
        animation: none;
    }

    .laptop-screen-frame::before,
    .laptop-screen-frame::after {
        display: none;
    }

    .consultation-laptop-showcase.visible .laptop-container::before {
        opacity: 0.7;
        transition: none;
    }
}