:root {
    /* Color System */
    --bg-dark: #0B0F19;
    --bg-dark-card: rgba(17, 24, 39, 0.7);
    --bg-dark-hover: rgba(31, 41, 55, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    --primary-blue: #4364F7;
    --primary-blue-glow: rgba(67, 100, 247, 0.35);
    
    --accent-cyan: #00E5FF;
    --accent-cyan-glow: rgba(0, 229, 255, 0.3);
    --accent-teal: #10B981;
    --accent-teal-glow: rgba(16, 185, 129, 0.25);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    
    /* Effects */
    --blur-normal: blur(16px);
    --blur-heavy: blur(32px);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Glow Effects */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

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

.orb-1 {
    top: -10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(67, 100, 247, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    animation: pulseOrb 12s infinite alternate;
}

.orb-2 {
    bottom: 20%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    animation: pulseOrb 18s infinite alternate-reverse;
}

.orb-3 {
    top: 40%;
    right: -5%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

@keyframes pulseOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

/* Typography & Layout elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-teal { color: var(--accent-teal) !important; }
.text-cyan { color: var(--accent-cyan) !important; }

.text-gradient {
    background: linear-gradient(135deg, #00E5FF 0%, #4364F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-normal);
    padding: 20px 0;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(11, 15, 25, 0.75);
    backdrop-filter: var(--blur-normal);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px var(--primary-blue-glow));
    transition: transform var(--transition-fast);
}

.logo-group:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-weight: 400;
    font-size: 13px;
    color: var(--accent-cyan);
    display: block;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3a55cf 100%);
    color: white;
    box-shadow: 0 4px 14px var(--primary-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 100, 247, 0.5), 0 0 12px var(--accent-cyan-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-tertiary:hover {
    color: var(--text-primary);
}

.btn-tertiary svg {
    transition: transform var(--transition-fast);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

/* Mobile Nav Drawer */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: var(--blur-heavy);
    z-index: 99;
    padding: 100px 30px 40px;
    border-left: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    color: var(--text-secondary);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(67, 100, 247, 0.08);
    border: 1px solid rgba(67, 100, 247, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #a8c1ff;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(67, 100, 247, 0.1);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Dashboard Mock */
.hero-visual {
    position: relative;
}

.dashboard-mock {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: var(--blur-normal);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: var(--transition-normal);
}

.dashboard-mock:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(67, 100, 247, 0.1);
}

.mock-header {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-dots .red { background-color: #EF4444; }
.mock-dots .yellow { background-color: #F59E0B; }
.mock-dots .green { background-color: #10B981; }

.mock-title {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.mock-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-teal);
    box-shadow: 0 0 6px var(--accent-teal);
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid var(--accent-teal);
    animation: ringPulse 1.8s infinite ease-out;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.status-text {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.mock-body {
    padding: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.grid-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
}

.double-width {
    grid-column: span 2;
}

.card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.chart-container {
    height: 100px;
    margin-bottom: 8px;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

.chart-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

.chart-stats .active-day {
    color: var(--accent-cyan);
    font-weight: 600;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 80px;
}

.metric-highlight {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

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

.feed-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 8px;
}

.feed-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.feed-dot.active {
    background-color: var(--accent-teal);
    box-shadow: 0 0 4px var(--accent-teal);
}

.feed-name {
    color: var(--text-secondary);
    flex: 1;
}

.feed-time {
    color: var(--text-muted);
}

.log-console-mini {
    font-family: var(--font-mono);
    font-size: 11px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 6px;
    height: 70px;
    overflow: hidden;
}

.log-line {
    margin-bottom: 4px;
    color: var(--text-secondary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.log-tag {
    font-weight: 700;
    margin-right: 4px;
}

.tag-success { color: var(--accent-teal); }
.tag-info { color: var(--accent-cyan); }

/* Custodian section */
.custodian-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

.section-title-sm {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
}

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

.custodian-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-fast);
}

.custodian-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    background-color: var(--bg-dark-hover);
}

.custodian-logo-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-initial {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.custodian-card:nth-child(1) .logo-initial { color: #00E5FF; }
.custodian-card:nth-child(2) .logo-initial { color: #3b82f6; }
.custodian-card:nth-child(3) .logo-initial { color: #10B981; }
.custodian-card:nth-child(4) .logo-initial { color: #ec4899; }

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

.custodian-details h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50px;
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--accent-teal);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle-large {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(67, 100, 247, 0.1), 0 0 15px rgba(0, 229, 255, 0.05);
    transform: translateY(-5px);
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background-color: rgba(67, 100, 247, 0.08);
    border: 1px solid rgba(67, 100, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-cyan);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 0 14px var(--primary-blue-glow);
}

.service-icon {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.service-bullets {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.service-bullets li {
    font-size: 13px;
    color: var(--text-primary);
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.service-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

/* Simulator Section */
.simulator-section {
    padding: 100px 0;
    background-color: rgba(0,0,0,0.15);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.simulation-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.sim-step {
    display: flex;
    gap: 16px;
    opacity: 0.6;
    transition: var(--transition-normal);
}

.sim-step.active {
    opacity: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.sim-step.active .step-num {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px var(--primary-blue-glow);
}

.sim-step h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sim-step p {
    font-size: 13px;
    color: var(--text-secondary);
}

.simulator-terminal-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terminal-container {
    background-color: #05070B;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 10px 18px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.t-dot.red { background-color: rgba(239, 68, 68, 0.5); }
.t-dot.yellow { background-color: rgba(245, 158, 11, 0.5); }
.t-dot.green { background-color: rgba(16, 185, 129, 0.5); }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    height: 200px;
    overflow-y: auto;
    color: #D1D5DB;
}

.term-line {
    margin-bottom: 6px;
    line-height: 1.5;
}

.term-line.system-line {
    color: var(--text-muted);
}

.term-line.action-line {
    color: var(--accent-cyan);
}

.term-line.success-line {
    color: var(--accent-teal);
    font-weight: 600;
}

.term-line.warning-line {
    color: #F59E0B;
}

.terminal-footer {
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
}

.sim-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.custodian-select-wrap select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-heading);
    outline: none;
    cursor: pointer;
}

.custodian-select-wrap select:focus {
    border-color: var(--primary-blue);
}

/* Results panel showing reconciled AUM */
.sim-results-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 16px;
    transform: scale(0.95);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.sim-results-card.show {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.res-item {
    display: flex;
    flex-direction: column;
}

.res-lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.res-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    margin-top: 2px;
}

/* Security Compliance Visuals */
.security-section {
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 350px;
}

.shield-container {
    width: 140px;
    height: 140px;
    position: relative;
}

.shield-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
    animation: floatShield 4s infinite alternate ease-in-out;
}

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

.glow-ring {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 50%;
    animation: spinRing 25s infinite linear;
}

.glow-ring-outer {
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    border: 1px dashed rgba(67, 100, 247, 0.08);
    border-radius: 50%;
    animation: spinRing 40s infinite linear reverse;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.sec-feat {
    display: flex;
    gap: 16px;
}

.sec-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.sec-feat h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sec-feat p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.testimonial-card:nth-child(2) .author-avatar {
    background-color: var(--accent-teal);
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact / Form Section */
.contact-section {
    padding: 100px 0;
}

.contact-box {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.contact-info-panel {
    background: linear-gradient(135deg, rgba(67, 100, 247, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-right: 1px solid var(--border-color);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-box h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.contact-info-panel p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 16px;
}

.c-detail div {
    display: flex;
    flex-direction: column;
}

.c-detail span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.c-detail strong {
    font-size: 14px;
    color: var(--text-primary);
}

.contact-form-panel {
    padding: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.interactive-form {
    width: 100%;
    transition: var(--transition-normal);
}

.interactive-form.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(67, 100, 247, 0.2);
}

.form-success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 80%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-success-message.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success-message h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-success-message p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer styling */
.main-footer {
    background-color: #070910;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
}

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

.footer-links-column h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-links-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links-column a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom .disclaimer {
    font-size: 11px;
    line-height: 1.5;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .simulator-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-nav-toggle { display: flex; }
    
    .hero-title {
        font-size: 40px;
    }
    
    .custodian-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .custodian-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info-panel, .contact-form-panel {
        padding: 30px 20px;
    }
}
