/* REKON Landing Page Styles */
/* Emerald/Green theme for Financial Reconciliation */

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

.section-white {
    background: var(--white);
}

.section-dark-teal {
    background: var(--teal-900);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-dark-teal .section-label {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.3);
    color: #34D399;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

.section-dark-teal .section-subtitle {
    color: var(--gray-300);
}

.text-gradient {
    background: linear-gradient(135deg, #34D399, var(--teal-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: #34D399;
}

/* Hero Section */
.rekon-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-900) 100%);
    color: var(--white);
    overflow: hidden;
    min-height: 600px;
    position: relative;
}

/* Animated background gradient */
.rekon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    animation: heroGradientShift 15s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Floating particles */
.rekon-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(52, 211, 153, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 30% 70%, rgba(52, 211, 153, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 60% 30%, rgba(52, 211, 153, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 80% 80%, rgba(52, 211, 153, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 90% 10%, rgba(52, 211, 153, 0.3) 50%, transparent 50%);
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.rekon-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.rekon-hero .hero-content {
    max-width: 560px;
}

.rekon-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #34D399;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(16, 185, 129, 0.2); }
}

.rekon-hero .badge-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--white);
}

.rekon-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.rekon-hero .hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-metric .metric-value {
    font-size: 36px;
    font-weight: 800;
    color: #34D399;
    line-height: 1;
    display: block;
}

.hero-metric .metric-label {
    font-size: 14px;
    color: var(--gray-300);
    margin-top: 4px;
}

.rekon-hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rekon-hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rekon-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.rekon-hero .hero-cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #34D399;
}

/* Hero Visual - Reconciliation Interface */
.hero-visual {
    position: relative;
    height: 520px;
}

.rekon-interface {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recon-visual {
    width: 100%;
    max-width: 480px;
    position: relative;
}

.recon-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.recon-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    animation: panelShine 4s ease-in-out infinite;
}

@keyframes panelShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.recon-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.recon-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.recon-panel-title span:first-child {
    font-size: 18px;
}

.recon-badge {
    background: #10B981;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.recon-badge.pending {
    background: var(--orange-500);
}

/* Transaction Items */
.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    animation: slideIn 0.5s ease-out both;
}

.transaction-item:nth-child(1) { animation-delay: 0.1s; }
.transaction-item:nth-child(2) { animation-delay: 0.2s; }
.transaction-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.transaction-details {
    display: flex;
    flex-direction: column;
}

.transaction-desc {
    color: var(--white);
    font-weight: 500;
}

.transaction-ref {
    color: var(--gray-400);
    font-size: 11px;
}

.transaction-amount {
    font-weight: 700;
    color: #34D399;
}

.transaction-amount.debit {
    color: #FB923C;
}

.transaction-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #34D399;
}

.status-icon {
    width: 16px;
    height: 16px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--white);
}

/* Matching Animation */
.matching-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
    animation: matchingGlow 3s ease-in-out infinite alternate;
}

@keyframes matchingGlow {
    0% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.1); }
    100% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.2); }
}

.match-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.match-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: iconBounce 2s ease-in-out infinite;
}

.match-source:first-child .match-icon {
    animation-delay: 0s;
}

.match-source:last-child .match-icon {
    animation-delay: 0.5s;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.match-label {
    font-size: 12px;
    color: var(--gray-300);
}

.match-connector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #34D399, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.match-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: matchPulse 2s ease-in-out infinite;
}

@keyframes matchPulse {
    0% { left: -100%; }
    100% { left: 200%; }
}

.match-check {
    width: 32px;
    height: 32px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    animation: checkPop 0.5s ease-out both;
    animation-delay: 1s;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Stats Bar */
.recon-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.recon-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    animation: statFadeIn 0.6s ease-out both;
}

.recon-stat:nth-child(1) { animation-delay: 0.8s; }
.recon-stat:nth-child(2) { animation-delay: 0.9s; }
.recon-stat:nth-child(3) { animation-delay: 1s; }

@keyframes statFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.recon-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.recon-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #34D399;
    display: block;
}

.recon-stat-label {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: var(--white);
    border-color: #34D399;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.problem-stat {
    font-size: 42px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    margin-bottom: 12px;
}

.problem-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.problem-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), var(--gray-50));
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.problem-cta p {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.problem-cta strong {
    color: #059669;
}

/* Promise Section */
.promise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promise-headline {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.promise-text {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 48px;
    line-height: 1.7;
}

.promise-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.promise-before,
.promise-after {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.promise-before h4,
.promise-after h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.promise-before ul,
.promise-after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promise-before li,
.promise-after li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promise-before li:last-child,
.promise-after li:last-child {
    border-bottom: none;
}

.promise-before .cross {
    color: var(--orange-500);
    font-weight: 700;
}

.promise-after .check {
    color: var(--success);
    font-weight: 700;
}

.promise-after {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

.promise-arrow {
    width: 48px;
    height: 48px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* Capabilities */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.capability-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: #34D399;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.capability-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.capability-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.capability-badge {
    background: #10B981;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.capability-tagline {
    font-size: 13px;
    color: #059669;
    font-weight: 500;
    margin-bottom: 12px;
}

.capability-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.capability-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cap-feature {
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gray-600);
}

.capability-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.cap-metric {
    text-align: center;
}

.cap-metric-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.cap-metric-label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
}

.capabilities-cta {
    text-align: center;
}

/* ROI Calculator */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.roi-calculator {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 36px;
    position: relative;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, var(--teal-400));
    border-radius: 20px 20px 0 0;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.calc-icon {
    font-size: 28px;
}

.calculator-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.slider-group {
    margin-bottom: 28px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
}

.slider-value-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
}

.slider-prefix {
    color: #34D399;
    font-weight: 600;
}

.slider-input {
    width: 80px;
    background: transparent;
    border: none;
    color: #34D399;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    outline: none;
}

.slider-input::-webkit-inner-spin-button,
.slider-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.slider-unit {
    color: var(--gray-400);
    font-size: 12px;
}

.slider-container {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
}

.slider-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: transparent;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    margin: 0;
}

.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    border: 3px solid var(--white);
}

.slider-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    cursor: grab;
    border: 3px solid var(--white);
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, var(--teal-400));
    border-radius: 4px;
    transition: width 0.1s ease;
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: var(--gray-400);
}

.roi-results {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 14px;
    padding: 24px;
    margin-top: 28px;
    margin-bottom: 24px;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-result-item:last-of-type {
    border-bottom: none;
}

.result-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.result-icon-sm {
    font-size: 18px;
}

.roi-result-item .result-label {
    font-size: 14px;
    color: var(--gray-300);
}

.result-tag {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
    transition: transform 0.15s;
}

.roi-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(16, 185, 129, 0.3);
}

.total-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.total-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #34D399, var(--teal-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.roi-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.roi-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #34D399;
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--success);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
}

/* Industries */
.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.industry-tab {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.industry-tab:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.industry-tab.active {
    background: #059669;
    border-color: #059669;
    color: var(--white);
}

.industry-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.industry-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.industry-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.industry-info > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.industry-use-cases {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-case {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.use-case:hover {
    background: var(--white);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.use-case-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.use-case-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.use-case-content p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

.industry-metrics-card {
    background: linear-gradient(135deg, #059669, var(--teal-700));
    border-radius: 20px;
    padding: 32px;
    color: var(--white);
}

.industry-metrics-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-bar-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.metric-bar-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.metric-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    background: var(--white);
    border-radius: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.industry-cta p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(to bottom, #10B981, var(--teal-400));
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.marker-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.marker-duration {
    font-size: 11px;
    font-weight: 600;
    color: #34D399;
    background: rgba(16, 185, 129, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #34D399;
    transform: translateX(8px);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: var(--white);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.faq-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #059669 0%, var(--teal-700) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.final-cta .cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

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

.cta-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.cta-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

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

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

.final-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 992px) {
    .rekon-hero .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; height: auto; min-height: 400px; }
    .rekon-hero .hero-content { text-align: center; max-width: 100%; }
    .hero-metrics { justify-content: center; }
    .rekon-hero .hero-buttons { justify-content: center; }
    .rekon-hero .hero-cta-note { justify-content: center; }
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-visual { grid-template-columns: 1fr; gap: 24px; }
    .promise-arrow { transform: rotate(90deg); margin: 0 auto; }
    .roi-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .problem-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .roi-stats { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .industry-tab { padding: 8px 14px; font-size: 12px; }
    .timeline::before { display: none; }
    .timeline-item { grid-template-columns: 1fr; gap: 16px; }
    .timeline-marker { flex-direction: row; }
    .cta-trust { flex-direction: column; align-items: center; gap: 12px; }
    .recon-stats { grid-template-columns: 1fr; }
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in { opacity: 1; transform: none; }
}
