/* ===== 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: 1200px;
    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: 32px;
}

.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);
}

/* ===== 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);
}

.mockup-checklist.highlighted {
    border-color: rgba(200, 168, 100, 0.3);
    background: rgba(200, 168, 100, 0.02);
}

/* ===== 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-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;
}

/* ===== 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: 600px;
    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-group {
    margin-bottom: 24px;
    text-align: left;
}

.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;
}

.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;
}

/* 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 – typ podmiotu (osoba prywatna / firma) */
.entity-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.entity-type-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    color: #e0ddd5;
    font-family: 'Inter', sans-serif;
}

.entity-type-option:hover {
    border-color: rgba(200, 168, 100, 0.3);
}

.entity-type-option.active {
    border-color: rgba(200, 168, 100, 0.6);
    background: rgba(200, 168, 100, 0.08);
}

.entity-type-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    transition: background 0.3s, color 0.3s;
}

.entity-type-option.active .entity-type-icon {
    background: #c8a864;
    color: #1a1a1a;
}

.entity-type-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.78rem;
    color: #888;
}

.entity-type-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e0ddd5;
}

.entity-type-option.active .entity-type-text strong {
    color: #c8a864;
}

/* Podpowiedź pod polem */
.form-hint {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #777;
    text-align: left;
}

/* NIP – pobieranie danych firmy */
.nip-lookup-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

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

.btn-nip-lookup {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    background: rgba(200, 168, 100, 0.12);
    border: 1px solid rgba(200, 168, 100, 0.35);
    border-radius: 10px;
    color: #c8a864;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, opacity 0.3s;
    white-space: nowrap;
}

.btn-nip-lookup:hover:not(:disabled) {
    background: rgba(200, 168, 100, 0.2);
    border-color: rgba(200, 168, 100, 0.6);
}

.btn-nip-lookup:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nip-lookup-status {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #777;
    text-align: left;
}

.nip-lookup-status.is-success {
    color: #0da192;
}

.nip-lookup-status.is-error {
    color: #e06c6c;
}

/* Podsumowanie danych firmy (pobranych po NIP) — zwarty tekst zamiast pól */
.company-data-summary {
    margin: 4px 0 24px;
    padding: 18px 20px;
    background: rgba(200, 168, 100, 0.05);
    border: 1px solid rgba(200, 168, 100, 0.18);
    border-radius: 12px;
    display: grid;
    gap: 14px;
    text-align: left;
}

.company-summary-empty {
    margin: 0;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

.company-data-summary .summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.company-data-summary .summary-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

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

.company-data-summary .summary-value {
    font-size: 0.95rem;
    color: #e0ddd5;
    line-height: 1.45;
    word-break: break-word;
}

.company-data-summary .summary-muted {
    color: #888;
}

@media (max-width: 560px) {
    .entity-type-toggle {
        grid-template-columns: 1fr;
    }

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

    .btn-nip-lookup {
        padding: 14px 20px;
        justify-content: center;
    }

    .company-data-summary .summary-grid {
        grid-template-columns: 1fr;
    }
}

/* 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;
}

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

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

@media (max-width: 560px) {

    .form-row,
    .form-row-3 {
        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: 968px) {
    .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;
    }

    .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;
    }
}