/* CSS Variables */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Disclaimer Banner */
.disclaimer-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fef3c7;
    border-bottom: 2px solid #f59e0b;
    padding: 12px 20px;
    text-align: center;
    z-index: 1001;
    font-size: 12px;
    line-height: 1.5;
    color: #92400e;
}

.disclaimer-banner p {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-banner strong {
    color: #78350f;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 220px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #dbeafe 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 12px;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.pricing-card.secondary {
    border-color: var(--text-light);
}

.pricing-card.secondary .pricing-header {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 40px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 28px;
    font-weight: 600;
    margin-top: 8px;
}

.price .amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    margin-top: 8px;
    opacity: 0.9;
}

.pricing-features {
    padding: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin: 0 40px 40px;
    width: calc(100% - 80px);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, #dbeafe 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
}

.guarantee-box {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--success);
    margin-top: 32px;
}

.guarantee-box h4 {
    color: var(--success);
    font-size: 18px;
    margin-bottom: 12px;
}

.guarantee-box p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.guarantee-box a {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    color: var(--primary-light);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #334155;
}

.disclaimer-notice {
    background-color: #1e293b;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.disclaimer-notice p {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.6;
}

.disclaimer-notice strong {
    color: var(--accent);
}

.disclaimer-notice a {
    color: var(--primary-light);
}

.copyright {
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .disclaimer-banner {
        position: relative;
        padding: 10px 15px;
        font-size: 11px;
    }

    .header {
        position: sticky;
        top: 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .nav-links.active li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card .btn {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
    }

    .pricing-features {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

/* Form Success State */
.form-success {
    background-color: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.form-success h4 {
    margin-bottom: 8px;
}

/* ==================== */
/* Policy Pages Styles  */
/* ==================== */

/* Page Hero */
.page-hero {
    padding: 200px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--text-white);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Policy Content */
.policy-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section:last-of-type {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.policy-section p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Policy Highlight Box */
.policy-highlight {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.policy-highlight.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
    border-left-color: var(--accent);
}

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.policy-highlight h2 {
    border: none;
    padding-bottom: 0;
    margin-bottom: 12px;
}

.policy-highlight p {
    margin-bottom: 0;
}

/* Policy Lists */
.policy-list {
    margin: 20px 0;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    line-height: 1.7;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.policy-list.numbered {
    counter-reset: policy-counter;
}

.policy-list.numbered li::before {
    counter-increment: policy-counter;
    content: counter(policy-counter) ".";
    font-size: 16px;
    left: 0;
}

/* Policy Note */
.policy-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    margin-top: 20px;
    border: 1px solid var(--border);
}

.policy-note.warning {
    background-color: #fef3c7;
    border-color: #fcd34d;
}

.note-icon {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.policy-note.warning .note-icon {
    color: var(--accent);
}

.policy-note p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 16px;
}

.contact-icon-large {
    font-size: 36px;
    color: var(--primary);
}

.contact-box a {
    font-size: 20px;
    font-weight: 600;
}

/* Resource Links */
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    color: var(--text);
}

.resource-link:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--text);
}

.resource-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.resource-link div {
    flex: 1;
}

.resource-link strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 4px;
}

.resource-link p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.resource-link .arrow {
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.resource-link:hover .arrow {
    transform: translateX(4px);
}

/* Policy CTA */
.policy-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.policy-cta p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive for Policy Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .policy-content {
        padding: 50px 0;
    }

    .policy-highlight {
        flex-direction: column;
        gap: 12px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .resource-link {
        flex-direction: column;
        text-align: center;
    }

    .resource-link .arrow {
        display: none;
    }

    .policy-cta {
        padding: 30px 20px;
    }
}
