/* -------------------------------------------------------------
   AgentroXAI - CSS Design System & Layout
   Theme: Premium Minimalist Corporate (Vercel/Linear Aesthetic)
   Colors: Deep Obsidian, Slate Gray, Royal Blue Accent, Crisp White
   ------------------------------------------------------------- */

/* Variables & Base Reset */
:root {
    --bg-primary: #09090b;
    --bg-secondary: #121216;
    --bg-accent: #181820;
    --glass-bg: #121216;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.16);
    
    --gold-primary: #3b82f6; /* Royal Blue */
    --gold-light: #60a5fa;   /* Light Blue */
    --gold-dark: #1d4ed8;    /* Dark Royal Blue */
    --gold-gradient: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    --gold-glow: 0 4px 20px rgba(59, 130, 246, 0.15);
    
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    background-color: var(--bg-primary);
}

/* Subtle Ambient Glows (Barely visible, very elegant) */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.04; /* Very subtle */
}

.blob-1 {
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

.blob-2 {
    top: 35%;
    left: -200px;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    opacity: 0.03;
}

.blob-3 {
    bottom: 10%;
    right: -150px;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
}

/* Containers */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.small-container {
    max-width: 760px;
}

.section-padding {
    padding: 6.5rem 0;
}

.section-padding-top {
    padding-top: 4.5rem;
}

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

.margin-top-sm {
    margin-top: 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

/* Utilities */
.gold-gradient-text {
    color: var(--text-primary); /* Flat crisp white text instead of shiny gradient */
    display: inline;
}

/* Let's highlight specific words with Royal Blue */
#hero h1 span.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 0.8rem;
}

.section-desc {
    max-width: 580px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.badge-gold {
    display: inline-flex;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Premium Minimalist Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

/* Vercel style solid white button */
.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #eaeaea;
    border-color: #eaeaea;
    transform: translateY(-1px);
}

/* Outline button */
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.btn-full {
    width: 100%;
}

/* Flat Premium Cards */
.luxury-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.luxury-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Floating Navigation Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
    background: transparent;
}

#main-header.scrolled {
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.9rem 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
}

.header-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--gold-primary);
}

#navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition-fast);
}

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

.nav-links .nav-cta {
    background: #ffffff;
    color: #000000;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #ffffff;
    transition: var(--transition-smooth);
}

.nav-links .nav-cta:hover {
    background: #eaeaea;
    border-color: #eaeaea;
    color: #000000;
}

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

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

/* Hero Section */
#hero {
    padding-top: 9.5rem;
    padding-bottom: 5.5rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
}

.hero-subtitle {
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.trust-indicators {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.gold-icon {
    color: var(--gold-primary);
}

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

.hero-card {
    padding: 0.8rem;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Badges floating on Hero */
.hero-badge {
    position: absolute;
    background: #181820;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 1.1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hero-badge span {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-badge svg {
    color: var(--gold-primary);
}

.float-badge-1 {
    bottom: 20px;
    left: -15px;
}

.float-badge-2 {
    top: 30px;
    right: -15px;
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: transparent;
    padding: 0.5rem;
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Dark Background Accent */
.dark-bg-accent {
    background-color: #0c0c0f;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Simulator Section */
.simulator-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.sim-selector {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sim-btn {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sim-btn:hover {
    background: #181820;
    color: var(--text-primary);
}

.sim-btn.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--gold-primary);
    color: var(--text-primary);
}

.sim-btn.active svg {
    color: var(--gold-primary);
}

.chat-device {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    height: 480px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-header {
    background: #181820;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10B981;
}

.chat-profile {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.chat-role {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.badge-live {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 50px;
    font-weight: 500;
}

.chat-messages {
    flex: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    max-width: 80%;
    padding: 0.8rem 1.1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.chat-msg.agent {
    background: #181820;
    color: var(--text-primary);
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.chat-msg.user {
    background: var(--gold-gradient);
    color: #ffffff;
    align-self: flex-end;
    font-weight: 500;
}

.chat-msg.system-event {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    align-self: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
}

.chat-options-container {
    padding: 0.8rem 1.2rem;
    background: #0f0f13;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.chat-opt-btn {
    background: #181820;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.chat-opt-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Calculator Section */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
}

.calculator-content h2 {
    margin-bottom: 1.2rem;
}

.calc-inputs {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.input-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-labels label {
    font-size: 0.9rem;
    font-weight: 500;
}

.range-val {
    color: var(--gold-light);
    font-weight: 600;
}

/* Custom Range Input */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #1e1e24;
    border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Result Card */
.calculator-result-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator-result-card h3 {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
}

.result-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 1.2rem 0;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.metric-row strong {
    color: var(--text-primary);
}

.metric-row.highlight strong {
    font-size: 1.35rem;
}

.metric-row.grand-highlight strong {
    font-size: 1.2rem;
}

.roi-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    padding: 2.2rem 2rem;
}

.stars {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.test-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.55;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-style: normal;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Founder Section */
.founder-card {
    background: #121216;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
}

.founder-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 340px;
    display: flex;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 75%, #121216 100%);
}

.founder-message {
    padding: 3rem 2.8rem;
}

.founder-quote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 1rem 0 1.8rem 0;
    font-style: italic;
    border-left: 2px solid var(--gold-primary);
    padding-left: 1.2rem;
}

.founder-meta {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 1rem;
    font-weight: 600;
}

.founder-title {
    font-size: 0.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-card {
    padding: 2.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.85rem;
    min-height: 40px;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Contact Form */
.contact-card {
    padding: 3rem 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
}

.form-success-message {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
}

/* Footer */
footer {
    background-color: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5rem 0 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-left {
    max-width: 320px;
}

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

.footer-bio {
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
    font-size: 0.88rem;
}

.founder-credit {
    font-size: 0.85rem;
}

.founder-credit strong {
    color: var(--gold-primary);
}

.footer-links-group {
    display: flex;
    gap: 3.5rem;
}

.footer-links-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-col ul a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.5rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.2rem;
}

.footer-legal a {
    text-decoration: none;
    color: var(--text-muted);
}

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

/* Responsiveness Media Queries */
@media (max-width: 1024px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-actions, .trust-indicators {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-grid, .features-grid, .simulator-wrapper, .calculator-grid, .testimonials-slider, .founder-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .sim-selector {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.4rem;
    }
    
    .sim-btn {
        flex: 1;
        min-width: 180px;
        justify-content: center;
    }
    
    .founder-img-wrapper {
        min-height: 260px;
    }
    
    .founder-glow {
        background: linear-gradient(0deg, #121216 100%, transparent);
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #09090b;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-nav-active .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .mobile-nav-active .bar:nth-child(2) { opacity: 0; }
    .mobile-nav-active .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card, .founder-message {
        padding: 2rem 1.2rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}
