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

:root {
    --primary: #2E5CFF;
    --secondary: #6B4EFF;
    --accent: #00D4AA;
    --blue: #1A73E8;
    --purple: #7C3AED;
    --dark: #0A1929;
    --gray: #6C757D;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #2E5CFF 0%, #6B4EFF 100%);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.menu-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-burger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 107, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-text {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric {
    text-align: left;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

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

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Showcase - Dashboard */
.hero-showcase {
    position: relative;
}

.hero-dashboard {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-icon {
    font-size: 32px;
}

.dashboard-title h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.dashboard-title p {
    font-size: 13px;
    color: var(--gray);
    margin: 4px 0 0 0;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 212, 170, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-card {
    background: white;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-info .stat-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.stat-info .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--accent);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.chart-section {
    background: white;
    padding: 32px;
}

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

.chart-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.chart-period {
    font-size: 13px;
    color: var(--gray);
    background: rgba(0, 0, 0, 0.04);
    padding: 6px 12px;
    border-radius: 6px;
}

.chart-visual {
    position: relative;
}

.chart-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 200px;
    padding: 0 8px;
}

.chart-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.chart-column.active .chart-label {
    color: var(--primary);
    font-weight: 700;
}

.chart-bar-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.chart-bar {
    width: 100%;
    background: var(--gradient);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s;
    position: relative;
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar::before {
    content: attr(data-value);
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.chart-bar:hover::before {
    opacity: 1;
}

.chart-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.activity-section {
    background: #F8F9FA;
    padding: 32px 28px;
}

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

.activity-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.activity-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: grid;
    grid-template-columns: 32px 1fr auto auto;
    gap: 12px;
    align-items: center;
    background: white;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.activity-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(46, 92, 255, 0.1);
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.activity-icon.success {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
}

.activity-details {
    min-width: 0;
}

.activity-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.activity-meta {
    font-size: 11px;
    color: var(--gray);
}

.activity-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.activity-time {
    font-size: 11px;
    color: var(--gray);
    white-space: nowrap;
}

.dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 24px 32px;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.footer-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.footer-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
}

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

.section-heading {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-description {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    background: var(--white);
}

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

.solution-card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.solution-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.solution-header {
    margin-bottom: 20px;
}

.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-text {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    padding: 10px 0;
    color: var(--gray);
    font-size: 15px;
    position: relative;
    padding-left: 28px;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

/* Coverage Section */
.coverage {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.coverage-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.overview-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.overview-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.overview-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.market-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

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

.market-flag {
    font-size: 48px;
    line-height: 1;
}

.market-badge {
    background: rgba(46, 92, 255, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-badge.growing {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
}

.market-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.market-volume {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 500;
}

.market-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
}

.market-stat {
    text-align: center;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.market-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.method-tag {
    background: rgba(0, 0, 0, 0.04);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.method-tag:hover {
    background: rgba(46, 92, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

/* Clients Section */
.clients {
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.client-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.client-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

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

.client-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-shape {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-letter {
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.client-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.client-badge {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.client-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--light);
    border-radius: 12px;
}

.client-metric {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-metric .metric-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-metric .metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Developers Section */
.developers {
    background: var(--dark);
    color: white;
}

.developers .section-label {
    background: rgba(255, 107, 107, 0.2);
}

.developers .section-title,
.developers .section-description {
    color: white;
}

.developers-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.dev-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dev-feature {
    display: flex;
    gap: 20px;
}

.dev-feature-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.dev-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dev-feature-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.dev-code {
    position: relative;
}

.code-window {
    background: #0D1117;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-window-header {
    background: #161B22;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #FF5F56; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #27C93F; }

.code-tabs {
    display: flex;
    gap: 8px;
}

.code-tab {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.code-tab.active {
    background: rgba(255, 107, 107, 0.2);
    color: var(--primary);
}

.code-content {
    padding: 24px;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
}

.code-content code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.7;
    color: #E6EDF3;
}

.api-reference {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
}

.api-reference-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.endpoints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.endpoint {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.endpoint:hover {
    background: rgba(255, 255, 255, 0.08);
}

.endpoint-method {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.endpoint-method.post {
    background: #10B981;
}

.endpoint-method.get {
    background: #3B82F6;
}

.endpoint-path {
    font-family: 'Monaco', monospace;
    font-size: 13px;
    color: var(--secondary);
    flex: 1;
}

.endpoint-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.price-header {
    text-align: center;
    margin-bottom: 32px;
}

.price-plan {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.price-period {
    font-size: 15px;
    color: var(--gray);
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
}

.feature-included {
    color: var(--dark);
}

.feature-excluded {
    color: var(--gray);
    opacity: 0.5;
}

.price-button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.price-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.price-button.primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.price-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-left .section-label {
    margin-bottom: 20px;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.info-icon {
    font-size: 32px;
}

.info-label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.info-value {
    font-weight: 600;
    font-size: 16px;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

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

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

/* Page Header Styles */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    text-align: center;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Variations */
.section-white {
    background: white;
    padding: 100px 0;
}

.section-gray {
    background: var(--light);
    padding: 100px 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-visual {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(46, 92, 255, 0.1) 0%, rgba(107, 78, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(46, 92, 255, 0.2);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 16px;
}

.placeholder-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
}

/* Stats Inline */
.stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-inline {
    text-align: left;
}

.stat-value-lg {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label-sm {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(46, 92, 255, 0.1) 0%, rgba(107, 78, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(46, 92, 255, 0.1) 0%, rgba(107, 78, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--gray);
}

.blog-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    gap: 12px;
    transition: gap 0.3s;
}

/* Documentation Styles */
.doc-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.doc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.doc-nav {
    list-style: none;
}

.doc-nav-item {
    margin-bottom: 8px;
}

.doc-nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.doc-nav-link:hover,
.doc-nav-link.active {
    background: rgba(46, 92, 255, 0.1);
    color: var(--primary);
}

.doc-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 16px;
}

.doc-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 12px;
}

.doc-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.doc-content code {
    background: rgba(46, 92, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Monaco', monospace;
    font-size: 14px;
    color: var(--primary);
}

.doc-code-block {
    background: #0D1117;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}

.doc-code-block code {
    background: transparent;
    color: #E6EDF3;
    padding: 0;
}

/* Active nav link styling */
.nav-links a.active {
    color: var(--primary);
    position: relative;
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-showcase {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .developers-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-burger {
        display: flex;
    }
    
    .hero-heading {
        font-size: 42px;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .metric-divider {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-dashboard {
        border-radius: 16px;
        margin: 0 -20px;
    }
    
    .dashboard-header {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .dashboard-title h3 {
        font-size: 18px;
    }
    
    .dashboard-title p {
        font-size: 12px;
    }
    
    .title-icon {
        font-size: 24px;
    }
    
    .dashboard-status {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: row;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .stat-info .stat-label {
        font-size: 11px;
    }
    
    .stat-info .stat-value {
        font-size: 24px;
    }
    
    .stat-change {
        font-size: 11px;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .chart-section {
        padding: 24px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .chart-header {
        margin-bottom: 20px;
    }
    
    .chart-title {
        font-size: 14px;
    }
    
    .chart-period {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .chart-bars {
        gap: 6px;
        height: 140px;
        padding: 0;
    }
    
    .chart-label {
        font-size: 10px;
    }
    
    .chart-bar::before {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .activity-section {
        padding: 24px 20px;
    }
    
    .activity-header {
        margin-bottom: 16px;
    }
    
    .activity-title {
        font-size: 14px;
    }
    
    .activity-live {
        font-size: 11px;
    }
    
    .activity-list {
        gap: 10px;
    }
    
    .activity-item {
        grid-template-columns: 28px 1fr;
        gap: 10px;
        padding: 12px;
    }
    
    .activity-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .activity-desc {
        font-size: 12px;
    }
    
    .activity-meta {
        font-size: 10px;
    }
    
    .activity-amount {
        grid-column: 2;
        text-align: right;
        font-size: 13px;
        margin-top: 4px;
    }
    
    .activity-time {
        grid-column: 2;
        text-align: right;
        font-size: 10px;
        margin-top: 2px;
    }
    
    .dashboard-footer {
        padding: 20px;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .footer-item {
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .footer-item:last-child {
        border-bottom: none;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-label {
        font-size: 12px;
    }
    
    .footer-value {
        font-size: 14px;
    }
    
    .coverage-overview {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .overview-card {
        padding: 24px;
    }
    
    .overview-number {
        font-size: 36px;
    }
    
    .overview-label {
        font-size: 12px;
    }
    
    .market-card {
        padding: 24px;
    }
    
    .market-flag {
        font-size: 36px;
    }
    
    .market-name {
        font-size: 22px;
    }
    
    .market-volume {
        font-size: 13px;
    }
    
    .market-stats-row {
        padding: 16px;
    }
    
    .stat-num {
        font-size: 20px;
    }
    
    .stat-lbl {
        font-size: 10px;
    }
    
    .method-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 1024px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .coverage-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Legal Pages (Privacy, Terms) */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #4B5563;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: #4B5563;
}

.legal-section ul li strong {
    color: var(--dark);
}

.contact-box {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    margin-top: 16px;
}

.contact-box p {
    margin-bottom: 8px;
}

/* Compliance Page */
.compliance-intro {
    padding: 32px 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.compliance-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    margin-bottom: 20px;
}

.compliance-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.compliance-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.compliance-list {
    list-style: none;
    padding: 0;
}

.compliance-list li {
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
    color: #475569;
}

.compliance-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

.section-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-center p {
    font-size: 18px;
    color: #64748b;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.security-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.security-icon {
    margin-bottom: 16px;
}

.security-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.security-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.regulatory-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    transition: border-color 0.3s;
}

.regulatory-card:hover {
    border-color: var(--primary);
}

.regulatory-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.regulatory-list {
    list-style: none;
    padding: 0;
}

.regulatory-list li {
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

.regulatory-list li strong {
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.aml-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.aml-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.aml-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.aml-section p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.7;
}

.aml-section ul {
    list-style: none;
    padding: 0;
}

.aml-section ul li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    color: #475569;
}

.aml-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-size: 20px;
}

.data-protection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.data-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

.data-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(46, 92, 255, 0.1);
}

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

.data-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.incident-timeline {
    max-width: 800px;
    margin: 48px auto 0;
    position: relative;
}

.incident-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(46, 92, 255, 0.3);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* Responsive Styles for Compliance Pages */
@media (max-width: 768px) {
    .compliance-grid,
    .regulatory-grid,
    .aml-content {
        grid-template-columns: 1fr;
    }
    
    .security-grid,
    .data-protection-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-card,
    .regulatory-card,
    .aml-section {
        padding: 24px;
    }
    
    .section-header-center h2 {
        font-size: 28px;
    }
    
    .incident-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

