:root {
    --primary-bg: #0f0f1a;
    --secondary-bg: #161625;
    --accent-gold: #c9a35d;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --cta-green: #25d366;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Offset for sticky nav */
}

/* Navigation */
nav {
    background: var(--secondary-bg);
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    border-bottom: 1px solid #2a2a40;
    display: flex;
    align-items: center;
}

nav .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent-gold);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px; /* Restoring to original requested height */
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 50%; /* Makes the square image circular to remove black corners */
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a35 0%, #0f0f1a 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn {
    display: inline-block;
    padding: 18px 36px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

.btn-whatsapp {
    background-color: var(--cta-green);
    color: white;
    margin-left: 15px;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Hero Trust Elements */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item span {
    color: var(--accent-gold);
}

/* Lead Funnel Sticky Bar */
.lead-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

.lead-bar .btn-dark {
    background: var(--primary-bg);
    color: var(--accent-gold);
    padding: 10px 20px;
    margin-left: 20px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2a2a40;
    text-align: center;
}

.price-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.price-amount {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin: 20px 0;
}

/* Authority Section */
.proof-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.proof-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.proof-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .btn-whatsapp { margin-left: 0; margin-top: 15px; display: block; }
}
