:root {
    --color-bg-dark: #050505;
    --color-bg-card: #111111;
    --color-primary: #b48d3c;
    --color-primary-hover: #cfa856;
    --color-secondary: #819db7;
    --color-text-main: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-border: #27272a;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 18px 36px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(180, 141, 60, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 141, 60, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(180, 141, 60, 0.1);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(180, 141, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(180, 141, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(180, 141, 60, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background-image: linear-gradient(to right, rgba(5, 5, 5, 0.95) 30%, rgba(5, 5, 5, 0.6)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-bg-dark), transparent);
    pointer-events: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 10;
}

.header .logo {
    height: 50px;
    width: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.tag {
    display: inline-block;
    background-color: rgba(180, 141, 60, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(180, 141, 60, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 700px;
}

/* Urgency Section */
.urgency {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
    position: relative;
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin-top: 24px;
}

.urgency-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.bullets-list {
    list-style: none;
    margin-bottom: 40px;
}

.bullets-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: var(--color-bg-card);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-fast);
}

.bullets-list li:hover {
    transform: translateX(10px);
    background: #161616;
}

.bullet-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-right: 16px;
    margin-top: 2px;
}

.bullet-text strong {
    display: block;
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.bullet-text span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Authority Section */
.authority {
    padding: 100px 0;
    background-color: #080808;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.authority-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.authority-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(180, 141, 60, 0.2);
    border-radius: 8px;
    pointer-events: none;
}

.authority-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.authority-image:hover img {
    transform: scale(1.05);
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(180, 141, 60, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(180, 141, 60, 0.2);
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Practice Areas */
.practice-areas {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.practice-areas .section-title {
    text-align: center;
}

.practice-areas .section-title::after {
    margin: 24px auto 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(180, 141, 60, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.card p {
    color: var(--color-text-muted);
}

/* CTA Footer Section */
.cta-footer {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(180, 141, 60, 0.1), transparent), var(--color-bg-card);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.cta-footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-footer h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-footer p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #030303;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-text {
    color: #666;
    font-size: 0.875rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .urgency-grid, .authority-grid {
        grid-template-columns: 1fr;
    }
    
    .authority-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
        background-position: center left 30%;
    }
    
    .header {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }
    
    .practice-areas .section-title::after {
        margin: 24px auto 0;
    }
}

/* CTA Additions */
.cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-wrapper.center-wrapper {
    align-items: center;
}

.cta-subtitle {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(180, 141, 60, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(180, 141, 60, 0.2);
}

@media (max-width: 768px) {
    .cta-wrapper {
        align-items: center;
        width: 100%;
    }
}
