/* css/index.css */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121824;
    color: #e2e8f0;
    line-height: 1.6;
}

.header-container, .disclaimer-container, .hero-container, .section-container, .lead-container, .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #1a2333;
    border-bottom: 1px solid #2e3c54;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: table;
    width: 100%;
}
.logo {
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
.logo svg {
    vertical-align: middle;
    margin-right: 8px;
}
.text-highlight {
    color: #10b981;
}
.main-nav {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.nav-link {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #10b981;
}
.header-cta {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-primary {
    background-color: #10b981;
    color: #121824;
}
.btn-primary:hover {
    background-color: #059669;
}
.btn-secondary {
    background-color: #d97706;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #b45309;
}
.btn-outline {
    background-color: transparent;
    border: 2px solid #2e3c54;
    color: #e2e8f0;
}
.btn-outline:hover {
    border-color: #10b981;
    color: #10b981;
}
.btn-submit {
    background-color: #10b981;
    color: #121824;
    width: 100%;
    padding: 14px;
    font-size: 16px;
}
.btn-submit:hover {
    background-color: #059669;
}

/* Disclaimer Banner */
.ads-disclaimer-banner {
    background-color: #fef3c7;
    border-left: 5px solid #d97706;
    padding: 15px 0;
    color: #78350f;
}
.disclaimer-container {
    display: table;
    width: 100%;
}
.disclaimer-icon {
    display: table-cell;
    width: 40px;
    vertical-align: top;
}
.disclaimer-text {
    display: table-cell;
    vertical-align: top;
    font-size: 13px;
    line-height: 1.5;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: radial-gradient(circle at top right, #1e293b, #121824);
}
.hero-container {
    display: table;
    width: 100%;
}
.hero-content {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-right: 40px;
}
.hero-badge {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 38px;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.hero-description {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 30px;
}
.hero-actions .btn {
    margin-right: 15px;
}
.hero-image-wrapper {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    text-align: right;
}
.hero-img {
    border-radius: 12px;
    border: 1px solid #2e3c54;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Sections General */
.services-section, .process-section, .lead-section {
    padding: 80px 0;
    border-bottom: 1px solid #1a2333;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}
.section-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}
.section-subtitle {
    color: #94a3b8;
    font-size: 15px;
}

/* Services Grid */
.services-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.service-card {
    display: table-cell;
    background-color: #1a2333;
    border: 1px solid #2e3c54;
    border-radius: 10px;
    padding: 30px;
    margin: 0 10px;
    transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover {
    border-color: #10b981;
}
.service-icon {
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 12px 0;
}
.card-text {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* Process Section */
.process-steps {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.step-item {
    display: table-cell;
    padding: 0 20px;
    vertical-align: top;
}
.step-number-box {
    position: relative;
    margin-bottom: 20px;
}
.step-num {
    font-size: 36px;
    font-weight: 800;
    color: #10b981;
}
.step-line {
    position: absolute;
    top: 25px;
    left: 60px;
    right: 0;
    height: 2px;
    background-color: #2e3c54;
}
.step-item:last-child .step-line {
    display: none;
}
.step-content h3 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 10px 0;
}
.step-content p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* Lead Capture Section */
.lead-container {
    display: table;
    width: 100%;
}
.lead-info {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-right: 50px;
}
.lead-info h2 {
    font-size: 30px;
    color: #fff;
    margin: 0 0 20px 0;
}
.lead-info p {
    color: #94a3b8;
    margin-bottom: 30px;
}
.trust-indicators {
    margin-top: 20px;
}
.trust-badge {
    margin-bottom: 12px;
    font-size: 14px;
    color: #e2e8f0;
}
.trust-badge svg {
    vertical-align: middle;
    margin-right: 8px;
}

.lead-form-box {
    display: table-cell;
    width: 50%;
    background-color: #1a2333;
    border: 1px solid #2e3c54;
    border-radius: 12px;
    padding: 40px;
}
.direct-form .form-group {
    margin-bottom: 20px;
}
.direct-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}
.direct-form input, .direct-form select {
    width: 100%;
    padding: 12px;
    background-color: #121824;
    border: 1px solid #2e3c54;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}
.direct-form input:focus, .direct-form select:focus {
    outline: none;
    border-color: #10b981;
}
.error-msg {
    display: none;
    color: #ef4444;
    font-size: 11px;
    margin-top: 5px;
}
.form-privacy-note {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.main-footer {
    background-color: #0f141c;
    border-top: 1px solid #1a2333;
}
.footer-top {
    padding: 60px 0;
}
.footer-top .footer-container {
    display: table;
    width: 100%;
}
.footer-brand-box {
    display: table-cell;
    width: 50%;
    padding-right: 40px;
}
.footer-brand-text {
    font-size: 13px;
    color: #64748b;
    margin-top: 15px;
}
.footer-links-box {
    display: table-cell;
    width: 25%;
    vertical-align: top;
}
.footer-links-box h4 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 20px 0;
}
.footer-links-box a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
}
.footer-links-box a:hover {
    color: #10b981;
}
.footer-bottom {
    border-top: 1px solid #1a2333;
    padding: 30px 0;
}
.copyright {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 15px 0;
}
.footer-legal-disclaimer {
    font-size: 11px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}
