/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(145deg, var(--brand-blue-deeper) 0%, var(--brand-blue) 40%, #2B6CB0 100%);
    color: var(--white);
    padding: 100px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #48BB78;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
    animation: fadeInDown 0.6s ease-out 0.1s both;
}

.hero h1 em {
    font-style: normal;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.hero-sub {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s ease-out 0.3s both;
}

.hero-buttons .btn-primary {
    padding: 15px 36px;
    font-size: 17px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s ease-out 0.4s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.hero-trust-item svg {
    flex-shrink: 0;
}

/* ========== TRUSTED BY ========== */
.trusted-by {
    padding: 40px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.trusted-by-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.3s;
    text-decoration: none;
}

.trusted-logo:hover { opacity: 1; }

.trusted-logo img {
    height: 36px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.trusted-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.trusted-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--light-gray);
    padding: 48px 24px;
    border-bottom: 3px solid var(--brand-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== INDUSTRIES ========== */
.industries {
    padding: 100px 24px;
    background: var(--white);
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--brand-red);
    transition: height 0.3s;
}

.industry-card:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-card:hover::before { height: 100%; }

.industry-icon {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}

.industry-card:hover .industry-icon {
    background: var(--brand-blue);
    color: var(--white);
}

.industry-card-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.industry-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.industry-card .arrow {
    position: absolute;
    top: 32px;
    right: 24px;
    color: var(--border-light);
    transition: all 0.3s;
    font-size: 18px;
}

.industry-card:hover .arrow {
    color: var(--brand-red);
    transform: translateX(4px);
}

.industry-card.external-badge::after {
    content: 'CollectPlus';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-blue);
    background: var(--light-blue);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ========== AI SECTION ========== */
.ai-section {
    padding: 100px 24px;
    background: linear-gradient(160deg, var(--brand-blue-deeper) 0%, var(--brand-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.ai-content {
    position: relative;
    z-index: 2;
}

.ai-section .section-label { color: #48BB78; }
.ai-section .section-title { color: var(--white); }
.ai-section .section-subtitle { color: rgba(255,255,255,0.7); }

.ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.ai-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.ai-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.ai-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.ai-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ai-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.ai-cta {
    text-align: center;
    margin-top: 48px;
}

.ai-cta .btn-primary {
    background: var(--brand-red);
    padding: 15px 36px;
    font-size: 16px;
}

.ai-powered-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 24px;
    color: rgba(255,255,255,0.8);
}

/* ========== WHY CREDITSOFT ========== */
.why-section {
    padding: 100px 24px;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.why-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.3s;
    position: relative;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why-card.highlight {
    background: var(--brand-blue);
    color: var(--white);
    grid-column: 1 / -1;
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.why-card.highlight .why-card-icon {
    background: rgba(255,255,255,0.15);
}

.why-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.why-card.highlight p {
    color: rgba(255,255,255,0.85);
}

.why-card.highlight h3 {
    color: var(--white);
}

/* ========== DATA OWNERSHIP ========== */
.data-section {
    padding: 80px 24px;
    background: var(--light-gray);
}

.data-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
}

.data-visual {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.data-visual::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed var(--brand-blue);
    border-radius: 50%;
    opacity: 0.2;
}

.data-visual-icon {
    font-size: 56px;
}

.data-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.data-text h2 span { color: var(--brand-red); }

.data-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.data-text p strong {
    color: var(--text-primary);
}

/* ========== INTEGRATIONS ========== */
.integrations {
    padding: 80px 24px;
    background: var(--white);
}

.integrations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.integration-item:hover { transform: translateY(-3px); }

.integration-icon-box {
    width: 72px;
    height: 72px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.integration-item:hover .integration-icon-box {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
}

.integration-icon-box img {
    max-width: 44px;
    max-height: 44px;
}

.integration-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(145deg, var(--brand-blue-deeper) 0%, var(--brand-blue) 60%, #2B6CB0 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196,30,58,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section .cta-sub {
    font-size: 19px;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary {
    padding: 16px 40px;
    font-size: 17px;
}

.cta-note {
    font-size: 15px;
    opacity: 0.7;
}

/* ========== HOMEPAGE RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 64px 20px 56px; }
    .hero h1 { font-size: 34px; }
    .hero-sub { font-size: 17px; }
    .hero-trust { gap: 16px; }
    .hero-trust-item { font-size: 12px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: 32px; }

    .industry-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card.highlight { grid-column: auto; }

    .data-inner { flex-direction: column; text-align: center; gap: 32px; }
    .data-text h2 { font-size: 26px; }

    .section-title { font-size: 30px; }
    .cta-section h2 { font-size: 30px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
