:root {
    --deep-navy: #080c14;
    --navy: #0d1320;
    --navy-light: #162032;
    --gold: #c9a962;
    --gold-light: #dbc078;
    --white: #ffffff;
    --gray: #8b92a5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-navy);
    color: var(--white);
    overflow-x: hidden;
}

.ambient-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse 60% 40% at 15% 30%, rgba(201, 169, 98, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 85% 70%, rgba(201, 169, 98, 0.04) 0%, transparent 50%),
        var(--deep-navy);
    animation: pulse 12s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 48px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

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

.btn-nav {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--deep-navy);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--deep-navy);
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clients {
    padding: 140px 48px;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--navy) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.client-card {
    background: rgba(22, 32, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 28px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.client-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--gold);
}

.client-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.client-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.services {
    padding: 140px 48px;
    position: relative;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-text > p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(22, 32, 50, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.service-item:hover {
    background: rgba(22, 32, 50, 0.6);
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateX(8px);
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
}

.service-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.services-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(22, 32, 50, 0.5) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.15);
}

.visual-content { text-align: center; }

.visual-icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.8;
}

.visual-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--white);
    font-style: italic;
}

.deals {
    padding: 140px 48px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--deep-navy) 100%);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.deal-card {
    background: rgba(22, 32, 50, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.deal-card:hover {
    transform: translateY(-12px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.deal-card:hover::after {
    transform: scaleX(1);
}

.deal-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

.deal-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.deal-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.attorney {
    padding: 140px 48px;
    position: relative;
}

.attorney-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.attorney-image-frame {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(22, 32, 50, 0.8) 100%);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.attorney-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--gold);
    border: 2px solid rgba(201, 169, 98, 0.3);
}

.attorney-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 8px;
}

.attorney-title {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.attorney-info > p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.attorney-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item { text-align: center; }

.highlight-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
}

.highlight-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

.cta {
    padding: 140px 48px;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta > p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-contact {
    margin-top: 32px;
    color: var(--gray);
    font-size: 15px;
}

.cta-contact a {
    color: var(--gold);
    text-decoration: none;
}

footer {
    padding: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

footer p {
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 52px; }
    .services-content { grid-template-columns: 1fr; }
    .attorney-content { grid-template-columns: 1fr; gap: 60px; }
    .section-title { font-size: 42px; }
}

@media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero h1 { font-size: 40px; }
    .hero-stats { flex-direction: column; gap: 32px; bottom: 40px; }
    .clients-grid { grid-template-columns: 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 36px; }
    .attorney-highlights { flex-direction: column; gap: 24px; }
}
