/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5D4FFA;
    --primary-dark: #4A3FD8;
    --secondary-color: #00D9FF;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --bg-light: #FAF9F6;
    --bg-white: #F5F5F0;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling - matching profitguard EXACTLY */
.logo h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    letter-spacing: -0.01em !important;
    line-height: 1 !important;
}

.logo-dark {
    color: #2d3748 !important;
}

.logo-light {
    color: #9ca3af !important;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(93, 79, 250, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #00c4e6;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(93, 79, 250, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    padding: 20px;
    border: 1px solid var(--border-color);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Growth Check Section */
.growth-check {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.growth-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.growth-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card h3 {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.case-stat {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.case-card p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
}

.highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0;
}

/* Businessman image in problem section */
.businessman-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Problem section layout adjustment */
.problem-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(93, 79, 250, 0.3);
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 79, 250, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-icon {
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.cta-centered {
    text-align: center;
    margin-top: 40px;
}

/* What You Get */
.what-you-get {
    padding: 80px 0;
    background: var(--bg-white);
}

.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.feature-visual {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visual-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

/* What We Recover */
.what-we-recover {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.recovery-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

.recovery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recovery-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.recovery-item:hover {
    transform: translateX(5px);
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-cta-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.final-cta-text p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.trust-badge {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-icon {
    font-size: 60px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-text strong {
    font-size: 24px;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 16px;
    color: var(--text-gray);
}

/* FAQ */
.faq {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-white);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 60px;
}

.faq-answer li {
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-content > p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-method {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s;
    min-width: 300px;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-method svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-method div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.contact-method strong {
    font-size: 18px;
    font-weight: 600;
}

.contact-method span {
    font-size: 16px;
    color: var(--text-gray);
}

.contact-location {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 30px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-couriers p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-align: center;
}

.courier-list {
    margin-top: 10px;
    font-weight: 500;
}

.footer-legal {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Hidden utility */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .problem-content,
    .what-content,
    .final-cta-content {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .case-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .recovery-types {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .nav {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .businessman-image {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .logo h1 {
        font-size: 20px !important;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
}