:root {
    --primary-top: #4D72FF;
    --primary-bottom: #5A86FF;
    --gradient-primary: linear-gradient(180deg, #4D72FF 0%, #5A86FF 100%);
    --gradient-dark: linear-gradient(180deg, #2a3f7a 0%, #1e2d5a 100%);
    
    --glass-base: rgba(255, 255, 255, 0.12);
    --glass-strong: rgba(255, 255, 255, 0.16);
    --glass-border: rgba(255, 255, 255, 0.20);
    --glass-inner: rgba(255, 255, 255, 0.94);
    
    --success: #2ED573;
    --danger: #FF4757;
    --accent-glow: #A9C2FF;
    
    --text-primary: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.75);
    --btn-text: #2C4CFF;
    
    --icon-password: #FF9500;
    --icon-officer: #00E676;
    --icon-notification: #FFB830;
    --icon-warning: #FF6464;
    --icon-cyan: #00C8FF;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 100px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #4D72FF;
}

html, body {
    overscroll-behavior: none;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    background-color: #4D72FF;
    background-image: linear-gradient(180deg, #4D72FF 0%, #5A86FF 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: var(--glass-base);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(77, 114, 255, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--glass-inner);
    color: var(--btn-text);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(169, 194, 255, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(169, 194, 255, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.hero-heading {
    margin-bottom: 1.75rem;
}

.hero-heading-primary {
    display: block;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 0.25em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-heading-secondary {
    display: block;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.85);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    max-width: 580px;
}

.hero-description-secondary {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.store-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.store-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.store-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hero-beta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
    text-align: left;
}

.hero-steps {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-step-number {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.hero-step-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.success-text {
    color: var(--success);
    font-weight: 500;
}

.danger-text {
    color: var(--danger);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-icon,
.btn-icon-right {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--glass-inner);
    color: var(--btn-text);
    box-shadow: 0 4px 20px rgba(169, 194, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(169, 194, 255, 0.6);
}

.hero-cta-primary {
    background: #ffffff;
    color: #2C4CFF;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.98rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    border: none;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-cta-secondary:hover {
    background: var(--glass-base);
    border-color: rgba(255, 255, 255, 0.35);
}

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

.btn-ghost:hover {
    background: var(--glass-base);
    border-color: var(--text-primary);
}

.btn-large {
    padding: 20px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-disabled {
    background: var(--glass-base);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.hero-trust {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

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

.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-mockup-main {
    position: relative;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.hero-mockup-main img {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    border-radius: 32px;
}

.hero-mockup-back {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.hero-mockup-back img {
    width: 200px;
    height: auto;
    border-radius: 24px;
    filter: blur(2px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-mockup-left {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
}

.hero-mockup-right {
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(8deg);
}

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

.why-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.why-section .section-subtitle {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-primary);
}

.comparison-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1;
    background: var(--glass-base);
    backdrop-filter: blur(20px);
    padding: 32px;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-old {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border: 1px solid rgba(255, 71, 87, 0.25);
    border-right: none;
}

.comparison-new {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    border: 1px solid rgba(46, 213, 115, 0.25);
    border-left: none;
    background: rgba(46, 213, 115, 0.08);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-strong);
    padding: 0 16px;
    z-index: 2;
}

.comparison-vs span {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.comparison-header {
    margin-bottom: 24px;
}

.comparison-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.old-badge {
    background: rgba(255, 71, 87, 0.15);
    color: #FF6B7A;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.new-badge {
    background: rgba(46, 213, 115, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.comparison-old .comparison-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.comparison-new .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.comparison-new .comparison-list li {
    color: var(--text-primary);
}

.comparison-new .comparison-list li strong {
    color: var(--text-primary);
}

.features-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    min-height: 220px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(169, 194, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-phone {
    transform: translateY(-12px) rotate(2deg);
}

.feature-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper.cyan {
    background: rgba(0, 200, 255, 0.15);
    color: var(--icon-cyan);
}

.feature-icon-wrapper.orange {
    background: rgba(255, 184, 48, 0.15);
    color: var(--icon-notification);
}

.feature-icon-wrapper.accent {
    background: rgba(169, 194, 255, 0.15);
    color: var(--accent-glow);
}

.feature-icon-wrapper.green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--icon-officer);
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-phone {
    flex-shrink: 0;
    width: 140px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-phone img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.how-it-works {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--glass-inner);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(169, 194, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-glow);
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    color: var(--accent-glow);
    opacity: 0.5;
}

.step-arrow svg {
    width: 32px;
    height: 32px;
}

.app-preview-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.carousel-phone-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 40px rgba(169, 194, 255, 0.3));
    object-fit: contain;
    animation: floatPhone 4s ease-in-out infinite;
}

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

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(169, 194, 255, 0.6);
}

.carousel-caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    min-height: 20px;
    transition: opacity 0.3s ease;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(169, 194, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.video-container video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.video-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-top: 24px;
    font-weight: 500;
}

.pricing-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

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

.pricing-card {
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(169, 194, 255, 0.35), 0 0 100px rgba(77, 114, 255, 0.2);
    transform: scale(1.02);
    background: var(--glass-strong);
}

.pricing-card.disabled {
    opacity: 0.5;
}

.pricing-tag {
    display: inline-block;
    background: linear-gradient(135deg, #4D72FF 0%, #5A86FF 100%);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(77, 114, 255, 0.4);
}

.pricing-tag.disabled-tag {
    background: var(--glass-base);
    color: var(--text-muted);
    box-shadow: none;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 28px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 14px;
}

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

.check-icon.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.coming-soon-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(77, 114, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 40px rgba(77, 114, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.coming-soon-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
}

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

.coming-soon-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.coming-soon-feature.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.coming-soon-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(77, 114, 255, 0.3);
    box-shadow: 0 8px 24px rgba(77, 114, 255, 0.12);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 114, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(77, 114, 255, 0.2);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: #A9C2FF;
    stroke-width: 1.5;
    fill: none;
}

.coming-soon-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    line-height: 1.3;
}

.coming-soon-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.coming-soon-footnote {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 40px;
    margin-bottom: 0;
    font-style: italic;
}

@media (max-width: 900px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .coming-soon-card {
        padding: 36px 24px;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coming-soon-feature {
        padding: 24px;
    }
}

.download-section {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.download-card {
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.download-icon img {
    width: 100px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.download-note {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.faq-section {
    background: var(--gradient-dark);
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--success);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.contact-section {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 20px 28px;
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-email svg {
    width: 24px;
    height: 24px;
}

.contact-email:hover {
    background: var(--glass-strong);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(169, 194, 255, 0.2);
}

.contact-form {
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(20px);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    background: var(--glass-strong);
    box-shadow: 0 0 0 4px rgba(169, 194, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: linear-gradient(180deg, #1a2654 0%, #131b3a 100%);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-mockup-main {
        animation: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 110px 0 70px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-tag {
        margin: 0 auto 1.2rem;
    }

    .hero-description,
    .hero-description-secondary {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .store-icons {
        justify-content: center;
    }

    .hero-beta-note {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
    }

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

    .hero-visual {
        min-height: 320px;
    }

    .hero-mockup-wrapper {
        max-width: 320px;
    }

    .hero-mockup-back {
        display: block;
        opacity: 0.5;
    }

    .hero-mockup-back img {
        width: 120px;
        filter: blur(1.5px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
    }

    .hero-mockup-left {
        left: -30px;
        transform: translateY(-50%) rotate(-6deg);
    }

    .hero-mockup-right {
        right: -30px;
        transform: translateY(-50%) rotate(6deg);
    }

    .hero-mockup-main img {
        width: 200px;
    }

    .why-section,
    .features-section,
    .how-it-works,
    .app-preview-section,
    .pricing-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .comparison-container {
        flex-direction: column;
        gap: 0;
    }

    .comparison-old {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border: 1px solid rgba(255, 71, 87, 0.25);
        border-bottom: none;
    }

    .comparison-new {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 1px solid rgba(46, 213, 115, 0.25);
        border-top: none;
    }

    .comparison-vs {
        padding: 12px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .feature-card-content {
        align-items: center;
    }

    .feature-phone {
        width: 160px;
        margin-top: 8px;
    }

    .feature-card:hover .feature-phone {
        transform: translateY(-8px) rotate(0deg);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        max-width: 100%;
        width: 100%;
        padding: 32px 24px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: -14px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
        padding: 12px 0;
        opacity: 0.4;
    }

    .step-arrow svg {
        width: 24px;
        height: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-features li {
        font-size: 14px;
        line-height: 1.6;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 14px;
    }

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

    .contact-email {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 18px 24px;
    }

    .contact-form {
        padding: 28px 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Mobile Performance Optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-mockup-main,
    .showcase-phone,
    .feature-card-phone {
        animation: none !important;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .hero-mockup-bg {
        display: none;
    }
    
    .btn,
    .nav-link,
    .faq-question,
    .pricing-card {
        transition: none !important;
    }
    
    .feature-card,
    .step,
    .pricing-card,
    .faq-item {
        will-change: auto;
        transform: none;
    }
    
    .nav {
        padding: 20px 0;
    }

    .nav.scrolled {
        padding: 16px 0;
    }

    .nav-container {
        padding: 0 16px;
        position: relative;
        justify-content: center;
        min-height: 48px;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-logo img {
        height: 58px;
    }

    .nav-toggle {
        position: absolute;
        left: 16px;
        display: flex;
        z-index: 1001;
        padding: 10px;
        background: var(--glass-base);
        border-radius: var(--radius-sm);
        border: 1px solid var(--glass-border);
    }

    .nav-toggle span {
        width: 22px;
        height: 2.5px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #4D72FF 0%, #3a5ed9 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 40px;
        gap: 0;
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.4);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 24px;
        width: 52px;
        height: 52px;
        background: url('assets/iconnew.png') center/contain no-repeat;
        border-radius: var(--radius-md);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 500;
        color: white;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .nav-link:hover,
    .nav-link:active {
        color: white;
        padding-left: 12px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 -24px;
        padding-right: 24px;
        padding-left: 36px;
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-cta {
        display: block;
        width: 100%;
        margin-top: auto;
        padding: 16px 24px;
        font-size: 16px;
        text-align: center;
        background: white;
        color: #4D72FF;
        border-radius: var(--radius-full);
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .animate-on-scroll {
        transform: translateY(20px) translateZ(0);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .feature-card,
    .step,
    .pricing-card,
    .faq-item {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-mockup-main {
        animation-duration: 4s;
    }

    .hero {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .hero-container {
        gap: 24px;
    }

    .hero-visual {
        margin-bottom: 0;
        min-height: 280px;
    }

    .hero-mockup-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-mockup-back {
        display: block;
        opacity: 0.45;
    }

    .hero-mockup-back img {
        width: 100px;
        filter: blur(1px) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
    }

    .hero-mockup-left {
        left: -20px;
        transform: translateY(-50%) rotate(-5deg);
    }

    .hero-mockup-right {
        right: -20px;
        transform: translateY(-50%) rotate(5deg);
    }

    .hero-mockup-main {
        display: flex;
        justify-content: center;
    }

    .hero-mockup-main img {
        width: 180px;
        max-width: 50vw;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }

    .hero-content {
        padding: 0 12px;
        text-align: center;
    }

    .hero-tag {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin: 0 auto 14px;
        display: inline-block;
    }

    .hero-heading {
        margin-bottom: 18px;
    }

    .hero-heading-primary {
        font-size: clamp(1.5rem, 6.5vw, 1.9rem);
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .hero-heading-secondary {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        line-height: 1.4;
        opacity: 0.95;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 12px;
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description-secondary {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 20px;
        opacity: 0.85;
        text-align: center;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-steps {
        gap: 0.5rem;
    }

    .hero-step {
        width: 100%;
        padding: 10px 14px;
    }

    .hero-step-number {
        width: 20px;
        height: 20px;
        font-size: 0.72rem;
    }

    .hero-step-text {
        font-size: 0.82rem;
    }

    .hero-buttons {
        gap: 12px;
        margin-top: 4px;
        justify-content: center;
    }

    .hero-buttons .btn {
        padding: 16px 28px;
        font-size: 15px;
        max-width: 320px;
        width: 100%;
    }

    .hero-beta-note {
        margin-top: 14px;
        font-size: 0.82rem;
        text-align: center;
    }

    .why-section,
    .features-section,
    .how-it-works,
    .app-preview-section,
    .pricing-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .comparison-card {
        padding: 24px 20px;
    }

    .comparison-list li {
        font-size: 14px;
        line-height: 1.5;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-phone {
        width: 140px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }

    .step {
        padding: 28px 20px;
    }

    .step-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .step-icon {
        width: 28px;
        height: 28px;
    }

    .step h3 {
        font-size: 15px;
    }

    .step p {
        font-size: 13px;
    }

    .carousel-wrapper {
        max-width: 100%;
        padding: 0 16px;
    }

    .carousel-phone-container {
        min-height: 420px;
    }

    .carousel-slide img {
        width: 220px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 24px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-caption {
        font-size: 13px;
        padding: 0 16px;
        line-height: 1.4;
    }

    .video-wrapper {
        max-width: 100%;
        padding: 0 16px;
    }

    .video-container {
        border-radius: var(--radius-md);
    }

    .video-container video {
        border-radius: var(--radius-md);
    }

    .video-caption {
        font-size: 13px;
        padding: 0 16px;
        margin-top: 16px;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-features {
        gap: 12px;
    }

    .pricing-features li {
        font-size: 13px;
        gap: 10px;
    }

    .btn-full {
        padding: 16px 20px;
        font-size: 15px;
    }

    .download-card {
        padding: 36px 24px;
    }

    .download-content h2 {
        font-size: 22px;
    }

    .download-content p {
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-question span {
        padding-right: 12px;
    }

    .faq-arrow {
        width: 18px;
        height: 18px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-info {
        text-align: center;
    }

    .contact-email {
        font-size: 15px;
        padding: 16px 20px;
    }

    .contact-email svg {
        width: 20px;
        height: 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

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

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .footer {
        padding: 32px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-logo img {
        height: 24px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        padding: 12px 0;
    }

    .nav-logo img {
        height: 52px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-container {
        gap: 20px;
    }

    .hero-visual {
        min-height: 240px;
    }

    .hero-mockup-wrapper {
        max-width: 260px;
    }

    .hero-mockup-back img {
        width: 80px;
    }

    .hero-mockup-left {
        left: -12px;
    }

    .hero-mockup-right {
        right: -12px;
    }

    .hero-mockup-main img {
        width: 150px;
        max-width: 45vw;
    }

    .hero-content {
        padding: 0 8px;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin: 0 auto 12px;
    }

    .hero-heading {
        margin-bottom: 14px;
    }

    .hero-heading-primary {
        font-size: clamp(1.35rem, 7vw, 1.65rem);
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .hero-heading-secondary {
        font-size: clamp(0.88rem, 4vw, 1.05rem);
        line-height: 1.45;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 10px;
        padding: 0 4px;
    }

    .hero-description-secondary {
        font-size: 0.8rem;
        line-height: 1.65;
        margin-bottom: 18px;
        padding: 0 4px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .hero-beta-note {
        font-size: 0.76rem;
        margin-top: 12px;
    }

    .why-section,
    .features-section,
    .how-it-works,
    .app-preview-section,
    .pricing-section,
    .faq-section,
    .contact-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 22px;
        padding: 0 8px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 8px;
    }

    .comparison-card {
        padding: 20px 16px;
    }

    .comparison-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .comparison-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .comparison-vs span {
        font-size: 12px;
        width: 36px;
        height: 36px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-phone {
        width: 120px;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .feature-text h3 {
        font-size: 15px;
    }

    .feature-text p {
        font-size: 12px;
    }


    .step {
        padding: 24px 16px;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 12px;
        top: -13px;
    }

    .step-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .step-icon {
        width: 24px;
        height: 24px;
    }

    .step h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 12px;
        line-height: 1.55;
    }

    .step-arrow {
        padding: 10px 0;
    }

    .step-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-phone-container {
        min-height: 360px;
    }

    .carousel-slide img {
        width: 180px;
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
    }

    .carousel-arrow svg {
        width: 14px;
        height: 14px;
    }

    .carousel-prev {
        left: 2px;
    }

    .carousel-next {
        right: 2px;
    }

    .carousel-dots {
        gap: 6px;
        margin-top: 20px;
    }

    .carousel-dot {
        width: 7px;
        height: 7px;
    }

    .carousel-caption {
        font-size: 12px;
        margin-top: 16px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .pricing-tag {
        font-size: 10px;
        padding: 5px 12px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-price {
        font-size: 32px;
    }

    .pricing-features {
        gap: 10px;
    }

    .pricing-features li {
        font-size: 12px;
        gap: 8px;
    }

    .check-icon {
        width: 18px;
        height: 18px;
    }

    .btn-full {
        padding: 14px 16px;
        font-size: 14px;
    }

    .download-card {
        padding: 28px 20px;
    }

    .download-icon img {
        width: 72px;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .download-content h2 {
        font-size: 20px;
    }

    .download-content p {
        font-size: 13px;
    }

    .download-note {
        font-size: 11px;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 16px;
        font-size: 13px;
    }

    .faq-arrow {
        width: 16px;
        height: 16px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 12px;
    }

    .contact-email {
        font-size: 14px;
        padding: 14px 16px;
        flex-direction: column;
        gap: 8px;
    }

    .contact-form {
        padding: 20px 16px;
    }

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

    .form-group label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .footer {
        padding: 28px 0;
    }

    .footer-logo img {
        height: 22px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 12px;
    }
}

/* ================================================
   INVESTOR PAGE STYLES - PREMIUM EDITION
   ================================================ */

.investor-page {
    background: linear-gradient(135deg, #0f1629 0%, #1a2654 30%, #243670 60%, #1a2654 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.investor-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(77, 114, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(90, 134, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(169, 194, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.investor-orbs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.investor-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.investor-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 114, 255, 0.5) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.investor-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 194, 255, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: -10%;
    animation-delay: -7s;
}

.investor-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(90, 134, 255, 0.35) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}

.investor-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 22, 41, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.investor-nav.scrolled {
    background: rgba(15, 22, 41, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.investor-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.investor-nav-logo img {
    height: 38px;
    transition: transform 0.3s ease;
}

.investor-nav-logo:hover img {
    transform: scale(1.02);
}

.investor-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.investor-nav-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.investor-main {
    padding-top: 90px;
    position: relative;
    z-index: 1;
}

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

/* Hero Section - Premium */
.investor-hero {
    padding: 80px 0 100px;
    position: relative;
}

.confidential-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15) 0%, rgba(255, 100, 100, 0.1) 100%);
    border: 1px solid rgba(255, 71, 87, 0.25);
    color: #FF8A8A;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 71, 87, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 71, 87, 0.2); }
}

.investor-hero-card {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.9) 0%, rgba(34, 48, 100, 0.8) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 24px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.investor-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.investor-hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(77, 114, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.investor-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, #A9C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.investor-hero-subtitle {
    font-size: 22px;
    color: var(--accent-glow);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.investor-hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.investor-hero-bullets li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.investor-hero-bullets li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 213, 115, 0.3);
    transform: translateX(8px);
}

/* Section Styles - Premium */
.investor-section {
    padding: 100px 0;
    position: relative;
}

.investor-section-alt {
    background: linear-gradient(180deg, rgba(15, 22, 41, 0.5) 0%, rgba(26, 38, 84, 0.3) 50%, rgba(15, 22, 41, 0.5) 100%);
}

.investor-section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investor-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Layout */
.investor-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Three Column Layout */
.investor-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Problem Section - Premium */
.investor-narrative p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
}

.investor-pain-list {
    list-style: none;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.investor-pain-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 18px;
    background: rgba(255, 71, 87, 0.06);
    border-radius: 14px;
    border: 1px solid rgba(255, 71, 87, 0.12);
    transition: all 0.3s ease;
}

.investor-pain-list li:hover {
    background: rgba(255, 71, 87, 0.1);
    border-color: rgba(255, 71, 87, 0.25);
    transform: translateX(6px);
}

.investor-result {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.12) 0%, rgba(255, 100, 100, 0.08) 100%);
    border-left: 4px solid var(--danger);
    padding: 20px 24px;
    border-radius: 0 16px 16px 0;
    margin-top: 28px;
    box-shadow: 0 4px 24px rgba(255, 71, 87, 0.1);
}

/* Premium Stats Card */
.investor-stats-card {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.9) 0%, rgba(34, 48, 100, 0.8) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.investor-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.investor-stats-card h3 {
    font-size: 22px;
    margin-bottom: 28px;
    color: var(--accent-glow);
    font-weight: 600;
}

.investor-stat {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.investor-stat:last-of-type {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, #00C8FF 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.investor-footnote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    padding-top: 8px;
}

/* Market Size Cards - Premium */
.investor-market-card {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.9) 0%, rgba(34, 48, 100, 0.8) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.investor-market-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 24px 64px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 200, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.investor-market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.market-label {
    position: absolute;
    top: -14px;
    left: 28px;
    background: linear-gradient(135deg, #00C8FF 0%, #00A3CC 100%);
    color: #0a1628;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.4);
}

.investor-market-card h3 {
    font-size: 17px;
    margin-top: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.market-number {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.market-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.7;
}

.investor-market-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.investor-market-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    transition: color 0.2s ease;
}

.investor-market-card ul li:hover {
    color: rgba(255, 255, 255, 0.95);
}

.investor-market-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--icon-cyan);
    font-weight: 600;
}

.market-highlight {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.12) 0%, rgba(0, 200, 255, 0.06) 100%);
    border-radius: 14px;
    padding: 16px;
    font-size: 14px;
    color: var(--icon-cyan);
    margin-top: 20px;
    border: 1px solid rgba(0, 200, 255, 0.2);
}

/* TAM/SAM/SOM Chart - Premium */
.investor-chart {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.chart-bar {
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.chart-bar:hover {
    transform: scaleX(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.chart-tam {
    background: linear-gradient(90deg, var(--primary-top) 0%, var(--primary-bottom) 100%);
    width: 100%;
    box-shadow: 0 4px 20px rgba(77, 114, 255, 0.3);
}

.chart-sam {
    background: linear-gradient(90deg, var(--icon-cyan) 0%, #00A3CC 100%);
    width: 65%;
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
}

.chart-som {
    background: linear-gradient(90deg, var(--success) 0%, #25B863 100%);
    width: 25%;
    box-shadow: 0 4px 20px rgba(46, 213, 115, 0.3);
}

/* Product Features - Premium */
.investor-product-features {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.8) 0%, rgba(34, 48, 100, 0.7) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.investor-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.investor-product-features h3 {
    font-size: 20px;
    margin-bottom: 28px;
    color: var(--accent-glow);
    font-weight: 600;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-cyan {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.2) 0%, rgba(0, 200, 255, 0.1) 100%);
    color: var(--icon-cyan);
    box-shadow: 0 4px 16px rgba(0, 200, 255, 0.15);
}

.feature-orange {
    background: linear-gradient(135deg, rgba(255, 184, 48, 0.2) 0%, rgba(255, 184, 48, 0.1) 100%);
    color: var(--icon-notification);
    box-shadow: 0 4px 16px rgba(255, 184, 48, 0.15);
}

.feature-green {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.2) 0%, rgba(46, 213, 115, 0.1) 100%);
    color: var(--success);
    box-shadow: 0 4px 16px rgba(46, 213, 115, 0.15);
}

.feature-accent {
    background: linear-gradient(135deg, rgba(169, 194, 255, 0.2) 0%, rgba(169, 194, 255, 0.1) 100%);
    color: var(--accent-glow);
    box-shadow: 0 4px 16px rgba(169, 194, 255, 0.15);
}

.feature-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Why Now - Premium */
.investor-why-now h3 {
    font-size: 26px;
    margin-bottom: 28px;
    text-align: center;
    color: #fff;
}

.why-now-card {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.9) 0%, rgba(34, 48, 100, 0.8) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(6px);
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Business Model - Premium */
.investor-business-card {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.9) 0%, rgba(34, 48, 100, 0.8) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.investor-business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.business-col h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--accent-glow);
    font-weight: 600;
}

.business-col ul {
    list-style: none;
}

.business-col > ul > li {
    padding: 14px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
}

.business-col > ul > li:hover {
    color: #fff;
}

.business-col > ul > li:last-child {
    border-bottom: none;
}

.nested-list {
    margin-top: 14px;
    margin-left: 20px;
}

.nested-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: none !important;
}

.nested-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-glow);
}

.apple-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(169, 194, 255, 0.08) 0%, rgba(169, 194, 255, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(169, 194, 255, 0.15);
}

.apple-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.apple-note p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.7;
}

/* Economics Cards - Premium */
.economics-grid {
    margin-top: 40px;
}

.investor-assumptions {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    display: inline-block;
    width: 100%;
}

.economics-card {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.9) 0%, rgba(34, 48, 100, 0.8) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.economics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.economics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.economics-featured {
    border: 2px solid var(--accent-glow);
    transform: scale(1.05);
    box-shadow: 
        0 0 60px rgba(169, 194, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(34, 48, 100, 0.95) 0%, rgba(44, 60, 120, 0.9) 100%);
}

.economics-featured::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-glow);
    padding: 6px 12px;
    background: rgba(169, 194, 255, 0.15);
    border-radius: 100px;
}

.economics-featured:hover {
    transform: scale(1.08);
}

.economics-users {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.economics-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.economics-details {
    text-align: left;
}

.econ-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.econ-row:last-child {
    border-bottom: none;
}

.econ-profit {
    font-weight: 600;
    color: var(--accent-glow);
}

.econ-yearly {
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-green {
    color: var(--success);
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 0 20px rgba(46, 213, 115, 0.3);
}

.investor-disclaimer {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 40px;
    font-style: italic;
}

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

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -24px;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(34, 40, 90, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-done .timeline-icon {
    border-color: var(--success);
    background: rgba(46, 213, 115, 0.1);
}

.timeline-next .timeline-icon {
    border-color: var(--accent-glow);
    background: rgba(169, 194, 255, 0.1);
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.timeline-content ul {
    list-style: none;
    margin-top: 12px;
}

.timeline-content ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-glow);
}

/* GTM Cards */
.gtm-card {
    background: rgba(34, 40, 90, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.gtm-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--accent-glow);
}

.gtm-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.gtm-item:last-child {
    margin-bottom: 0;
}

.gtm-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.gtm-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Exit Strategy */
.exit-card {
    background: rgba(34, 40, 90, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.exit-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-glow);
}

.exit-card > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.exit-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

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

.exit-list li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.exit-list li:last-child {
    border-bottom: none;
}

.exit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-glow);
}

.valuation-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.valuation-featured {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.valuation-users {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.valuation-range {
    font-size: 16px;
}

.valuation-range strong {
    color: var(--success);
}

/* Funds Card */
.funds-card {
    background: rgba(34, 40, 90, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.fund-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.fund-item-wide {
    grid-column: span 4;
    max-width: 400px;
    margin: 0 auto;
}

.fund-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.08);
}

.fund-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.fund-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

/* Daily UA Market Snapshot Section */
.market-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.market-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.daily-ua-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.daily-ua-card {
    background: rgba(34, 40, 90, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.daily-ua-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.ua-state {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ua-metric {
    margin-bottom: 14px;
}

.ua-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ua-value {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.ua-metric.ua-highlight {
    background: rgba(169, 194, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 16px;
    border-left: 3px solid var(--accent);
}

.ua-metric.ua-highlight .ua-label {
    color: var(--accent);
}

.ua-metric.ua-highlight .ua-value {
    font-size: 20px;
    color: #fff;
}

.ua-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.daily-ua-callout {
    background: rgba(34, 40, 90, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(169, 194, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 16px;
}

.daily-ua-callout h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 28px;
    text-align: center;
}

.callout-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.callout-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.callout-bullets li:last-child {
    margin-bottom: 0;
}

.callout-bullets li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .daily-ua-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .daily-ua-card {
        padding: 24px;
    }
    
    .ua-state {
        font-size: 20px;
    }
    
    .daily-ua-callout {
        padding: 28px;
    }
    
    .daily-ua-callout h3 {
        font-size: 18px;
    }
    
    .callout-bullets li {
        font-size: 14px;
    }
}

/* CTA Section */
.investor-cta {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--primary-top) 0%, var(--primary-bottom) 100%);
}

.cta-card {
    background: rgba(34, 40, 90, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-inner);
    color: var(--btn-text);
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(169, 194, 255, 0.4);
}

/* Investor Footer */
.investor-footer {
    background: rgba(20, 28, 60, 0.95);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.investor-footer-content {
    text-align: center;
}

.investor-footer-content .footer-logo {
    height: 32px;
    margin-bottom: 16px;
}

.investor-footer-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0;
}

.footer-confidential {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .investor-hero-title {
        font-size: 36px;
    }
    
    .investor-three-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .investor-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .funds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fund-item-wide {
        grid-column: span 2;
    }
    
    .economics-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .investor-hero {
        padding: 40px 0 60px;
    }
    
    .investor-hero-card {
        padding: 32px 24px;
    }
    
    .investor-hero-title {
        font-size: 28px;
    }
    
    .investor-hero-subtitle {
        font-size: 16px;
    }
    
    .investor-section {
        padding: 60px 0;
    }
    
    .investor-section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .market-number {
        font-size: 36px;
    }
    
    .economics-users {
        font-size: 36px;
    }
    
    .funds-grid {
        grid-template-columns: 1fr;
    }
    
    .fund-item-wide {
        grid-column: span 1;
        max-width: none;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-card h2 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .investor-nav-logo img {
        height: 28px;
    }
    
    .confidential-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .investor-container {
        padding: 0 16px;
    }
    
    .investor-hero-title {
        font-size: 24px;
    }
    
    .investor-section-title {
        font-size: 20px;
    }
    
    .investor-stats-card,
    .investor-market-card,
    .gtm-card,
    .exit-card,
    .funds-card,
    .investor-business-card {
        padding: 24px 20px;
    }
    
    .economics-card {
        padding: 24px 16px;
    }
    
    .economics-users {
        font-size: 32px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .gtm-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* Premium Password Modal */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f1629 0%, #1a2654 50%, #0f1629 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.password-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(77, 114, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(90, 134, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 60% 80%, rgba(169, 194, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.password-modal {
    background: linear-gradient(135deg, rgba(26, 38, 84, 0.95) 0%, rgba(34, 48, 100, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 56px 48px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 32px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    animation: modalFloat 6s ease-in-out infinite;
}

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

.password-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.password-modal::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(77, 114, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.password-icon {
    margin-bottom: 24px;
    color: var(--accent-glow);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.password-modal h2 {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, #A9C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.password-modal > p {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    line-height: 1.6;
}

.password-modal form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-modal input {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 1.2rem;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    text-align: center;
    letter-spacing: 0.4em;
    outline: none;
    transition: all 0.3s ease;
}

.password-modal input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.password-modal input:focus {
    border-color: var(--accent-glow);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(169, 194, 255, 0.15);
}

.password-modal button {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 28px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    color: #2C4CFF;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.password-modal button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(169, 194, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.password-error {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #FF8A8A;
    margin-top: 8px;
    min-height: 24px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@media (max-width: 480px) {
    .password-modal {
        padding: 40px 28px;
        border-radius: 24px;
    }
    
    .password-modal h2 {
        font-size: 1.6rem;
    }
    
    .password-icon svg {
        width: 44px;
        height: 44px;
    }
}

.footer-link-muted {
    opacity: 0.5;
    font-size: 0.85rem;
}

.footer-link-muted:hover {
    opacity: 0.8;
}

/* ========================================
   PREMIUM TERMINAL CRM STYLES
   ======================================== */

.terminal-body {
    background: linear-gradient(135deg, #050816 0%, #0a1628 50%, #050816 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Floating Orbs for Terminal */
.terminal-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.terminal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.terminal-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 114, 255, 0.3) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: terminalOrbFloat1 20s ease-in-out infinite;
}

.terminal-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 134, 255, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: terminalOrbFloat2 25s ease-in-out infinite;
}

.terminal-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(169, 194, 255, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: terminalOrbFloat3 18s ease-in-out infinite;
}

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

@keyframes terminalOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes terminalOrbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(-20px, 30px) scale(1.1); opacity: 0.5; }
}

/* Premium Login Gate */
.terminal-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #050816 0%, #0d1a32 50%, #050816 100%);
    z-index: 9999;
    overflow: hidden;
}

.terminal-gate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(77, 114, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(90, 134, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: gateAmbient 10s ease-in-out infinite;
}

@keyframes gateAmbient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.terminal-gate-card {
    background: linear-gradient(135deg, rgba(15, 25, 50, 0.95) 0%, rgba(20, 32, 65, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 56px 48px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.2),
        0 24px 64px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: gateCardFloat 6s ease-in-out infinite;
}

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

.terminal-gate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 194, 255, 0.4), transparent);
}

.terminal-gate-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(77, 114, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.terminal-gate-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(77, 114, 255, 0.25) 0%, rgba(90, 134, 255, 0.15) 100%);
    border: 1px solid rgba(169, 194, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconGlow 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(77, 114, 255, 0.2);
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 8px 32px rgba(77, 114, 255, 0.2); }
    50% { box-shadow: 0 8px 48px rgba(77, 114, 255, 0.35); }
}

.terminal-gate-icon svg {
    width: 36px;
    height: 36px;
    stroke: #A9C2FF;
}

.terminal-gate-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, #A9C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.terminal-gate-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    line-height: 1.5;
}

.terminal-gate-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.terminal-gate-form input {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 1.15rem;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-align: center;
    letter-spacing: 0.35em;
    outline: none;
    transition: all 0.3s ease;
}

.terminal-gate-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

.terminal-gate-form input:focus {
    border-color: rgba(169, 194, 255, 0.5);
    background: rgba(77, 114, 255, 0.08);
    box-shadow: 0 0 32px rgba(77, 114, 255, 0.15);
}

.terminal-gate-btn {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 28px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4D72FF 0%, #5A86FF 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(77, 114, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.terminal-gate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.terminal-gate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(77, 114, 255, 0.5);
}

.terminal-gate-btn:hover::before {
    left: 100%;
}

.terminal-gate-error {
    font-size: 0.9rem;
    color: #FF8A8A;
    min-height: 24px;
}

/* Premium Dashboard */
.terminal-dashboard {
    min-height: 100vh;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Premium Header */
.terminal-header {
    background: linear-gradient(180deg, rgba(10, 18, 40, 0.95) 0%, rgba(10, 18, 40, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 32px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.terminal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 194, 255, 0.2), transparent);
}

.terminal-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.terminal-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.terminal-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(77, 114, 255, 0.2));
}

.terminal-header-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3px;
}

.terminal-header-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.terminal-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.85rem;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.3s ease;
}

.terminal-logout-btn:hover {
    background: rgba(255, 107, 122, 0.1);
    border-color: rgba(255, 107, 122, 0.3);
    color: #FF8A8A;
}

.terminal-logout-btn svg {
    width: 16px;
    height: 16px;
}

.terminal-header-divider {
    display: none;
}

/* Premium Main Content */
.terminal-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px;
    position: relative;
    z-index: 1;
}

/* Premium Tab Navigation */
.terminal-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 36px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(15, 22, 45, 0.8) 0%, rgba(20, 28, 55, 0.7) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    width: fit-content;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.terminal-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.terminal-tab svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.terminal-tab:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
}

.terminal-tab.active {
    background: linear-gradient(135deg, rgba(77, 114, 255, 0.2) 0%, rgba(90, 134, 255, 0.15) 100%);
    border-color: rgba(169, 194, 255, 0.2);
    color: #A9C2FF;
    box-shadow: 0 4px 16px rgba(77, 114, 255, 0.15);
}

.terminal-tab.active svg {
    filter: drop-shadow(0 0 8px rgba(169, 194, 255, 0.4));
}

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

.terminal-tab-content.active {
    display: block;
    animation: tabFadeIn 0.3s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium Section Cards */
.terminal-section {
    background: linear-gradient(135deg, rgba(15, 22, 45, 0.7) 0%, rgba(18, 26, 52, 0.6) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.terminal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 194, 255, 0.15), transparent);
}

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

.terminal-section-header h2 {
    font-size: 1.35rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Add Button */
.terminal-add-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #4D72FF 0%, #5A86FF 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(77, 114, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.terminal-add-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.terminal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(77, 114, 255, 0.4);
}

.terminal-add-btn:hover::before {
    left: 100%;
}

.terminal-add-btn svg {
    width: 16px;
    height: 16px;
}

/* Premium Filters */
.terminal-filters {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Premium Search Input */
.terminal-search {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.terminal-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: rgba(169, 194, 255, 0.5);
    transition: all 0.3s ease;
}

.terminal-search input {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.terminal-search input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.terminal-search input:focus {
    border-color: rgba(169, 194, 255, 0.4);
    background: rgba(77, 114, 255, 0.06);
    box-shadow: 0 0 24px rgba(77, 114, 255, 0.1);
}

.terminal-search:focus-within svg {
    stroke: #A9C2FF;
}

/* Premium Select Dropdowns */
.terminal-select {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    outline: none;
    cursor: pointer;
    min-width: 150px;
    transition: all 0.3s ease;
}

.terminal-select:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.terminal-select:focus {
    border-color: rgba(169, 194, 255, 0.4);
    box-shadow: 0 0 20px rgba(77, 114, 255, 0.1);
}

.terminal-select option {
    background: #0f1629;
    color: white;
    padding: 10px;
}

/* Premium View Toggle */
.org-view-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.view-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-btn svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
}

.view-toggle-btn.active {
    background: linear-gradient(135deg, rgba(77, 114, 255, 0.2) 0%, rgba(90, 134, 255, 0.15) 100%);
    border-color: rgba(169, 194, 255, 0.3);
    color: #A9C2FF;
    box-shadow: 0 4px 16px rgba(77, 114, 255, 0.15);
}

.view-toggle-btn.active svg {
    filter: drop-shadow(0 0 6px rgba(169, 194, 255, 0.4));
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.sort-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.terminal-select-sm {
    padding: 8px 12px;
    font-size: 0.8rem;
    min-width: 120px;
}

.sort-dir-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sort-dir-btn svg {
    width: 16px;
    height: 16px;
}

.sort-dir-btn:hover {
    background: rgba(77, 114, 255, 0.2);
    color: #A9C2FF;
}

.sort-dir-btn.desc svg {
    transform: rotate(180deg);
}

/* Premium Organization Cards Grid */
.org-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.org-card {
    background: linear-gradient(135deg, rgba(15, 22, 45, 0.8) 0%, rgba(20, 28, 55, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 194, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-card:hover {
    background: linear-gradient(135deg, rgba(20, 28, 55, 0.9) 0%, rgba(25, 35, 70, 0.75) 100%);
    border-color: rgba(169, 194, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(77, 114, 255, 0.08);
}

.org-card:hover::before {
    opacity: 1;
}

.org-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.org-card-title {
    flex: 1;
}

.org-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.org-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.org-card-actions {
    display: flex;
    gap: 6px;
}

.org-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.org-card-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.org-card-field.full-width {
    grid-column: 1 / -1;
}

.org-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

.org-card-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    word-break: break-word;
}

.org-card-value.email-link {
    color: #A9C2FF;
    text-decoration: none;
}

.org-card-value.email-link:hover {
    text-decoration: underline;
}

.org-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 12px;
    flex-wrap: wrap;
}

.org-card-email-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.email-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.email-action-btn svg {
    width: 14px;
    height: 14px;
}

.email-action-btn:hover {
    background: rgba(77, 114, 255, 0.15);
    border-color: rgba(77, 114, 255, 0.3);
    color: #A9C2FF;
}

.email-action-btn.btn-success:hover {
    background: rgba(46, 213, 115, 0.15);
    border-color: rgba(46, 213, 115, 0.3);
    color: #2ED573;
}

.email-action-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.email-action-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Premium Table Styles */
.terminal-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(10, 15, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.terminal-table {
    width: 100%;
    border-collapse: collapse;
}

.terminal-table th,
.terminal-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
    vertical-align: middle;
}

.terminal-table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(169, 194, 255, 0.7);
    background: rgba(77, 114, 255, 0.06);
    position: sticky;
    top: 0;
}

.terminal-table td {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.terminal-table tbody tr {
    transition: all 0.25s ease;
}

.terminal-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(77, 114, 255, 0.08) 0%, rgba(77, 114, 255, 0.03) 100%);
}

.td-name {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    min-width: 240px;
    max-width: 300px;
    line-height: 1.4;
    padding: 14px 16px !important;
    letter-spacing: 0.3px;
    background: rgba(77, 114, 255, 0.08);
    border-left: 3px solid #4D72FF;
}

.td-actions {
    display: flex;
    gap: 8px;
}

.terminal-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.terminal-action-btn svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.6);
}

.terminal-action-btn:hover {
    background: rgba(77, 114, 255, 0.2);
}

.terminal-action-btn:hover svg {
    stroke: #A9C2FF;
}

.terminal-action-delete:hover {
    background: rgba(255, 107, 122, 0.2);
}

.terminal-action-delete:hover svg {
    stroke: #FF6B7A;
}

.terminal-action-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    width: auto;
    height: auto;
}

.terminal-action-email span {
    color: rgba(255, 255, 255, 0.7);
}

.terminal-action-email:hover {
    background: rgba(46, 213, 115, 0.2);
}

.terminal-action-email:hover svg {
    stroke: #2ED573;
}

.terminal-action-email:hover span {
    color: #2ED573;
}

.terminal-action-followup:hover {
    background: rgba(138, 43, 226, 0.2);
}

.terminal-action-followup:hover svg {
    stroke: #BB86FC;
}

.terminal-action-demo:hover {
    background: rgba(46, 213, 115, 0.2);
}

.terminal-action-demo:hover svg {
    stroke: #2ED573;
}

.terminal-no-email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.td-outreach {
    white-space: nowrap;
}

.outreach-buttons {
    display: flex;
    gap: 6px;
}

.email-dropdown-wrapper {
    position: relative;
}

.email-template-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: rgba(30, 30, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 6px;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 100;
    backdrop-filter: blur(12px);
}

.email-template-dropdown.active {
    display: block;
}

.email-dropdown-header {
    padding: 6px 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
}

.email-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.email-dropdown-item:hover {
    background: rgba(77, 114, 255, 0.2);
    color: #fff;
}

.email-dropdown-item svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.email-dropdown-item:hover svg {
    stroke: #A9C2FF;
}

.email-dropdown-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.email-dropdown-item.disabled:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

.email-dropdown-item.disabled:hover svg {
    stroke: rgba(255, 255, 255, 0.4);
}

.btn-completed {
    background: rgba(46, 213, 115, 0.15) !important;
    border-color: rgba(46, 213, 115, 0.3) !important;
}

.btn-completed svg {
    stroke: #2ED573 !important;
}

.email-pipeline-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    flex-wrap: wrap;
}

.pipeline-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pipeline-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

.pipeline-tab.active {
    background: rgba(77, 114, 255, 0.15);
    border-color: rgba(77, 114, 255, 0.3);
    color: #fff;
}

.pipeline-tab-label {
    white-space: nowrap;
}

.pipeline-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pipeline-tab.active .pipeline-tab-count {
    background: rgba(77, 114, 255, 0.3);
}

.badge-stage-none {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.badge-stage-first {
    background: rgba(77, 114, 255, 0.2);
    border: 1px solid rgba(77, 114, 255, 0.3);
    color: #A9C2FF;
}

.badge-stage-followup {
    background: rgba(46, 213, 115, 0.2);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ED573;
}

.sortable-header {
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.sortable-header:hover {
    background: rgba(77, 114, 255, 0.15);
    color: #A9C2FF;
}

.sort-icon {
    display: inline-block;
    margin-left: 4px;
    opacity: 0.3;
    font-size: 0.7em;
}

.sort-icon::after {
    content: '⇅';
}

.sortable-header.sort-asc .sort-icon,
.sortable-header.sort-desc .sort-icon {
    opacity: 1;
    color: #A9C2FF;
}

.sortable-header.sort-asc .sort-icon::after {
    content: '↑';
}

.sortable-header.sort-desc .sort-icon::after {
    content: '↓';
}

.terminal-email-templates {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.terminal-email-templates-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-email-templates-header svg {
    width: 20px;
    height: 20px;
    stroke: #4D72FF;
}

.terminal-email-templates-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.template-category-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(77, 114, 255, 0.2);
    border: 1px solid rgba(77, 114, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #A9C2FF;
    white-space: nowrap;
}

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

.terminal-email-templates .terminal-form-group:last-child {
    margin-bottom: 0;
}

#templatePreview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Comfortaa', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 12px;
    resize: vertical;
    width: 100%;
}

#templatePreview:focus {
    outline: none;
    border-color: #4D72FF;
}

.terminal-btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #4D72FF, #5A86FF);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn-copy:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 114, 255, 0.4);
}

.terminal-btn-copy svg {
    width: 16px;
    height: 16px;
}

.terminal-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.badge-category {
    background: rgba(169, 194, 255, 0.15);
    color: #A9C2FF;
}

.badge-device {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.badge-status-lead {
    background: rgba(255, 184, 48, 0.15);
    color: #FFB830;
}

.badge-status-contacted {
    background: rgba(0, 200, 255, 0.15);
    color: #00C8FF;
}

.badge-status-followup {
    background: rgba(255, 153, 0, 0.15);
    color: #FF9900;
}

.badge-status-interested {
    background: rgba(169, 194, 255, 0.15);
    color: #A9C2FF;
}

.badge-status-demo {
    background: rgba(138, 43, 226, 0.15);
    color: #BB86FC;
}

.badge-status-active {
    background: rgba(46, 213, 115, 0.15);
    color: #2ED573;
}

.badge-status-inactive {
    background: rgba(255, 107, 122, 0.15);
    color: #FF6B7A;
}

.badge-status-invited {
    background: rgba(255, 184, 48, 0.15);
    color: #FFB830;
}

.badge-status-onboarding {
    background: rgba(0, 200, 255, 0.15);
    color: #00C8FF;
}

.badge-status-churned {
    background: rgba(255, 107, 122, 0.15);
    color: #FF6B7A;
}

.badge-email-notsent {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.badge-email-sent {
    background: rgba(77, 114, 255, 0.15);
    color: #7B9FFF;
}

.badge-email-followup {
    background: rgba(138, 43, 226, 0.15);
    color: #BB86FC;
}

.badge-email-demo {
    background: rgba(46, 213, 115, 0.15);
    color: #2ED573;
}

.badge-email-notinterested {
    background: rgba(255, 107, 122, 0.15);
    color: #FF6B7A;
}

.terminal-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.terminal-empty-state svg {
    width: 64px;
    height: 64px;
    stroke: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.terminal-empty-state p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* Premium Modal Styles */
.terminal-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.terminal-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.terminal-modal-content {
    background: linear-gradient(135deg, rgba(15, 22, 45, 0.98) 0%, rgba(18, 26, 55, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 32px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

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

.terminal-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 194, 255, 0.3), transparent);
}

.terminal-modal-small {
    max-width: 400px;
}

.terminal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(77, 114, 255, 0.03);
}

.terminal-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terminal-modal-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.terminal-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.terminal-modal-close:hover {
    background: rgba(255, 107, 122, 0.15);
    border-color: rgba(255, 107, 122, 0.3);
}

.terminal-modal-close:hover svg {
    stroke: #FF8A8A;
}

.terminal-modal-message {
    padding: 28px 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Premium Form Styles */
.terminal-form {
    padding: 28px 32px;
}

.terminal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.terminal-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-form-full {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.terminal-form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(169, 194, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.terminal-form-group input,
.terminal-form-group select,
.terminal-form-group textarea {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.terminal-form-group input:hover,
.terminal-form-group select:hover,
.terminal-form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.terminal-form-group input:focus,
.terminal-form-group select:focus,
.terminal-form-group textarea:focus {
    border-color: rgba(169, 194, 255, 0.4);
    background: rgba(77, 114, 255, 0.06);
    box-shadow: 0 0 24px rgba(77, 114, 255, 0.1);
}

.terminal-form-group input::placeholder,
.terminal-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.terminal-form-group input:focus,
.terminal-form-group select:focus,
.terminal-form-group textarea:focus {
    border-color: rgba(77, 114, 255, 0.5);
    background: rgba(77, 114, 255, 0.05);
}

.terminal-form-group select option {
    background: #1a1a2e;
    color: white;
}

.terminal-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.terminal-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-btn-primary {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #4D72FF 0%, #5A86FF 100%);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 114, 255, 0.3);
}

.terminal-btn-secondary {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.terminal-btn-danger {
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 107, 122, 0.2);
    color: #FF6B7A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn-danger:hover {
    background: rgba(255, 107, 122, 0.3);
}

.terminal-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 12px;
    background: #1a1a2e;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
}

.terminal-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.terminal-toast.success {
    border-left: 4px solid #2ED573;
}

.terminal-toast.error {
    border-left: 4px solid #FF6B7A;
}

.terminal-toast.info {
    border-left: 4px solid #4D72FF;
}

.marketing-section {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.marketing-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.marketing-accordions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marketing-accordion {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.marketing-accordion:hover {
    border-color: rgba(77, 114, 255, 0.3);
}

.marketing-accordion.open {
    border-color: rgba(77, 114, 255, 0.4);
    background: rgba(77, 114, 255, 0.05);
}

.marketing-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-family: 'Comfortaa', system-ui, sans-serif;
    transition: all 0.2s ease;
}

.marketing-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(77, 114, 255, 0.2), rgba(90, 134, 255, 0.1));
}

.accordion-icon svg {
    width: 18px;
    height: 18px;
    stroke: #A9C2FF;
}

.accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.accordion-arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.accordion-arrow svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.4);
}

.marketing-accordion.open .accordion-arrow {
    transform: rotate(180deg);
}

.marketing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.marketing-accordion.open .marketing-accordion-content {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.strategy-section {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.strategy-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #A9C2FF;
    margin-bottom: 12px;
}

.strategy-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.strategy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4D72FF;
    font-weight: bold;
}

.strategy-list.compact li {
    margin-bottom: 4px;
}

.qr-card-sample {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.qr-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.qr-card-content strong {
    font-size: 1rem;
    color: #A9C2FF;
}

.qr-card-content span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.qr-card-content em {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 4px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(77, 114, 255, 0.3);
    border-radius: 8px;
    background: rgba(77, 114, 255, 0.1);
    color: #A9C2FF;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-top: 12px;
}

.copy-btn:hover {
    background: rgba(77, 114, 255, 0.2);
    border-color: rgba(77, 114, 255, 0.5);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
}

.email-template-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.email-subject {
    padding: 12px 16px;
    background: rgba(77, 114, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: #A9C2FF;
}

.email-body {
    padding: 16px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    white-space: pre-wrap;
    font-family: 'Comfortaa', system-ui, sans-serif;
}

.email-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: 'Comfortaa', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.action-btn.primary {
    background: linear-gradient(135deg, #4D72FF 0%, #5A86FF 100%);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 114, 255, 0.3);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

.script-block {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    white-space: pre-wrap;
    font-family: 'Comfortaa', system-ui, sans-serif;
}

.script-block strong {
    color: #A9C2FF;
    display: block;
    margin-bottom: 8px;
}

.campaign-block {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.campaign-block p {
    margin-bottom: 8px;
}

.campaign-block p strong {
    color: rgba(255, 255, 255, 0.9);
}

.pitch-block {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #4D72FF;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
}

.phase-roadmap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}

.phase-block {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.2s ease;
}

.phase-block.phase-complete {
    border-color: rgba(46, 213, 115, 0.3);
    background: rgba(46, 213, 115, 0.05);
}

.phase-block.phase-current {
    border-color: rgba(77, 114, 255, 0.4);
    background: rgba(77, 114, 255, 0.08);
}

.phase-block.phase-future {
    opacity: 0.7;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.phase-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.phase-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.phase-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 4px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.phase-item.done .check {
    color: #2ED573;
    font-weight: bold;
}

.phase-item.pending .arrow {
    color: #4D72FF;
}

.phase-connector {
    display: flex;
    justify-content: center;
    color: rgba(77, 114, 255, 0.5);
    font-size: 1.2rem;
    padding: 4px 0;
}

@media (max-width: 768px) {
    .terminal-header {
        padding: 16px 20px;
    }
    
    .terminal-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .terminal-logo {
        height: 28px;
    }
    
    .terminal-header-text h1 {
        font-size: 1rem;
    }
    
    .terminal-header-text p {
        font-size: 0.7rem;
    }
    
    .terminal-main {
        padding: 20px;
    }
    
    .terminal-tabs {
        width: 100%;
    }
    
    .terminal-tab {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .terminal-tab svg {
        width: 16px;
        height: 16px;
    }
    
    .terminal-section {
        padding: 20px;
    }
    
    .terminal-section-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .terminal-add-btn {
        justify-content: center;
    }
    
    .terminal-filters {
        flex-direction: column;
    }
    
    .terminal-search {
        min-width: auto;
    }
    
    .terminal-form-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal-form-actions {
        flex-direction: column;
    }
    
    .terminal-btn-primary,
    .terminal-btn-secondary,
    .terminal-btn-danger {
        width: 100%;
        justify-content: center;
    }
    
    .marketing-section {
        max-height: none;
    }
    
    .org-view-toggle {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sort-controls {
        margin-left: 0;
        justify-content: space-between;
    }
    
    .org-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .org-card-body {
        grid-template-columns: 1fr;
    }
    
    .org-card-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .org-card-email-actions {
        flex-direction: column;
    }
    
    .email-action-btn {
        justify-content: center;
    }
    
    .marketing-accordion-header {
        padding: 14px 16px;
    }
    
    .accordion-icon {
        width: 32px;
        height: 32px;
    }
    
    .accordion-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .accordion-title {
        font-size: 0.9rem;
    }
    
    .strategy-section {
        padding: 16px;
    }
    
    .qr-card-sample {
        flex-direction: column;
    }
    
    .email-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .phase-roadmap {
        gap: 4px;
    }
    
    .phase-connector {
        display: none;
    }
}
