:root {
    --bg-main: #0B132B;
    --bg-surface: #1C2541;
    --brand-gold: #E0A96D;
    --brand-gold-hover: #D49A5B;
    --text-light: #F4F5F7;
    --text-muted: #9A9FA3;
    --warning-bg: #FFF3CD;
    --warning-text: #856404;
    --error-color: #FF6B6B;
    --success-color: #4BB543;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
}

/* HEADER */
.main-header {
    background-color: var(--bg-surface);
    border-bottom: 2px solid var(--brand-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
}

.logo-highlight {
    color: var(--brand-gold);
}

.logo-link {
    text-decoration: none;
}

.main-nav .nav-link {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav .nav-link:hover, .main-nav .nav-link.active {
    color: var(--brand-gold);
}

.btn-cta-header {
    background-color: transparent;
    color: var(--brand-gold);
    border: 2px solid var(--brand-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-header:hover {
    background-color: var(--brand-gold);
    color: var(--bg-main);
}

/* DISCLAIMER */
.ads-disclaimer-banner {
    background-color: var(--warning-bg);
    color: var(--warning-text);
    padding: 1rem 2rem;
}

.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    text-align: justify;
}

/* HERO */
.hero-section {
    padding: 5rem 2rem;
    background: radial-gradient(circle at top right, #1C2541 0%, #0B132B 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-tag {
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-submit-form {
    background-color: var(--brand-gold);
    color: var(--bg-main);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover, .btn-submit-form:hover {
    background-color: var(--brand-gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--text-light);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-main);
}

.hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(224, 169, 109, 0.2);
}

/* PROBLEMS SECTION */
.problem-section {
    background-color: var(--bg-surface);
    padding: 5rem 2rem;
}

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

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

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-lead {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.problem-card {
    background-color: var(--bg-main);
    padding: 2.5rem;
    border-radius: 6px;
    border-top: 4px solid var(--error-color);
}

.card-icon.error-color {
    color: var(--error-color);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* SERVICES */
.services-section {
    padding: 5rem 2rem;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.service-item {
    background-color: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(224, 169, 109, 0.1);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--brand-gold);
}

.service-list {
    margin-top: 1.5rem;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-gold);
    font-weight: bold;
}

/* CAPTURE FORM */
.lead-capture-section {
    background: linear-gradient(135deg, #1C2541 0%, #0B132B 100%);
    padding: 5rem 2rem;
    border-top: 2px solid var(--brand-gold);
}

.capture-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.capture-info h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--brand-gold);
    font-weight: 600;
}

.capture-form-wrapper {
    background-color: var(--bg-main);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(224, 169, 109, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    border-radius: 4px;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--brand-gold);
}

.error-msg {
    color: var(--error-color);
    font-size: 0.8rem;
    display: none;
    margin-top: 0.3rem;
}

.btn-submit-form {
    width: 100%;
    margin-top: 1rem;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* FOOTER */
.main-footer {
    background-color: #060b18;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-column h4 {
    color: var(--brand-gold);
    margin-bottom: 1.2rem;
}

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

.footer-links-column ul li {
    margin-bottom: 0.6rem;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links-column ul li a:hover {
    color: var(--text-light);
}

.footer-disclaimer-box {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 243, 205, 0.05);
    border-left: 4px solid var(--brand-gold);
    border-radius: 4px;
}

.footer-disclaimer-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: justify;
    line-height: 1.5;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media(max-width: 768px) {
    .footer-top-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .grid-two-columns {
        grid-template-columns: 1fr;
    }
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
}