/* 
   Jesto Enterprise Design System
   Primary Color: #0030DB (Deep Royal Blue)
*/

:root {
    --primary-color: #0030DB;
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F7;
    --border-color: #E5E5E5;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.12);
    --max-width: 1400px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Responsive Typography Scale */
    --fs-display: clamp(2.5rem, 7vw, 4rem); /* 40px to 64px */
    --fs-h2: clamp(2rem, 5vw, 2.75rem);      /* 32px to 44px */
    --fs-h3: clamp(1.5rem, 3vw, 1.75rem);    /* 24px to 28px */
    --fs-body: 1.125rem;                     /* 18px */
    --fs-subtitle: 1.25rem;                  /* 20px */
}

/* --- GLOBAL TYPOGRAPHY STANDARDIZATION --- */
h1 { font-size: var(--fs-display) !important; }
h2, .section-header h2, .feature-content h2, .chat-welcome h2, .ecosystem-header h2 { font-size: var(--fs-h2) !important; }
h3, .proof-text h3, .view-header h3, .card-header h3, .eco-cat-header h3 { font-size: var(--fs-h3) !important; }

.section-header p, .feature-content p, .hero-content p, .product-hero-content p, .ecosystem-header p {
    font-size: var(--fs-body) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 100px 0 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Electric Blue Design Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 80%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
    
}

.hero-content {
    
    margin-bottom: 80px;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 48, 219, 0.06);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--text-main);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: rgba(0, 48, 219, 0.08); /* Light deep royal blue */
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 48, 219, 0.15);
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--primary-color), #6366F1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 580px;
}

/* CTAs */
.hero-btns-left {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-primary-large {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 48, 219, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 48, 219, 0.3);
}

.btn-secondary-large {
    padding: 18px 40px;
    background: white;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    text-decoration: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary-large:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

/* Ratings */
.hero-ratings-left {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.rating-badge i {
    color: #FFB800;
}

.rating-badge span {
    font-weight: 400;
    color: var(--text-muted);
}

/* --- LIVE SYSTEM PREVIEW --- */
.hero-live-preview {
    width: 100%;
    position: relative;
    z-index: 5;
    perspective: 1500px;
}

.live-preview-window {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12), 0 10px 40px rgba(0, 229, 255, 0.1);
    overflow: hidden;
    position: relative;
}

/* Electric Border Glow */
.live-preview-window::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.4), transparent 40%, rgba(99, 102, 241, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.hero-live-preview:hover .live-preview-window {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.window-header {
    background: #F8FAFC;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 40px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.window-address {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 11px;
    color: var(--text-muted);
    flex: 0.6;
    text-align: left;
    font-family: monospace;
}

.window-body {
    min-height: 480px;
    background: #F8FAFC;
    position: relative;
}

/* --- HERO LIVE SYSTEM CYCLING MODULES --- */
.live-module {
    padding: 32px;
    height: 100%;
    display: none;
    flex-direction: column;
    animation: moduleFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-module.active {
    display: flex;
}

@keyframes moduleFadeIn {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.module-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-title-group i {
    font-size: 20px;
    color: var(--primary-color);
}

.module-title-group h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.live-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recording-badge {
    background: rgba(244, 63, 94, 0.1);
    color: #F43F5E;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rec-dot {
    width: 6px;
    height: 6px;
    background: #F43F5E;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0.3; }
}

.module-main-viz {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.centered-viz {
    align-items: center;
    text-align: center;
}

/* Projects Module Styles */
.project-item {
    margin-bottom: 20px;
}

.project-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.p-progress {
    height: 8px;
    background: #F1F5F9;
    border-radius: 10px;
    overflow: hidden;
}

.p-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 1.5s ease-out;
}

.p-fill.done { background: #10B981; }

/* CRM Module Styles */
.crm-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.crm-lead {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.lead-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.lead-details { display: flex; flex-direction: column; }
.l-name { font-weight: 700; color: var(--text-main); font-size: 14px; }
.l-value { font-size: 12px; color: var(--text-muted); }

/* Payroll Module Styles */
.status-badge-big {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.p-count-big {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.p-meta { font-size: 14px; color: var(--text-muted); }

/* Expenses Module Styles */
.expense-analytics-viz {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.e-chart-large {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 120px;
    padding-bottom: 8px;
    border-bottom: 2px solid #F1F5F9;
}

.e-bar-big {
    flex: 1;
    background: var(--primary-light);
    border-radius: 4px 4px 0 0;
    min-width: 24px;
    animation: growUp 1s ease-out forwards;
    transform-origin: bottom;
}

.e-bar-big.active { background: var(--primary-color); }

.e-details-big {
    display: flex;
    justify-content: space-around;
}

.e-stat { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.e-stat span { color: var(--text-main); font-weight: 800; display: block; font-size: 20px; margin-top: 4px; }
.e-stat span.e-rem { color: #F43F5E; }

/* Meetings Module Styles */
.ai-meeting-viz {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.speaker-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.speaker-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.transcription-bubble {
    background: #F1F5F9;
    padding: 14px 20px;
    border-radius: 0 16px 16px 16px;
    flex: 1;
}

.transcription-bubble p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
}

.ai-summary-highlight {
    background: #FFFFFF;
    border: 1px solid rgba(0, 48, 219, 0.1);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 48, 219, 0.05);
}

.ai-label-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.typing-effect-hero {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-main);
    min-height: 3em;
}

/* Enhanced Hero Visual Details */
.mini-avatar-group {
    display: flex;
    margin-top: 12px;
    gap: -8px;
}

.mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    margin-left: -8px;
}

.mini-avatar:first-child { margin-left: 0; }

.detail-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background: #F1F5F9;
    color: var(--text-muted);
}

.detail-badge.success { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.detail-badge.warning { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.pill-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.action-item-pill {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-item-pill i { color: #10B981; font-size: 10px; }

.breakdown-bar {
    height: 6px;
    background: #F1F5F9;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin-top: 12px;
}

.bb-segment { height: 100%; }
.bb-segment.primary { background: var(--primary-color); }
.bb-segment.secondary { background: var(--secondary-color); }
.bb-segment.accent { background: #A855F7; }

@keyframes growUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1200px) {
    .container.hero-split-container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; margin-bottom: 60px; }
    .hero-live-preview { width: 100%; margin: 0; }
}

@media (max-width: 768px) {
    .window-body { min-height: 400px; }
    .live-module { padding: 24px; }
}

/* --- ECOSYSTEM SECTION --- */
.ecosystem-section {
    padding: 120px 0;
    background: #0F172A; /* Deep Navy Corporate Backdrop */
    color: white;
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 48, 219, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 80px;
}

.ecosystem-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.ecosystem-header h2 span {
    color: #818CF8;
}

.ecosystem-header p {
    color: #94A3B8;
    font-size: 18px;
}

.ecosystem-canvas {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.eco-category {
    position: relative;
}

.eco-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.eco-cat-icon {
    width: 40px;
    height: 40px;
    background: rgba(129, 140, 248, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818CF8;
    font-size: 18px;
}

.eco-cat-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #F1F5F9;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.eco-cat-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(129, 140, 248, 0.3), transparent);
    flex: 1;
}

.eco-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.eco-product {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.eco-product:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(129, 140, 248, 0.2);
}

.eco-prod-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 8px;
    transition: var(--transition);
}

.eco-product:hover .eco-prod-info h4 {
    color: #818CF8;
}

.eco-prod-info p {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.5;
}

/* Abstract CSS Graphics */
.eco-prod-graphic {
    width: 48px;
    height: 48px;
    background: rgba(129, 140, 248, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.eco-prod-graphic span {
    display: block;
    position: relative;
}

/* AI Pulse */
.pulse {
    width: 12px;
    height: 12px;
    background: #818CF8;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(129, 140, 248, 0.4);
    animation: eco-pulse 2s infinite;
}

@keyframes eco-pulse {
    0% { box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(129, 140, 248, 0); }
    100% { box-shadow: 0 0 0 0 rgba(129, 140, 248, 0); }
}

/* Ops Bars */
.bars {
    width: 3px;
    height: 15px;
    background: #818CF8;
    box-shadow: 8px 0 0 #818CF8, -8px 0 0 #818CF8;
}

/* PM Grid */
.grid {
    width: 14px;
    height: 14px;
    border: 2px solid #818CF8;
    border-radius: 2px;
}

/* HR Dots */
.dots {
    width: 6px;
    height: 6px;
    background: #818CF8;
    border-radius: 50%;
    box-shadow: 10px 0 0 #818CF8, -10px 0 0 #818CF8;
}

/* --- ENTERPRISE SECURITY VAULT (V3) --- */
.security-vault-section {
    padding: 140px 0;
    background: #FFFFFF;
}

.security-vault-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 40px;
    padding: 80px 60px;
    border: 1px solid rgba(0, 48, 219, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
}

.security-vault-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 48, 219, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.vault-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.vault-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.vault-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.vault-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.vault-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.vault-pillar {
    background: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vault-pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 48, 219, 0.08);
    border-color: var(--primary-light);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 48, 219, 0.05);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.vault-pillar:hover .pillar-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.pillar-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-main);
    display: block;
}

@media (max-width: 992px) {
    .vault-pillars { grid-template-columns: repeat(2, 1fr); }
    .vault-header h2 { font-size: 36px; }
}

@media (max-width: 576px) {
    .vault-pillars { grid-template-columns: 1fr; }
    .security-vault-card { padding: 60px 30px; }
}

/* Payroll Flow */
.flow {
    width: 20px;
    height: 2px;
    background: #818CF8;
}
.flow::before {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border: 5px solid transparent;
    border-left-color: #818CF8;
}

/* Scheduling Time */
.time {
    width: 16px;
    height: 16px;
    border: 2px solid #818CF8;
    border-radius: 50%;
}
.time::after {
    content: '';
    width: 6px;
    height: 2px;
    background: #818CF8;
    position: absolute;
    top: 7px;
    left: 7px;
}

/* Expense Card */
.card {
    width: 20px;
    height: 14px;
    border: 2px solid #818CF8;
    border-radius: 3px;
}

/* Fleet Map */
.map {
    width: 16px;
    height: 16px;
    border-left: 2px solid #818CF8;
    transform: rotate(45deg);
}
.map::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #818CF8;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
    .hero-content h1 {
        font-size: 56px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .eco-product-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .hero-split-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
        gap: 60px;
    }
    .hero-content {
        margin-bottom: 0;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns-left {
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 32px;
    }
    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    .hero-ratings-left {
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }
    .video-mockup-wrapper {
        transform: rotateX(3deg);
        border-radius: 12px 12px 0 0;
    }
    .mockup-content-viz {
        height: 350px;
    }
    .viz-sidebar {
        display: none;
    }

    /* Ecosystem Responsive */
    .ecosystem-header h2 { font-size: 36px; }
    .eco-product-list { grid-template-columns: 1fr; }
    .eco-cat-header h3 { font-size: 16px; }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 0;
    }
    .hero-content h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .mockup-content-viz {
        height: 280px;
    }
    .viz-main {
        padding: 24px;
    }
    .eco-product {
        padding: 16px;
        gap: 16px;
    }
}

/* --- PRESS / FEATURED ON SECTION --- */
/* --- PRESS / FEATURED ON SECTION --- */
.press-section {
    padding: 80px 0;
    background: #FFFFFF;
    
    position: relative;
    z-index: 10;
}

.press-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 0.8;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.press-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    opacity: 0.5;
}

.press-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    filter: grayscale(1) opacity(0.6);
}

.press-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px);
}

/* --- HOME PAGE EXPANSION: SECURITY, FAQ, CTA --- */
.vault-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.detail-item h4 i { color: var(--primary-color); font-size: 16px; }

.detail-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section { padding: 120px 0; background: #F8FAFC; }
.faq-container { max-width: 800px; margin: 60px auto 0; }

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 48, 219, 0.08);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.faq-question i { font-size: 14px; transition: transform 0.3s ease; color: var(--primary-color); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer { padding: 0 32px; max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-answer { padding: 0 32px 30px; max-height: 300px; }

.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: 16px; }

/* Final CTA Section */
.final-cta-section { padding-bottom: 120px; background: #F8FAFC; }

.cta-banner {
    background: linear-gradient(135deg, #0030DB 0%, #001A72 100%);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content { max-width: 600px; position: relative; z-index: 2; }
.cta-content h2 { font-size: 48px; font-weight: 800; margin-bottom: 24px; line-height: 1.1; letter-spacing: -2px; }
.cta-content p { font-size: 20px; opacity: 0.9; margin-bottom: 48px; }
.cta-btns { display: flex; gap: 20px; }

.cta-stats { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 2; }
.stat-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-pill .val { font-size: 36px; font-weight: 800; }
.stat-pill .lab { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

@media (max-width: 992px) {
    .cta-banner { flex-direction: column; padding: 60px 40px; text-align: center; }
    .cta-content { margin-bottom: 40px; }
    .cta-content h2 { font-size: 36px; }
    .cta-btns { justify-content: center; flex-direction: column; align-items: center; }
    .cta-btns .btn-primary-large, .cta-btns .btn-secondary-large { width: 100%; max-width: 400px; }
    .cta-stats { flex-direction: row; justify-content: center; width: 100%; }
    .stat-pill { flex: 1; padding: 20px; }
    .vault-details-grid { grid-template-columns: 1fr; }
}

/* THE TIMES OF INDIA STYLE */
.press-logo.toi {
    font-family: 'Georgia', serif;
    color: #1A1A1A;
}

.press-logo.toi .the {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 2px;
}

.press-logo.toi .main {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* NEW YORK WEEKLY STYLE */
.press-logo.nyw {
    font-family: 'Ubuntu', sans-serif;
    color: #000000;
    text-align: center;
}

.press-logo.nyw .new-york {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.5px;
    display: block;
    line-height: 1;
}

.press-logo.nyw .weekly {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.9;
}

@media (max-width: 768px) {
    .press-logos {
        gap: 40px;
    }
    .press-divider {
        display: none;
    }
}

/* --- APPS ECOSYSTEM SECTION --- */
.apps-section {
    padding: 50px 0;
    background: #FFFFFF;
    
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.apps-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.apps-tabs {
    display: flex;
    background: #F8FAFC;
    padding: 6px;
    border-radius: 100px;
    gap: 4px;
    border: 1px solid var(--border-color);
}

.app-tab-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-tab-btn.active {
    background: #FFFFFF;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 48, 219, 0.08);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.app-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 48, 219, 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 48, 219, 0.15);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.app-card:hover::before {
    opacity: 0;
}

.app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.app-card:hover .app-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

.app-icon.indigo { background: rgba(79, 70, 229, 0.08); color: #4F46E5; }
.app-icon.blue { background: rgba(37, 99, 235, 0.08); color: #2563EB; }
.app-icon.purple { background: rgba(147, 51, 234, 0.08); color: #9333EA; }
.app-icon.teal { background: rgba(13, 148, 136, 0.08); color: #0D9488; }
.app-icon.orange { background: rgba(249, 115, 22, 0.08); color: #F97316; }
.app-icon.cyan { background: rgba(8, 145, 178, 0.08); color: #0891B2; }
.app-icon.green { background: rgba(22, 163, 74, 0.08); color: #16A34A; }

.app-content {
    width: 100%;
}

.app-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.app-card:hover .app-content h3 {
    color: #FFFFFF;
}
@media (max-width: 992px) {
    .advantage-block { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .advantage-text p { margin: 0 auto; }
    .advantage-visual { min-height: 360px; }
    .natural-cta-banner h2 { font-size: 36px; }
}


.app-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.app-card:hover .app-content p {
    color: rgba(255, 255, 255, 0.85);
}

.app-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.app-card:hover .app-link {
    color: #FFFFFF;
}

.app-link:hover {
    gap: 12px;
    color: #0026AD;
}

@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
    .app-card {
        padding: 30px;
    }
}
