/* Professional Style - Page 2 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-dark: #1a202c;
    --text-medium: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #38a169;
    --warning: #d69e2e;
    --gold: #c5a155;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--white);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.top-info {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.tagline {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-btn {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 0.65rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
}

/* Hero Professional */
.hero-professional {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 2.25rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.btn-primary-large,
.btn-secondary-large,
.btn-white-large {
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-large {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary-large:hover {
    background-color: #b8923e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary-large {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-large:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    padding: 1.1rem 2.5rem;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.trust-box {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-items span {
    font-size: 0.95rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.important-disclaimer {
    background-color: rgba(214, 158, 46, 0.1);
    border-left: 4px solid var(--warning);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.important-disclaimer strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.important-disclaimer p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.about-features {
    display: grid;
    gap: 1.25rem;
}

.feature-box {
    background-color: var(--bg-light);
    padding: 1.75rem;
    border-radius: 10px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Services Professional */
.services-professional {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-professional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-pro-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.service-pro-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-pro-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--gold);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-icon-pro {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.service-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 2.25rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.benefit-number {
    display: inline-block;
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Timeline */
.process-timeline {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--gold));
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ Professional */
.faq-professional {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-pro-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-pro-item {
    background-color: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: border-color 0.3s;
}

.faq-pro-item:hover {
    border-color: var(--accent-color);
}

.faq-pro-question {
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.faq-pro-answer {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.4s;
    color: var(--text-light);
}

.faq-pro-answer.active {
    padding: 1.75rem;
    max-height: 600px;
}

.faq-icon {
    transition: transform 0.3s;
    font-size: 1.25rem;
    color: var(--accent-color);
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* CTA Professional */
.cta-professional {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f2942 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Footer Professional */
.footer-professional {
    background-color: #0f2942;
    color: #cbd5e0;
    padding: 3.5rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col-large h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col-large > p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-disclaimer {
    background-color: rgba(214, 158, 46, 0.15);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--warning);
}

.footer-disclaimer strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--white);
}

.contact-info li {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #cbd5e0;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-professional-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
