/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.6;
}

/* === NAVIGATION === */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 16px 40px;
    gap: 40px;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 130px;
    height: 100%;
    text-decoration: none;
    border: none;
    border-bottom: none;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo svg {
    width: 24px;
    height: 24px;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    transition: color 0.3s;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 320px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 200;
    margin-top: 8px;
    border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
    border-radius: 6px;
    margin: 4px 8px;
}

.dropdown-item:hover {
    background: #f0f4ff;
}

.dropdown-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.dropdown-icon {
    font-size: 1.5rem;
    min-width: 24px;
    display: flex;
    align-items: center;
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.3;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: auto;
    height: 100%;
}

.nav-login {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-login:hover {
    color: #2563eb;
    background: #f0f4ff;
}

.nav-register {
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-register:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

/* === HERO SECTION === */
/* === HERO SECTION === */
.hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-grid-pattern {
    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: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #334155;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: #60a5fa;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientFlow 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn-primary {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn.full-width {
    width: 100%;
}

.hero-trust-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.trust-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    opacity: 0.6;
    transition: opacity 0.3s;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-1 {
    width: 280px;
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    width: 300px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

.card-3 {
    width: 260px;
    bottom: 10px;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #f1f5f9;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
}

.card-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-line {
    height: 8px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.line-1 { width: 100%; }
.line-2 { width: 80%; animation-delay: 0.3s; }
.line-3 { width: 60%; animation-delay: 0.6s; }

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

.card-frames {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.frame {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: frameGlow 3s ease-in-out infinite;
}

.frame:nth-child(1) { animation-delay: 0s; }
.frame:nth-child(2) { animation-delay: 0.5s; }
.frame:nth-child(3) { animation-delay: 1s; }
.frame:nth-child(4) { animation-delay: 1.5s; }

@keyframes frameGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(139, 92, 246, 0); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
}

.card-avatars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.avatar-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.avatar-2 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    margin-left: -12px;
}

.avatar-3 {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    margin-left: -12px;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-left: -12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-stats {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: slideIn 1s ease-out;
}

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

.stat-icon {
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* === HOME REDESIGN === */
.home {
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

.home a {
    color: inherit;
}

.home-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.08), transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(15, 23, 42, 0.06), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(15, 23, 42, 0.05), transparent 40%);
}

.home-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: homeFloat 18s ease-in-out infinite;
}

.home-orb.orb-one {
    width: 420px;
    height: 420px;
    background: #e2e8f0;
    top: -120px;
    right: 5%;
}

.home-orb.orb-two {
    width: 360px;
    height: 360px;
    background: #f1f5f9;
    bottom: 10%;
    left: -120px;
    animation-delay: -4s;
}

.home-orb.orb-three {
    width: 280px;
    height: 280px;
    background: #cbd5e1;
    top: 45%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -8s;
}

.home-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

@keyframes homeFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.navbar--dark {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-logo--dark,
.nav-logo--dark span {
    color: #0f172a;
}

.navbar--dark .nav-link {
    color: #475569;
}

.navbar--dark .nav-link:hover {
    color: #0f172a;
    border-bottom-color: #2563eb;
}

.navbar--dark .nav-login {
    color: #475569;
}

.nav-register--glow {
    background: #0f172a;
    border: 1px solid #0f172a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
    padding: 140px 40px 80px;
    max-width: 1250px;
    margin: 0 auto;
    align-items: center;
}

.home-hero__content h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.home-hero__content p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.hero-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.metric {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.metric span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
}

.home-hero__visual {
    display: flex;
    justify-content: center;
}

.hero-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.hero-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    gap: 12px;
}

.panel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.7);
    margin-right: 6px;
}

.panel-title {
    font-size: 0.85rem;
    color: #64748b;
    flex: 1;
}

.panel-chip {
    background: #f1f5f9;
    color: #334155;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-panel__body {
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 360px;
}

.panel-sidebar {
    padding: 20px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-card {
    height: 14px;
    border-radius: 999px;
    background: #e2e8f0;
}

.panel-card--highlight {
    height: 32px;
    border-radius: 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.panel-pill {
    margin-top: auto;
    text-align: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
}

.panel-canvas {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.panel-preview {
    position: relative;
    border-radius: 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    height: 180px;
    overflow: hidden;
}

.preview-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.12), transparent 70%);
}

.preview-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #1e293b;
}

.panel-stack {
    display: grid;
    gap: 10px;
}

.panel-note {
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #64748b;
}

.panel-note strong {
    display: block;
    color: #0f172a;
    margin-bottom: 6px;
}

.panel-line {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
}

.trusted {
    padding: 40px 20px 80px;
    text-align: center;
    color: #64748b;
}

.trusted__label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.trusted__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
    opacity: 0.6;
}

.home-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-headline h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 16px;
    color: #0f172a;
}

.section-headline p {
    color: #64748b;
    font-size: 1.05rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #334155;
    margin-bottom: 12px;
}

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

.card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.card h3 {
    color: #0f172a;
    margin-bottom: 12px;
}

.card p {
    color: #64748b;
    font-size: 0.98rem;
}

.card-tag {
    display: inline-block;
    margin-top: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 600;
}

.showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.showcase-content h2 {
    margin-bottom: 16px;
}

.showcase-content p {
    color: #64748b;
    margin-bottom: 20px;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.showcase-tags span {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: #475569;
}

.showcase-panels {
    display: grid;
    gap: 20px;
}

.showcase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
}

.showcase-card h3 {
    color: #0f172a;
    margin-bottom: 8px;
}

.showcase-lines {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.showcase-lines span {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
}

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

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    color: #0f172a;
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.pricing-card p {
    color: #64748b;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}

.pricing-card li {
    color: #475569;
}

.price {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 16px 0 8px;
    color: #0f172a;
}

.pricing-card--featured {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.faq {
    padding-top: 60px;
}

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

.faq-grid article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.faq-grid h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-grid p {
    color: #64748b;
}

.cta {
    padding: 80px 40px 120px;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 80px 24px;
    color: #0f172a;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.cta-card h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 16px;
}

.cta-card p {
    color: #64748b;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.footer--dark {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
}

.footer--dark .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.footer--dark h4 {
    color: #0f172a;
}

.footer--dark a {
    color: #475569;
}

.footer--dark a:hover {
    color: #0f172a;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
}

@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 1fr;
    }

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

    .hero-panel__body {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.12);
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .home-hero {
        padding: 120px 24px 60px;
    }

    .home-section {
        padding: 80px 24px;
    }

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

    .hero-metrics {
        flex-direction: column;
    }
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-text {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
    padding: 80px 40px;
    background: #fff;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.step-card {
    background: #f8fafc;
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

/* === FEATURES SECTION === */
.products-highlight-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.products-highlight-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-highlight-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.feature-large-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    text-align: left;
}

.feature-large-card:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.feature-large-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-large-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-large-card p {
    color: #64748b;
    line-height: 1.6;
}

/* === USE CASES SECTION === */
.use-cases-section {
    padding: 80px 40px;
    background: #fff;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
}

.use-cases-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.use-case-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
    border-color: #2563eb;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #0f172a;
}

.use-case-card p {
    color: #64748b;
    line-height: 1.6;
}

/* === PRICING SECTION === */
.pricing-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 48px 0;
}

.toggle-label {
    color: #475569;
    font-weight: 500;
}

.save-label {
    background: #d4fc79;
    color: #365a0f;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 4px;
}

.billing-toggle {
    width: 50px;
    height: 28px;
    appearance: none;
    background: #cbd5e1;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.billing-toggle:checked {
    background: #2563eb;
}

.billing-toggle::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
}

.billing-toggle:checked::before {
    left: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    padding: 40px 28px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 0;
}

.currency {
    font-size: 1.5rem;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.price-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin: 28px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 80px 40px;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #2563eb;
}

.stars {
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
}

.author-title {
    font-size: 0.85rem;
    color: #64748b;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.cta-buttons .btn-primary {
    background: #fff;
    color: #2563eb;
}

.cta-buttons .btn-primary:hover {
    background: #f0f4ff;
    color: #1d4ed8;
}

.cta-buttons .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* === FOOTER === */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 40px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

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

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

    .hero-stats {
        gap: 32px;
    }

    .steps-grid, .use-cases-grid, .testimonials-grid, .pricing-grid, .features-grid-large {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .animation-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .section-subtitle, .hero-title, .products-highlight-section h2, .how-it-works h2, .use-cases-container h2, .pricing-section h2, .testimonials-section h2, .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons, .hero-buttons {
        flex-direction: column;
    }

    .btn, .btn.btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-register, .nav-login {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

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

    .stat-value {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 24px;
    }
}
/* === STATS SECTION === */
.stats-section {
    width: 100%;
    background: #f8fafc;
    padding: 64px 32px;
    display: none;
}

.stat-card {
    display: none;
}

/* === SERVICES SECTION === */
.services-section {
    width: 100%;
    background: #f8fafc;
    padding: 64px 32px;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    width: 100%;
    margin: 0 auto 48px auto;
    max-width: 600px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    width: 100%;
}

.service-card {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-card:hover {
    box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.15);
    transform: translateY(-8px) translateX(2px);
    border-left-color: #2563eb;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === FEATURES SECTION === */
.features-section {
    width: 100%;
    background: #fff;
    padding: 64px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.features-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    width: 100%;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,0.04);
}

.feature-item:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #eff6ff 100%);
    border-color: #2563eb;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px 0 rgba(37, 99, 235, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === ABOUT SECTION === */
.about-section {
    width: 100%;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    padding: 80px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.brand-name {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.05);
}

.highlight-item:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px) translateX(2px);
    box-shadow: 0 4px 12px 0 rgba(37, 99, 235, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-section {
    width: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    padding: 80px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.cta-section .btn-primary,
.cta-section .btn-large {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #a3e635 0%, #84cc16 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px 0 rgba(163, 230, 53, 0.2);
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 10px 32px 0 rgba(163, 230, 53, 0.35);
}

/* === FOOTER === */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 64px 32px 24px 32px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-section p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #a3e635;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-container {
        padding: 12px 16px;
    }

    .hero-container {
        padding: 60px 24px;
        gap: 48px;
    }

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

    .visual-card.card-1 {
        width: 240px;
    }

    .visual-card.card-2 {
        width: 260px;
    }

    .visual-card.card-3 {
        width: 220px;
    }

    .floating-stats {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .nav-logo {
        min-width: 100%;
    }

    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex: 0;
    }

    .nav-right {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .hero-container {
        flex-direction: column;
        padding: 48px 20px;
        gap: 48px;
    }

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

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

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        min-height: 400px;
        margin-top: 20px;
    }

    .visual-card {
        width: 90% !important;
        max-width: 280px;
    }

    .visual-card.card-1 {
        top: 10px;
        left: 10px;
        position: absolute;
    }

    .visual-card.card-2 {
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
    }

    .visual-card.card-3 {
        top: 240px;
        right: 10px;
        left: auto;
        bottom: auto;
    }

    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 360px;
        transform: none;
    }

    .trust-logos {
        justify-content: center;
    }

    .products-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 16px;
        gap: 16px;
    }

    .products-card-icon {
        margin-right: 0;
    }

    .use-cases-grid,
    .stats-container,
    .services-container,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .services-section,
    .features-section,
    .about-section,
    .cta-section,
    .use-cases-section {
        padding: 48px 16px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 8px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-register {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

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

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .products-highlight-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .services-section,
    .features-section,
    .about-section,
    .cta-section,
    .use-cases-section {
        padding: 32px 12px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .about-highlights {
        flex-direction: column;
        gap: 8px;
    }

    .highlight-item {
        width: 100%;
        padding: 12px 16px;
    }
}

/* === MONOCHROME OVERRIDES === */
body,
.home {
    background: #ffffff !important;
    color: #0f172a !important;
}

a {
    color: inherit;
}

.home-bg,
.home-orb,
.home-grid {
    display: none !important;
}

.navbar,
.navbar--dark {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
}

.nav-logo svg {
    color: #0f172a !important;
}

.nav-link,
.navbar--dark .nav-link,
.nav-login,
.navbar--dark .nav-login {
    color: #475569 !important;
    border-bottom-color: transparent !important;
}

.nav-link:hover,
.navbar--dark .nav-link:hover,
.nav-login:hover {
    color: #0f172a !important;
    border-bottom-color: #0f172a !important;
    background: transparent !important;
}

.btn,
.btn-primary,
.btn-secondary,
.nav-register,
.nav-register--glow {
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1px solid #0f172a !important;
    box-shadow: none !important;
}

.btn-secondary {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
}

.btn:hover {
    transform: none !important;
}

.hero-badge,
.card-tag,
.panel-chip,
.panel-pill,
.pricing-badge {
    background: #f8fafc !important;
    color: #334155 !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
}

.hero-panel,
.card,
.showcase-card,
.pricing-card,
.faq-grid article,
.cta-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
}

.panel-preview,
.panel-note {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.preview-glow {
    display: none !important;
}

.section-headline h2,
.card h3,
.showcase-card h3,
.pricing-card h3,
.faq-grid h3,
.cta-card h2,
.panel-note strong {
    color: #0f172a !important;
}

.section-headline p,
.card p,
.showcase-content p,
.pricing-card p,
.faq-grid p,
.cta-card p,
.trusted,
.trusted__logos,
.home-hero__content p,
.panel-title,
.metric,
.pricing-card li {
    color: #475569 !important;
}

.metric,
.panel-line,
.showcase-lines span,
.panel-card {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
}

.footer,
.footer--dark {
    background: #ffffff !important;
    color: #475569 !important;
    border-top: 1px solid #e2e8f0 !important;
}

.footer--dark h4,
.footer--dark a:hover {
    color: #0f172a !important;
}

.footer--dark a {
    color: #475569 !important;
}
