/* DatRiVex Public Site Stylesheet */

a, a:hover, a:focus, a:active {
    text-decoration: none;
}

:root {
    --primary: #4F6AF5;
    --primary-dark: #3B54E0;
    --primary-light: #7B8FF7;
    --secondary: #0EA5E9;
    --accent: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --border: #E2E8F0;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --gradient: linear-gradient(135deg, #4F6AF5 0%, #0EA5E9 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* Bootstrap 5 gutter utility compatibility for the bundled Bootstrap 4 CSS. */
.row.g-0 { margin-left: 0; margin-right: 0; row-gap: 0; }
.row.g-0 > [class^="col"],
.row.g-0 > [class*=" col"] { padding-left: 0; padding-right: 0; }

.row.g-1,
.row.gx-1 { --pub-gutter-x: 0.25rem; }
.row.g-2,
.row.gx-2 { --pub-gutter-x: 0.5rem; }
.row.g-3,
.row.gx-3 { --pub-gutter-x: 1rem; }
.row.g-4,
.row.gx-4 { --pub-gutter-x: 1.5rem; }
.row.g-5,
.row.gx-5 { --pub-gutter-x: 3rem; }

.row.g-1,
.row.gy-1 { --pub-gutter-y: 0.25rem; }
.row.g-2,
.row.gy-2 { --pub-gutter-y: 0.5rem; }
.row.g-3,
.row.gy-3 { --pub-gutter-y: 1rem; }
.row.g-4,
.row.gy-4 { --pub-gutter-y: 1.5rem; }
.row.g-5,
.row.gy-5 { --pub-gutter-y: 3rem; }

.row[class*="g-"],
.row[class*="gx-"],
.row[class*="gy-"] {
    margin-left: calc(var(--pub-gutter-x, 0) * -0.5);
    margin-right: calc(var(--pub-gutter-x, 0) * -0.5);
    row-gap: var(--pub-gutter-y, 0);
}
.row[class*="g-"] > [class^="col"],
.row[class*="g-"] > [class*=" col"],
.row[class*="gx-"] > [class^="col"],
.row[class*="gx-"] > [class*=" col"],
.row[class*="gy-"] > [class^="col"],
.row[class*="gy-"] > [class*=" col"] {
    padding-left: calc(var(--pub-gutter-x, 0) * 0.5);
    padding-right: calc(var(--pub-gutter-x, 0) * 0.5);
}

/* ===== NAVBAR ===== */
.pub-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pub-nav .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pub-nav .nav-logo-img {
    width: 184px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.pub-nav .nav-logo .logo-icon {
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.pub-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-right: 32px;
    align-self: center;
}

.pub-nav .nav-links li {
    display: flex;
    align-items: center;
    height: 68px;
}

.pub-nav .nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.pub-nav .nav-links a:hover { color: var(--white); }

.pub-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-outline-nav {
    padding: 8px 20px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.btn-outline-nav:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.btn-primary-nav {
    padding: 8px 20px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(79,106,245,0.4);
}

.btn-primary-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79,106,245,0.5);
    color: var(--white);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(79,106,245,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,106,245,0.15);
    border: 1px solid rgba(79,106,245,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-hero-primary {
    flex: 1;
    padding: 14px 32px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(79,106,245,0.45);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(79,106,245,0.55);
    color: var(--white);
}

.btn-hero-secondary {
    flex: 1;
    padding: 14px 32px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.14);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat-item { text-align: left; }
.hero-stat-item .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: block;
}
.hero-stat-item .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-dashboard-preview {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.preview-dots { display: flex; gap: 6px; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot.red { background: #FF5F56; }
.preview-dot.yellow { background: #FFBD2E; }
.preview-dot.green { background: #27C93F; }

.preview-title {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    margin-left: 8px;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.preview-metric {
    background: var(--dark-3);
    border-radius: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.06);
}

.preview-metric .pm-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}

.preview-metric .pm-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.preview-metric .pm-badge {
    font-size: 10px;
    color: var(--accent);
    margin-top: 2px;
}

.preview-chart-bar {
    background: var(--dark-3);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}

.preview-chart-bar .pc-title {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.bar-chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.bar-item {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.bar-item:hover { opacity: 1; }

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

.preview-pipeline-item {
    background: var(--dark-3);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.06);
}

.ppi-name { font-size: 11px; color: rgba(255,255,255,0.8); }
.ppi-badge {
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}
.ppi-badge.running { background: rgba(16,185,129,0.2); color: var(--accent); }
.ppi-badge.completed { background: rgba(14,165,233,0.2); color: var(--secondary); }
.ppi-badge.queued { background: rgba(245,158,11,0.2); color: var(--warning); }

/* ===== SECTIONS COMMON ===== */
section { padding: 96px 0; }

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.75px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section { background: var(--bg-light); }

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.fi-blue { background: rgba(79,106,245,0.1); color: var(--primary); }
.fi-green { background: rgba(16,185,129,0.1); color: var(--accent); }
.fi-sky { background: rgba(14,165,233,0.1); color: var(--secondary); }
.fi-amber { background: rgba(245,158,11,0.1); color: var(--warning); }
.fi-purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.fi-pink { background: rgba(236,72,153,0.1); color: #EC4899; }

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

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

/* ===== HOW IT WORKS ===== */
.steps-section { background: var(--white); }

.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    width: 56px; height: 56px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(79,106,245,0.4);
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), transparent);
    z-index: 0;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ===== PRICING ===== */
.pricing-section { background: var(--bg-light); }

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79,106,245,0.08), var(--shadow-xl);
    transform: scale(1.03);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price .price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.plan-price .price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 8px 0;
}

.plan-features li .check { color: var(--accent); font-size: 16px; }
.plan-features li .cross { color: var(--gray-light); font-size: 16px; }

.btn-plan {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: block;
    text-align: center;
}

.btn-plan-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(79,106,245,0.4);
}

.btn-plan-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(79,106,245,0.5);
    color: var(--white);
}

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

.btn-plan-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-dark);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79,106,245,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    position: relative;
}

/* ===== FOOTER ===== */
.pub-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 32px;
}

.footer-brand .brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 13px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: all 0.2s;
}
.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 16px 40px;
    position: relative;
}

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

.auth-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.auth-logo-img {
    width: 210px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.auth-logo .logo-icon {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.auth-logo .logo-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.auth-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    text-align: center;
}

.auth-card .auth-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-bottom: 32px;
}

.auth-form .form-group { margin-bottom: 18px; }

.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 7px;
}

.auth-form .form-control {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--white);
    transition: all 0.2s;
    outline: none;
    appearance: none;
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    background: rgba(79,106,245,0.08);
    box-shadow: 0 0 0 3px rgba(79,106,245,0.15);
}

.auth-form .form-control::placeholder { color: rgba(255,255,255,0.25); }

.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 42px; }
.input-icon-wrap.has-eye .form-control { padding-right: 42px; }
.input-icon-wrap .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    pointer-events: none;
}
.eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    line-height: 1;
    transition: color 0.15s;
}
.eye-toggle:hover { color: rgba(255,255,255,0.7); }

.btn-auth {
    width: 100%;
    padding: 13px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(79,106,245,0.4);
    transition: all 0.2s;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(79,106,245,0.5);
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.auth-link a { color: var(--primary-light); font-weight: 600; }
.auth-link a:hover { color: var(--white); }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.alert-pub {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-pub.error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.25);
    color: #FCA5A5;
}

.alert-pub.success {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.25);
    color: #6EE7B7;
}

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--bg-light); }

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-card .ci-icon {
    width: 44px; height: 44px;
    background: rgba(79,106,245,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.pub-form .form-group { margin-bottom: 20px; }
.pub-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.pub-form .form-control {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: all 0.2s;
    background: var(--white);
}

.pub-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,106,245,0.1);
}

.pub-form textarea.form-control { resize: vertical; min-height: 130px; }

.btn-submit {
    padding: 13px 32px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(79,106,245,0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(79,106,245,0.5);
}

/* ===== ABOUT PAGE ===== */
.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s;
}

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

.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
}

.team-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--primary); margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-muted); }

/* ===== UTILITIES ===== */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient { background: var(--gradient); }

/* ===== RESPONSIVE ===== */
/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }

    .pub-nav .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(13, 18, 36, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 0;
        padding: 8px 16px 20px;
        margin: 0;
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    }
    .pub-nav .nav-links.open {
        display: flex;
    }
    .pub-nav .nav-links li {
        width: 100%;
        height: auto;
    }
    .pub-nav .nav-links a {
        display: flex;
        align-items: center;
        height: auto;
        padding: 13px 12px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.8);
        border-radius: 8px;
        transition: background 0.15s, color 0.15s;
    }
    .pub-nav .nav-links a:hover {
        background: rgba(255,255,255,0.07);
        color: #fff;
    }

    .hero-content { padding: 40px 0; }
    .hero-stats { gap: 24px; }
    .hero-visual { margin-top: 40px; }
    .auth-card { padding: 32px 24px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .footer-bottom { flex-direction: column; text-align: center; }
}
