/* ===== Variables ===== */
:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --primary-dark: #0d1642;
    --accent: #00897b;
    --accent-light: #4db6ac;
    --bg: #f5f7fa;
    --bg-white: #ffffff;
    --text: #1a1a2e;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --error: #ef4444;
    --error-bg: #fef2f2;
    --warning: #f59e0b;
    --warning-bg: #fffbeb;
    --success: #10b981;
    --success-bg: #ecfdf5;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== Layout ===== */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.main-content {
    flex: 1;
    padding: 40px 0;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar strong {
    color: #fff;
}

.top-bar-link {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: #fff;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-brand {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 34px;
    width: auto;
    display: block;
    /* logo.png is the white/light variant designed for dark backgrounds */
}

.nav-brand-product {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-left: 1px solid rgba(255,255,255,0.25);
    padding-left: 10px;
    line-height: 1;
}

.nav-chevron {
    margin-left: 4px;
    vertical-align: middle;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    padding: 56px 0 0;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col-brand {
    /* wider brand column */
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    /* mainlogo.png — use as-is; it has transparent bg */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-link {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: var(--accent-light);
}

.footer-heading {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-offices {
    margin-top: 24px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

.footer-offices-label {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent-light);
}

/* ===== Hero ===== */
.hero {
    text-align: center;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* ===== Cards ===== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}

/* ===== Upload Zone ===== */
.upload-card {
    margin-bottom: 40px;
}

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--accent);
    background: rgba(0, 137, 123, 0.04);
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.upload-hint {
    color: var(--text-light);
    margin-bottom: 8px;
}

.upload-formats {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== File Preview ===== */
.file-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--success-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.file-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    display: block;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    font-size: 0.85rem;
    color: var(--text-light);
}

.file-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.file-remove:hover {
    color: var(--error);
}

/* ===== Forms ===== */
.form-section {
    margin: 24px 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.form-section h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.optional-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 99px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--bg-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background: #00796b;
    box-shadow: var(--shadow);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== Alerts ===== */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
}

.alert-error {
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid #fecaca;
}

.alert-warning {
    background: var(--warning-bg);
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-success {
    background: var(--success-bg);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    color: inherit;
}

/* ===== How It Works ===== */
.how-it-works-section {
    padding: 60px 0;
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step {
    padding: 24px 16px;
    flex: 1;
    max-width: 280px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--accent);
}

/* ===== Loading Overlay ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
    color: #fff;
    padding: 40px;
}

.spinner {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.loading-step {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.loading-bar {
    width: 280px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 99px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-light);
    border-radius: 99px;
    animation: loading-progress 20s ease-out forwards;
}

@keyframes loading-progress {
    0%   { width: 0%; }
    10%  { width: 15%; }
    30%  { width: 40%; }
    50%  { width: 60%; }
    70%  { width: 75%; }
    90%  { width: 85%; }
    100% { width: 92%; }
}

/* ===== Error Page ===== */
.error-page {
    text-align: center;
    padding: 60px 0;
}

.error-page h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.error-page p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===== Nav Links ===== */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #fff;
}

/* ===== Stats ===== */
.stats-section {
    margin-top: 32px;
}

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

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Recent Profiles ===== */
.recent-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.recent-profile:last-child {
    border-bottom: none;
}

.recent-profile:hover {
    color: var(--accent);
}

.recent-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-muted {
    color: var(--text-muted);
}

/* ===== Browse / Profile Cards ===== */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.profile-card {
    text-decoration: none;
    color: var(--text);
    padding: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== Search ===== */
.search-row {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-light);
}

/* ===== Similarity ===== */
.similarity-score {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 99px;
    white-space: nowrap;
}

.badge-match {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

/* ===== Danger Button ===== */
.btn-danger {
    background: var(--error);
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
}

/* ===== Skill Badges (shared) ===== */
.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-tech {
    background: #e8eaf6;
    color: #283593;
}

.badge-soft {
    background: #e0f2f1;
    color: #00695c;
}

.badge-lang {
    background: #fff3e0;
    color: #e65100;
}

.badge-tool {
    background: #f3e5f5;
    color: #6a1b9a;
}

/* ===== Landing Hero ===== */
.landing-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px;
    margin: -40px -20px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--accent-light);
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn-cta-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--accent);
}

.btn-cta-primary:hover {
    background: #00796b;
    border-color: #00796b;
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.4);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

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

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

/* ===== Feature Tabs ===== */
.feature-tabs-section {
    padding: 60px 20px;
    background: var(--bg-white);
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.feature-tabs-section .container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-tab-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.feature-tab-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 99px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.feature-tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.feature-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.feature-tab-content {
    display: none;
}

.feature-tab-content.active {
    display: block;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 137, 123, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Landing Upload Section ===== */
.landing-upload-section {
    padding: 60px 0;
    background: var(--bg);
}

/* ===== Platform Stats Section ===== */
.platform-stats-section {
    padding: 48px 0;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}

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

.platform-stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.platform-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .landing-hero {
        padding: 60px 20px 40px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-tab-nav {
        flex-wrap: wrap;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .card {
        padding: 20px;
    }

    .upload-zone {
        padding: 32px 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .search-row {
        flex-direction: column;
    }

    .platform-stats {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .feature-tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ===== Form Control (shared) ===== */
.form-control {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

/* ===== Navigation Dropdown ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
    color: #fff;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

.nav-dropdown-item:hover {
    background: var(--bg);
    color: var(--accent);
}

.nav-dropdown-item svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.nav-dropdown-item:hover svg {
    color: var(--accent);
}

/* ===== Get Started CTA Button ===== */
.btn-nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--accent);
}

.btn-nav-cta:hover {
    background: #00796b;
    border-color: #00796b;
    box-shadow: 0 4px 16px rgba(0, 137, 123, 0.3);
}

/* ===== Hamburger Menu ===== */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
    z-index: 110;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
    display: none;
    background: var(--primary-dark);
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-menu.open {
    display: block;
}

.nav-mobile-link {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.15s;
}

.nav-mobile-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.nav-mobile-section {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px 4px;
}

.nav-mobile-cta {
    background: var(--accent);
    color: #fff !important;
    text-align: center;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    font-weight: 600;
}

.nav-mobile-cta:hover {
    background: #00796b;
}

/* ===== Hero Slider ===== */
.hero-slider {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    margin: -40px -20px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 80px 20px 40px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

/* ===== Hero Slider Controls ===== */
.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px 24px;
    position: relative;
    z-index: 10;
}

.hero-slider-arrow {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.hero-slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    border-color: #fff;
}

/* ===== Hero Stats Bar ===== */
.hero-stats-bar {
    background: rgba(0,0,0,0.15);
    padding: 24px 20px;
    backdrop-filter: blur(4px);
}

/* ===== Try Our Services Section ===== */
.try-services-section {
    padding: 60px 20px;
    background: var(--bg-white);
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.try-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.try-service-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.try-service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 137, 123, 0.12);
    transform: translateY(-4px);
}

.try-service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 137, 123, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.try-service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.try-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.try-service-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.try-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.try-service-features li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.try-service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.try-service-features li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 6px;
    height: 3px;
    border-left: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
}

/* ===== Developer Documentation Page ===== */
.docs-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: -20px auto 0;
    min-height: calc(100vh - 200px);
}

.docs-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.docs-sidebar-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.docs-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.docs-nav-link {
    display: block;
    padding: 8px 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all 0.15s;
}

.docs-nav-link:hover {
    color: var(--primary);
    background: var(--bg);
}

.docs-nav-link.active {
    color: var(--accent);
    background: rgba(0, 137, 123, 0.06);
    border-left-color: var(--accent);
    font-weight: 600;
}

.docs-nav-sub {
    padding-left: 28px;
    font-size: 0.85rem;
}

/* ===== Docs Content ===== */
.docs-content {
    min-width: 0;
    padding-bottom: 60px;
}

.docs-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.docs-section:last-child {
    border-bottom: none;
}

.docs-section h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.docs-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.docs-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.docs-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 8px;
}

.docs-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.docs-section p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.docs-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.docs-section a:hover {
    text-decoration: underline;
}

/* ===== Docs Lists ===== */
.docs-list {
    margin: 0 0 20px;
    padding-left: 24px;
}

.docs-list li {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ===== Docs Code Blocks ===== */
.docs-code-block {
    background: #1e1e2e;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 16px 0 20px;
}

.docs-code-header {
    background: #2a2a3e;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: lowercase;
}

.docs-code-block pre {
    padding: 16px 20px;
    margin: 0;
    overflow-x: auto;
    font-size: 0.85rem;
    line-height: 1.6;
}

.docs-code-block code {
    color: #a6e3a1;
    font-family: 'Cascadia Code', 'Fira Code', 'JetBrains Mono', Consolas, Monaco, 'Courier New', monospace;
    font-size: 0.85rem;
}

.docs-inline-code {
    background: #f0f0f5;
    color: #d63384;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Cascadia Code', 'Fira Code', Consolas, monospace;
    font-size: 0.85em;
}

/* ===== Docs Tables ===== */
.docs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 24px;
    font-size: 0.9rem;
}

.docs-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--bg);
    font-weight: 700;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    font-size: 0.85rem;
}

.docs-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
}

.docs-table tr:last-child td {
    border-bottom: none;
}

/* ===== Docs Endpoint Header ===== */
.docs-endpoint-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.docs-method {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.docs-method-get {
    background: #3b82f6;
}

.docs-method-post {
    background: #10b981;
}

.docs-method-put {
    background: #f59e0b;
}

.docs-method-delete {
    background: #ef4444;
}

.docs-endpoint-path {
    font-family: 'Cascadia Code', 'Fira Code', Consolas, monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

/* ===== Docs Status Badges ===== */
.docs-status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.docs-status-200 {
    background: #ecfdf5;
    color: #059669;
}

.docs-status-201 {
    background: #ecfdf5;
    color: #059669;
}

.docs-status-400 {
    background: #fef2f2;
    color: #dc2626;
}

.docs-status-401 {
    background: #fffbeb;
    color: #d97706;
}

/* ===== Docs Info & Warning Boxes ===== */
.docs-info-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0 24px;
    font-size: 0.9rem;
    color: #1e3a5f;
    line-height: 1.6;
}

.docs-info-box strong {
    color: #1e40af;
}

.docs-info-box code {
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Cascadia Code', 'Fira Code', Consolas, monospace;
    font-size: 0.85em;
}

.docs-warning-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0 24px;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
}

.docs-warning-box strong {
    color: #92400e;
}

/* ===== Responsive: Navigation ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .docs-sidebar {
        position: static;
        border-bottom: 1px solid var(--border);
        padding-bottom: 16px;
        margin-bottom: 24px;
        max-height: none;
    }

    .docs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .docs-nav-link {
        padding: 6px 10px;
        font-size: 0.8rem;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .docs-nav-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent);
    }

    .docs-nav-sub {
        padding-left: 10px;
    }

    .try-services-grid {
        grid-template-columns: 1fr;
    }

    .hero-slides {
        min-height: 380px;
    }

    .hero-slide {
        padding: 60px 20px 30px;
    }

    .hero-slider-controls {
        padding-bottom: 16px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: row;
        gap: 0;
    }

    .hero-slides {
        min-height: 360px;
    }

    .hero-slide {
        padding: 48px 16px 24px;
    }

    .try-service-card {
        padding: 28px 20px;
    }

    .docs-section h1 {
        font-size: 1.5rem;
    }

    .docs-section h2 {
        font-size: 1.25rem;
    }

    .docs-endpoint-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .docs-table {
        font-size: 0.8rem;
    }

    .docs-table th,
    .docs-table td {
        padding: 8px 10px;
    }

    .docs-code-block pre {
        padding: 12px 14px;
        font-size: 0.78rem;
    }

    .docs-lang-tabs {
        flex-wrap: wrap;
    }

    .docs-flow-step {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .docs-flow-number {
        margin: 0 auto;
    }
}

/* ===== Docs Language Tabs ===== */
.docs-lang-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.docs-lang-tab {
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.docs-lang-tab:hover {
    color: var(--accent);
}

.docs-lang-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.docs-lang-content {
    display: none;
}

.docs-lang-content.active {
    display: block;
}

/* ===== Docs Copy Button ===== */
.docs-code-block {
    position: relative;
}

.docs-copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #94a3b8;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.docs-copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ===== Docs Flow Diagram ===== */
.docs-flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 24px 0;
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.docs-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.docs-flow-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.docs-flow-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.docs-flow-text strong {
    font-size: 0.95rem;
    color: var(--text);
}

.docs-flow-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.docs-flow-arrow {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 4px 0;
}

/* ==========================================================================
   LANDING PAGE — Premium SaaS Marketing Design
   ========================================================================== */

/* ── Hero ── */
/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */

/* ── Background slide layers ── */
.lp-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hs {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.lp-hs-active {
    opacity: 1;
}

.lp-hs-img,
.lp-hs-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay — default: deep blue-black tint */
.lp-hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5, 8, 30, 0.72) 0%,
        rgba(10, 18, 60, 0.65) 50%,
        rgba(5, 8, 30, 0.75) 100%
    );
}

/* Tint variants for service slides */
.lp-hs-overlay-navy {
    background: linear-gradient(
        160deg,
        rgba(5, 10, 40, 0.78) 0%,
        rgba(0, 20, 80, 0.65) 50%,
        rgba(5, 10, 40, 0.78) 100%
    );
}

.lp-hs-overlay-deep {
    background: linear-gradient(
        160deg,
        rgba(10, 5, 40, 0.78) 0%,
        rgba(30, 10, 80, 0.65) 50%,
        rgba(10, 5, 40, 0.78) 100%
    );
}

.lp-hs-overlay-forest {
    background: linear-gradient(
        160deg,
        rgba(0, 20, 15, 0.80) 0%,
        rgba(0, 50, 35, 0.65) 50%,
        rgba(0, 20, 15, 0.80) 100%
    );
}

/* ── Content slides ── */
.lp-sc {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(18px);
    will-change: opacity, transform;
    transition: opacity 0.75s ease, transform 0.75s ease;
    pointer-events: none;
    z-index: 2;
}

.lp-sc-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Slide 0: centred content wrapper ── */
.lp-sc-center-wrap {
    width: 100%;
    max-width: 820px;
    padding: 90px 32px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Service slides: 2-column split ── */
.lp-sc-split {
    width: 100%;
    max-width: 1160px;
    padding: 90px 48px 110px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: center;
}

.lp-sc-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* ── Service stat panel (right column) ── */
.lp-svc-panel {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-svc-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #4db6ac;
}

.lp-svc-panel-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.lp-svc-panel-stat {
    display: flex;
    flex-direction: column;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-svc-panel-stat:last-child {
    border-bottom: none;
}

.lp-svc-stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2px;
}

.lp-svc-stat-lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-svc-panel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(77,182,172,0.15);
    border: 1px solid rgba(77,182,172,0.3);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4db6ac;
    text-decoration: none;
    transition: background 0.2s;
}

.lp-svc-panel-link:hover {
    background: rgba(77,182,172,0.25);
}

/* ── Service slide content ── */
.lp-svc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 7px 16px 7px 10px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-svc-logo {
    height: 22px;
    width: auto;
}

.lp-svc-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 20px;
}

.lp-svc-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin-bottom: 24px;
}

.lp-svc-features {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.lp-svc-features li svg {
    flex-shrink: 0;
    color: #4db6ac;
}

/* ── Slider navigation ── */
.lp-slider-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 4;
}

.lp-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.lp-slider-arrow:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
}

.lp-slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lp-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
    padding: 0;
}

.lp-slider-dot.lp-dot-active {
    width: 28px;
    background: #fff;
}

/* ── Autoplay progress bar ── */
.lp-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.12);
    z-index: 4;
}

.lp-slider-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-light);
    will-change: width;
}

/* ── Utility ── */
.lp-center-cta {
    text-align: center;
    margin-top: 32px;
}

.lp-center-cta-sm {
    text-align: center;
    margin-top: 20px;
}

/* ── Main hero ── */
.lp-hero {
    position: relative;
    overflow: hidden;
    /* Gradient is fallback when images haven't loaded */
    background: linear-gradient(160deg, #0a0e27 0%, #111b47 40%, #1a237e 70%, #283593 100%);
    color: #fff;
    min-height: 620px;
    text-align: center;
    padding: 0;
    margin: -40px -20px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.lp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.lp-hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 137, 123, 0.15);
    top: -100px;
    right: -100px;
}

.lp-hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(57, 73, 171, 0.2);
    bottom: -80px;
    left: -80px;
}

.lp-hero-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.lp-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4db6ac;
    will-change: opacity, transform;
    animation: lp-pulse 2s ease-in-out infinite;
}

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

.lp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    white-space: nowrap;
}

.lp-hero-title-accent {
    color: #fff;
}

/* Rotating Words */
.lp-rotate-words {
    display: inline-block;
    position: relative;
    min-width: 0;
}

.lp-rotate-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(-40deg);
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    color: #fff;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lp-rotate-word.lp-rotate-active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    position: relative;
}

/* Yellow underline highlight */
.lp-rotate-word.lp-word-underline::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -6px;
    height: 5px;
    background: #fbbf24;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
    animation: underline-slide-in 0.45s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes underline-slide-in {
    to { transform: scaleX(1); }
}

/* Description Rotator */
.lp-hero-sub-rotator {
    position: relative;
    min-height: 80px;
    max-width: 600px;
    margin: 0 auto 36px;
}

.lp-hero-sub-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    margin: 0;
}

.lp-hero-sub-slide.lp-hero-sub-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.lp-hero-sub-slide.lp-hero-sub-exit {
    opacity: 0;
    transform: translateY(-12px);
}

.lp-hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 36px;
}

.lp-hero-sub strong {
    color: #fff;
    font-weight: 600;
}

.lp-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* ── Buttons ── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}

.lp-btn-primary {
    background: linear-gradient(135deg, #00897b, #00796b);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.35);
}

.lp-btn-primary:hover {
    box-shadow: 0 6px 28px rgba(0, 137, 123, 0.5);
    transform: translateY(-2px);
}

.lp-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.lp-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.lp-btn-ghost-dark {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
}

.lp-btn-ghost-dark:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.lp-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.lp-btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

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

.lp-btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ── Metrics Bar ── */
.lp-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 40px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    max-width: 720px;
    margin: 0 auto;
}

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

.lp-metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.lp-metric-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.lp-metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* ── Trust Bar ── */
/* ── Trust Bar / Scrolling Ticker ── */
.lp-trust-bar {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    /* full-bleed across container */
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

.lp-trust-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Ticker container — clips the scrolling track and fades edges */
.lp-trust-ticker {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* The scrolling track — doubled content for seamless loop */
.lp-trust-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
    animation: trust-ticker 35s linear infinite;
}

.lp-trust-track:hover {
    animation-play-state: paused;
}

@keyframes trust-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Individual org item */
.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--org-color, var(--text-muted));
}

.lp-trust-wordmark {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--org-color, var(--text));
    letter-spacing: 0.02em;
}

.lp-trust-subtext {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ── Org colour tokens ── */
.lp-org-wb       { --org-color: #009FDA; }
.lp-org-un       { --org-color: #009EDB; }
.lp-org-eu       { --org-color: #003399; }
.lp-org-ofac     { --org-color: #1a3a5c; }
.lp-org-interpol { --org-color: #003580; }
.lp-org-hmt      { --org-color: #012169; }
.lp-org-afdb     { --org-color: #006B3F; }
.lp-org-adb      { --org-color: #E31837; }
.lp-org-fatf     { --org-color: #5c2d91; }
.lp-org-ofsi     { --org-color: #b22234; }
.lp-org-seco     { --org-color: #d52b1e; }
.lp-org-dfat     { --org-color: #00843d; }

/* ── Section Common ── */
.lp-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.lp-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: rgba(0, 137, 123, 0.08);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.lp-section-tag-light {
    color: #4db6ac;
    background: rgba(77, 182, 172, 0.15);
}

.lp-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.lp-section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Products Section ── */
.lp-products {
    padding: 80px 20px;
    background: var(--bg);
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.lp-product-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 36px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.lp-product-card.lp-revealed {
    opacity: 1;
    transform: translateY(0);
}

.lp-product-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}

.lp-product-card.lp-revealed:hover {
    transform: translateY(-4px);
}

.lp-product-card-dark {
    background: linear-gradient(160deg, #111b47 0%, #1a237e 100%);
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}

.lp-product-card-dark:hover {
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.3);
}

.lp-product-card-dark .lp-product-title {
    color: #fff;
}

.lp-product-card-dark .lp-product-desc {
    color: rgba(255,255,255,0.7);
}

.lp-product-card-dark .lp-product-features li {
    color: rgba(255,255,255,0.8);
}

.lp-product-card-dark .lp-product-features svg {
    color: #4db6ac;
}

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

.lp-product-icon svg {
    width: 28px;
    height: 28px;
}

.lp-product-icon-cv {
    background: rgba(0, 137, 123, 0.1);
    color: var(--accent);
}

.lp-product-icon-sanctions {
    background: rgba(77, 182, 172, 0.15);
    color: #4db6ac;
}

.lp-product-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.lp-product-label-light {
    color: #80cbc4;
}

.lp-product-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.lp-product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.lp-product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.lp-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 0;
}

.lp-product-features svg {
    color: var(--accent);
    flex-shrink: 0;
}

.lp-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}

.lp-product-cta:hover {
    gap: 12px;
}

.lp-product-cta-light {
    color: #80cbc4;
}

/* ── How It Works ── */
.lp-how {
    padding: 80px 20px;
    background: #fff;
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.lp-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.lp-step.lp-revealed {
    opacity: 1;
    transform: translateY(0);
}

.lp-step-num {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.lp-step-line {
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    width: calc(100% - 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--border));
    z-index: 1;
}

.lp-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.lp-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Features ── */
.lp-features {
    padding: 80px 20px;
    background: var(--bg);
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-feature {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.lp-feature.lp-revealed {
    opacity: 1;
    transform: translateY(0);
}

.lp-feature:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.lp-feature.lp-revealed:hover {
    transform: translateY(-3px);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.1), rgba(0, 137, 123, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.lp-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.lp-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.lp-feature p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── Coverage Section ── */
.lp-coverage {
    padding: 80px 20px;
    background: linear-gradient(160deg, #0a0e27 0%, #111b47 50%, #1a237e 100%);
    color: #fff;
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-coverage-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.lp-coverage-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.lp-coverage-regions {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 16px 24px;
}

.lp-region {
    text-align: center;
}

.lp-region-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #4db6ac;
}

.lp-region-name {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-big-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.lp-big-stat.lp-revealed {
    opacity: 1;
    transform: translateX(0);
}

.lp-big-stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
}

.lp-big-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ── Upload Section ── */
.lp-upload {
    padding: 80px 0;
    background: #fff;
}

.lp-upload-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 40px;
    border: 1px solid var(--border);
    max-width: 560px;
    margin: 0 auto;
}

.lp-upload-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.1), rgba(0, 137, 123, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lp-upload-icon-wrap .upload-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
}

/* ── Code Preview ── */
.lp-integration {
    padding: 80px 20px;
    background: var(--bg);
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-code-preview {
    max-width: 640px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.lp-code-header {
    background: #2a2a3e;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-code-dots {
    display: flex;
    gap: 6px;
}

.lp-code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.lp-code-dots span:first-child { background: #ff5f57; }
.lp-code-dots span:nth-child(2) { background: #febc2e; }
.lp-code-dots span:nth-child(3) { background: #28c840; }

.lp-code-filename {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-family: 'Cascadia Code', 'Fira Code', Consolas, monospace;
}

.lp-code-body {
    background: #1e1e2e;
    padding: 24px;
    margin: 0;
    overflow-x: auto;
}

.lp-code-body code {
    font-family: 'Cascadia Code', 'Fira Code', 'JetBrains Mono', Consolas, monospace;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #cdd6f4;
}

.lp-code-kw { color: #cba6f7; }
.lp-code-str { color: #a6e3a1; }
.lp-code-num { color: #fab387; }

.lp-lang-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.lp-lang-badge {
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    background: #fff;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.lp-lang-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ── Live Data Section ── */
.lp-live-data {
    padding: 60px 20px;
    background: #fff;
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-skills-showcase {
    background: var(--bg);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.lp-skills-showcase h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.lp-skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.lp-skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    background: #e8eaf6;
    transition: all 0.2s;
}

.lp-skill-tag:hover {
    background: var(--primary);
    color: #fff;
}

.lp-skill-tag em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.7;
}

.lp-skill-tag:hover em {
    color: rgba(255,255,255,0.7);
}

.lp-recent {
    background: var(--bg);
    border-radius: 16px;
    padding: 32px;
}

.lp-recent h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.lp-recent-list {
    display: flex;
    flex-direction: column;
}

.lp-recent-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text);
    border-radius: 10px;
    transition: background 0.2s;
}

.lp-recent-item:hover {
    background: rgba(0, 137, 123, 0.05);
}

.lp-recent-item svg {
    color: var(--text-muted);
    margin-left: auto;
}

.lp-recent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-recent-info {
    display: flex;
    flex-direction: column;
}

.lp-recent-info strong {
    font-size: 0.95rem;
    color: var(--text);
}

.lp-recent-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Final CTA ── */
.lp-final-cta {
    padding: 80px 20px;
    background: linear-gradient(160deg, #0a0e27 0%, #111b47 50%, #1a237e 100%);
    margin: 0 -20px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.lp-final-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lp-final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.lp-final-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .lp-product-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .lp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-coverage-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-coverage-stats {
        flex-direction: row;
    }

    .lp-coverage-regions {
        grid-template-columns: repeat(4, auto);
    }
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 72px 20px 48px;
    }

    .lp-hero-title {
        font-size: 2.5rem;
    }

    .lp-metrics {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
    }

    .lp-metric-divider {
        display: none;
    }

    .lp-metric {
        min-width: 100px;
    }

    .lp-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-step-line {
        display: none;
    }

    .lp-feature-grid {
        grid-template-columns: 1fr;
    }

    .lp-coverage-stats {
        flex-direction: column;
    }

    .lp-section-title {
        font-size: 1.75rem;
    }

    .lp-trust-logos {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .lp-hero-title {
        font-size: 2rem;
    }

    .lp-hero-sub {
        font-size: 1rem;
    }

    .lp-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .lp-product-card {
        padding: 32px 24px;
    }

    .lp-upload-card {
        padding: 28px 20px;
    }

    .lp-coverage-regions {
        grid-template-columns: repeat(3, auto);
    }

    .lp-code-body code {
        font-size: 0.78rem;
    }
}

/* ===== Hero Slider Responsive ===== */
@media (max-width: 1024px) {
    .lp-sc-split {
        grid-template-columns: 1fr;
        padding: 80px 32px 110px;
    }

    .lp-sc-right {
        display: none;
    }

    .lp-sc-left {
        align-items: center;
        text-align: center;
    }

    .lp-svc-features {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .lp-hero {
        min-height: 600px;
    }

    .lp-sc-center-wrap,
    .lp-sc-split {
        padding: 80px 24px 110px;
    }

    .lp-svc-title {
        font-size: 2.2rem;
    }

    .lp-slider-nav {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .lp-svc-title {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }

    .lp-svc-desc {
        font-size: 0.95rem;
    }

    .lp-slider-arrow {
        display: none;
    }
}

/* ===== Branding Responsive ===== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.72rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
