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

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

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

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

/* Dropdown Styles */
.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown > a {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-links .dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-links .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: var(--bg-white) !important;
    min-width: 250px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border-radius: 10px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    margin-top: 1rem !important;
    border: 2px solid var(--accent-color) !important;
    display: flex !important;
    flex-direction: column !important;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.nav-links .dropdown-menu a {
    color: var(--text-dark) !important;
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid #eee !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.nav-links .dropdown-menu a:hover {
    background: var(--accent-color) !important;
    color: var(--text-light) !important;
}

.nav-links .dropdown-menu a:last-child {
    border-bottom: none !important;
    border-radius: 0 0 8px 8px !important;
}

.nav-links .dropdown-menu a:first-child {
    border-radius: 8px 8px 0 0 !important;
}

.nav-cta {
    background: var(--accent-gradient);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 180px 2rem 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero-form h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-form p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--primary-color);
    padding: 1.3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Features Section */
.features {
    padding: 100px 2rem;
    background: var(--bg-white);
}

.features-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.how-it-works .section-title {
    color: var(--text-light);
}

.how-it-works .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.steps-container {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 2.5rem;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 700;
}

.step-card p {
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Comparison Section */
.comparison {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-table {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-header div:nth-child(2) {
    background: var(--accent-gradient);
    color: var(--primary-color);
    margin: -2rem 1rem;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row div:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-row div:nth-child(2) {
    text-align: center;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.comparison-row div:nth-child(3) {
    text-align: center;
    color: #999;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 2rem;
    background: var(--bg-white);
}

.testimonials-slider {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid var(--accent-color);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 2rem;
    background: var(--accent-gradient);
    text-align: center;
}

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

.cta-section h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-dark {
    background: var(--primary-color);
    color: var(--text-light);
    border: 3px solid var(--primary-color);
}

.btn-dark:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 140px 2rem 80px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-header div:nth-child(2) {
        margin: 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    /* Mobile dropdown adjustments */
    .nav-links .dropdown-menu {
        position: fixed !important;
        top: 80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 300px !important;
    }
    
    .nav-links .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) !important;
    }
}

/* Additional dropdown fixes for compatibility */
.nav-links .dropdown-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links .dropdown-menu * {
    box-sizing: border-box !important;
}

@media print {
    header {
        position: static;
    }
    
    .hero {
        margin-top: 0;
    }
}