@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --left-bg: #032B1F;
    --highlight: #F5C518;
    --text-white: #FFFFFF;
    --right-bg: #F8FAFB;
    --primary-green: #07A776;
    --primary-green-light: #0cc98f;
    --primary-dark: #04312A;
    --text-gray: #6B7280;
    --text-muted: #94A3B8;
    --input-bg: #F1F5F4;
    --input-border: #D9E2E0;
    --input-focus-border: #07A776;
    --card-bg: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-green: 0 8px 30px rgba(7,167,118,0.28);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--right-bg);
    overflow-x: hidden;
    color: var(--text-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   LAYOUT — SPLIT CONTAINER
   ============================================================ */
.login-split-container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
}

/* ============================================================
   LEFT PANEL — HERO SHOWCASE
   ============================================================ */
.panel-left {
    width: 55%;
    background: linear-gradient(160deg, #064A35 0%, var(--left-bg) 40%, #011A12 100%);
    color: var(--text-white);
    padding: 60px 70px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Ambient light effects */
.panel-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(3, 43, 31, 0.82);
    background-image:
        radial-gradient(ellipse at 75% 15%, rgba(245,197,24,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 15% 85%, rgba(7,167,118,0.18) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(7,167,118,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid texture */
.bg-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Animated floating orbs */
.panel-left::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(7,167,118,0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -150px;
    animation: floatOrb 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-40px, 60px) scale(1.15); opacity: 0.8; }
    100% { transform: translate(20px, -30px) scale(0.95); opacity: 0.5; }
}

.left-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

/* Top badge — "LIVE PROCUREMENT TRACKING" */
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7,167,118,0.12);
    border: 1px solid rgba(7,167,118,0.25);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
    animation: fadeSlideIn 0.6s ease-out;
}
.top-badge .dot {
    width: 7px;
    height: 7px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 0 0 10px #34D399, 0 0 20px rgba(52,211,153,0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #34D399, 0 0 20px rgba(52,211,153,0.3); }
    50% { opacity: 0.6; box-shadow: 0 0 6px #34D399, 0 0 12px rgba(52,211,153,0.2); }
}

/* Brand logo */
.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    animation: fadeSlideIn 0.7s ease-out 0.1s both;
}
.logo-box {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px;
}
.logo-box:hover {
    transform: scale(1.06);
    background: rgba(255,255,255,0.12);
}
.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}
.logo-text .title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}
.logo-text .subtitle {
    font-size: 0.62rem;
    font-weight: 700;
    color: #34D399;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

/* Main heading */
.main-heading {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    animation: fadeSlideIn 0.8s ease-out 0.15s both;
}
.main-heading .highlight {
    background: linear-gradient(135deg, var(--highlight), #FFD966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subheading {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeSlideIn 0.9s ease-out 0.2s both;
}

/* Feature pills */
.feature-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeSlideIn 1s ease-out 0.25s both;
}
.feature-pills .pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
    backdrop-filter: blur(6px);
}
.feature-pills .pill:hover {
    background: rgba(7,167,118,0.15);
    border-color: rgba(7,167,118,0.3);
    transform: translateY(-2px);
}
.feature-pills .pill i {
    color: #34D399;
    font-size: 0.85rem;
}

/* Stats row */
.stats-row {
    display: flex;
    gap: 48px;
    animation: fadeSlideIn 1.1s ease-out 0.3s both;
}
.stat-block {
    position: relative;
}
.stat-block::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255,255,255,0.12);
}
.stat-block:last-child::after {
    display: none;
}
.stat-block h2 {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #34D399, var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-block span {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    animation: bounceIndicator 2.5s ease-in-out infinite;
    z-index: 10;
}
.scroll-indicator:hover {
    color: rgba(255,255,255,0.8);
}
@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -6px); }
    60% { transform: translate(-50%, -3px); }
}

/* Entry animation */
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RIGHT PANEL — LOGIN FORM
   ============================================================ */
.panel-right {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: linear-gradient(180deg, #F8FAFB 0%, #EFF5F3 100%);
    overflow: hidden;
}

/* Animated decorative circles on right panel */
.panel-right::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7,167,118,0.08) 0%, transparent 70%);
    top: -120px;
    right: -100px;
    pointer-events: none;
    animation: floatShape 15s ease-in-out infinite alternate;
}
.panel-right::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
    animation: floatShape 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.1); }
    100% { transform: translate(20px, -20px) scale(0.95); }
}

/* Watermark Background Logo */
.watermark-logo-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    animation: pulseWatermark 8s ease-in-out infinite alternate;
}
.watermark-logo-bg img {
    width: 80%;
    max-width: 500px;
    object-fit: contain;
    filter: grayscale(100%);
}
@keyframes pulseWatermark {
    0% { transform: scale(1); opacity: 0.03; }
    100% { transform: scale(1.05); opacity: 0.06; }
}

/* Additional Animated Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(7,167,118,0.08), rgba(7,167,118,0.01));
    animation: floatParticle 20s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
}
.p1 { width: 120px; height: 120px; top: 15%; left: 10%; animation-duration: 16s; }
.p2 { width: 180px; height: 180px; bottom: 15%; right: 15%; animation-duration: 22s; animation-delay: -5s; }
.p3 { width: 90px; height: 90px; top: 45%; right: 25%; animation-duration: 18s; animation-delay: -2s; }
.p4 { width: 140px; height: 140px; bottom: 40%; left: 15%; animation-duration: 25s; animation-delay: -8s; background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(245,197,24,0.01)); }

@keyframes floatParticle {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -60px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.right-content {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(7,167,118,0.06);
    animation: formSlideUp 0.7s ease-out;
}

@keyframes formSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile logo */
.mobile-logo {
    display: none;
    margin-bottom: 24px;
    width: 48px;
    height: 48px;
}

/* Welcome heading */
.welcome-heading {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.welcome-subheading {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.4;
}

/* ============================================================
   FORM FIELDS — PREMIUM INPUTS
   ============================================================ */
.field {
    margin-bottom: 20px;
}
.field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    z-index: 5;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrapper input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--primary-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
    transition: all var(--transition-fast);
    outline: none;
}
.input-wrapper input::placeholder {
    color: #B0BEC5;
    font-weight: 400;
    font-size: 0.88rem;
}
.input-wrapper input:hover {
    border-color: #B0C4BC;
    background: #EEF3F1;
}
.input-wrapper input:focus {
    border-color: var(--primary-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(7,167,118,0.08), var(--shadow-sm);
}
.input-wrapper input:focus ~ .icon-left,
.input-wrapper input:focus + .icon-left,
.input-wrapper:focus-within .icon-left {
    color: var(--primary-green);
}

/* Password toggle */
.toggle-vis {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition-fast);
    z-index: 5;
}
.toggle-vis:hover {
    color: var(--primary-green);
    background: rgba(7,167,118,0.06);
}

/* Form row (OTP verified label) */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* ============================================================
   SIGN IN BUTTON — PREMIUM GRADIENT
   ============================================================ */
.btn-signin {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 50%, #047857 100%);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-green);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}
.btn-signin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}
.btn-signin:hover::before {
    left: 100%;
}
.btn-signin:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065F46 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(7,167,118,0.35);
}
.btn-signin:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(7,167,118,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-text {
    margin-top: 28px;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-text strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* ============================================================
   ALERTS
   ============================================================ */
.alert-bar {
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    animation: alertPop 0.3s ease-out;
}
@keyframes alertPop {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.alert-bar.error {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}
.alert-bar.error i {
    color: #EF4444;
    flex-shrink: 0;
}
.alert-bar.info {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}
.alert-bar.info i {
    color: #10B981;
    flex-shrink: 0;
}

/* ============================================================
   OTP VERIFICATION STYLES
   ============================================================ */
.otp-timer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 16px;
    background: rgba(7, 167, 118, 0.05);
    border: 1px solid rgba(7, 167, 118, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: all var(--transition-fast);
}
.otp-timer-bar i {
    font-size: 0.85rem;
}

.otp-link-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
    font-family: 'Inter', sans-serif;
    border-radius: 6px;
}
.otp-link-btn:hover {
    color: var(--primary-dark);
    background: rgba(7,167,118,0.06);
}

/* OTP input */
#otpInput {
    font-family: 'Inter', monospace !important;
    font-weight: 700 !important;
}
#otpInput:focus {
    border-color: var(--primary-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(7, 167, 118, 0.1);
}

/* ============================================================
   PORTAL TABS & THEME TOGGLE
   ============================================================ */
.theme-toggle {
    position: absolute;
    top: 24px;
    right: 36px;
    display: flex;
    background: var(--input-bg);
    border-radius: 100px;
    padding: 3px;
    border: 1px solid var(--input-border);
    z-index: 5;
}
.theme-toggle button {
    background: transparent;
    border: none;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}
.theme-toggle button.active {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 2px 10px rgba(7,167,118,0.3);
}

.portal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.portal-tabs .tab {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--input-border);
    background: transparent;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}
.portal-tabs .tab.active {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(7,167,118,0.04);
}

.portal-selector {
    display: flex;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: 24px;
    width: 100%;
}
.portal-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.portal-tab-btn.active {
    background: #FFFFFF;
    color: var(--primary-green);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--input-border);
}

.remember-box {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.remember-box input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-green);
    border: 1px solid var(--input-border);
    border-radius: 4px;
}
.remember-box span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-gray);
}
.forgot-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-fast);
}
.forgot-link:hover {
    text-decoration: underline;
    color: #059669;
}

/* ============================================================
   LANDING PAGE SECTIONS (preserved)
   ============================================================ */
.landing-details-section {
    padding: 100px 80px;
    background: #F9FAFB;
    border-top: 1px solid var(--input-border);
}
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    line-height: 1.6;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.feature-card {
    background: #FFFFFF;
    border: 1px solid var(--input-border);
    border-radius: 16px;
    padding: 40px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 25px -5px rgba(7, 167, 118, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(7, 167, 118, 0.08);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}
.feature-card:hover .icon-box {
    background: var(--primary-green);
    color: #FFFFFF;
    transform: scale(1.1);
}
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tab Showcase */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.showcase-tab-btn {
    background: #FFFFFF;
    border: 1px solid var(--input-border);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.showcase-tab-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}
.showcase-tab-btn.active {
    background: var(--primary-green);
    color: #FFFFFF;
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(7, 167, 118, 0.25);
}
.showcase-content-box {
    background: #FFFFFF;
    border: 1px solid var(--input-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.showcase-text {
    flex: 1.2;
}
.showcase-text h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.showcase-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}
.showcase-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.showcase-text ul li {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.showcase-text ul li i {
    color: var(--primary-green);
}
.showcase-visual {
    flex: 0.8;
    background: var(--input-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--input-border);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Flow steps */
.flow-step-box {
    background: #FFFFFF;
    border-left: 4px solid var(--primary-green);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.flow-step-box i {
    color: var(--primary-green);
}

/* Security Section */
.security-banner {
    background: linear-gradient(135deg, var(--left-bg) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    padding: 80px;
    border-radius: 24px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.security-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(7,167,118,0.15) 0%, transparent 40%);
    pointer-events: none;
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
}
.security-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--highlight);
    display: flex;
    align-items: center;
    gap: 8px;
}
.security-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .panel-left { padding: 50px 50px; }
    .main-heading { font-size: 2.8rem; }
    .right-content { padding: 36px 30px; }
}

@media (max-width: 1024px) {
    .login-split-container {
        flex-direction: column;
    }
    .panel-left, .panel-right {
        width: 100%;
    }
    .panel-left {
        padding: 40px 24px;
        min-height: auto;
    }
    .main-heading { font-size: 2.2rem; }
    .main-subheading { font-size: 0.95rem; }
    .stats-row { gap: 32px; }
    .stat-block h2 { font-size: 2rem; }

    .theme-toggle { position: static; margin-bottom: 24px; display: inline-flex; }

    .panel-right {
        padding: 32px 20px;
        min-height: auto;
    }
    .right-content {
        max-width: 440px;
        padding: 32px 24px;
    }
    .mobile-logo {
        display: flex;
    }
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    .panel-left { padding: 32px 18px; }
    .main-heading { font-size: 1.8rem; letter-spacing: -0.5px; }
    .main-subheading { font-size: 0.88rem; margin-bottom: 24px; }
    .feature-pills { gap: 8px; margin-bottom: 32px; }
    .feature-pills .pill { padding: 7px 12px; font-size: 0.72rem; }
    .stats-row { gap: 20px; flex-wrap: wrap; }
    .stat-block h2 { font-size: 1.6rem; }
    .stat-block span { font-size: 0.6rem; }
    .stat-block::after { display: none; }

    .right-content {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }
    .welcome-heading { font-size: 1.4rem; }
    .btn-signin { padding: 13px 16px; font-size: 0.9rem; }
}

@media (max-width: 1024px) {
    .landing-details-section {
        padding: 60px 20px;
    }
    .showcase-content-box {
        flex-direction: column;
        padding: 24px;
    }
    .security-banner {
        padding: 40px 20px;
    }
}
