/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-optical-sizing: auto;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Wrap all sections after the comparison in a solid dark background
   to avoid gradient peeking through collapsed margins/gaps */
.dark-wrap {
    background: var(--dark-bg);
}

/* Smooth scrolling for in-page anchors (respects reduced motion) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Scroll padding to account for fixed header when using anchor links */
html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

/* Color Variables */
:root {
    --primary-green: #00ff88;
    --secondary-green: #00cc6a;
    --primary-blue: #4a9eff;
    --secondary-blue: #3b82f6;
    --accent-yellow: #ffd700;
    --accent-pink: #ffa3ae;
    --text-gray: #a0a9c0;
    --dark-bg: #0a0e1a;
    --card-bg: #1a1f2e;
    --border-color: #2a2f3e;
    --header-height: 72px;
}

/* Typography */
.text-green { color: var(--primary-green); }
.text-blue { color: var(--primary-blue); }
.text-yellow { color: var(--accent-yellow); }
.text-pink { color: var(--accent-pink); }

/* Tier-specific price colors */
/* removed tier-specific price colors (reverted) */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Make header logo link look like brand (no underline, inherit color) */
a.logo { text-decoration: none; color: inherit; }

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--card-bg);
    color: var(--primary-green);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-right {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary, .btn-primary-large {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary:hover, .btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn-secondary, .btn-secondary-large {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover, .btn-secondary-large:hover {
    background: var(--card-bg);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: #000000;
}

.btn-outline-red {
    background: transparent;
    color: #ff4757;
    border: 1px solid #ff4757;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-red:hover {
    background: #ff4757;
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    /* Ensure hero covers full viewport height */
    min-height: 100vh;
    /* Better on mobile to account for dynamic UI */
    min-height: 90svh;
}

/* Rotating text fade helper */
.rotating-text {
    display: inline-block;
    transition: opacity 300ms ease;
}
.rotating-text.is-hidden {
    opacity: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkmark {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-disclaimer {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

/* Floating hero image with neon gradient shadow */
.hero-logo {
    width: min(60vw, 690px);
    height: auto;
    border-radius: 16px;
    animation: floatY 6s ease-in-out infinite;
    will-change: transform;
    filter: drop-shadow(0 8px 20px rgba(0, 255, 136, 0.15))
            drop-shadow(0 8px 20px rgba(74, 158, 255, 0.12));
}

.hero-image::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: clamp(180px, 50%, 320px);
    height: 18px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.75;
    pointer-events: none;
    animation: shadowFloat 6s ease-in-out infinite;
}

.cyber-figure {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, rgba(74, 158, 255, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-figure::before {
    content: "🥷";
    font-size: 8rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
}

/* Stats Section */
/* Video Section */
.video-section {
    padding: 4rem 2rem;
    background: var(--bg-main);
    max-width: 1400px;
    margin: 0 auto;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video-item {
    width: 100%;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stats {
    padding: 0.5rem 2rem 4rem;
    background: rgba(26, 31, 46, 0.5);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

/* Value Proposition Section */
.value-prop {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.feature-icon {
    margin-bottom: 1rem;
}

/* SVG icon sizing and color control */
.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

/* Material Symbols sizing for feature icons */
.feature-icon .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    font-size: 2.5rem;
    line-height: 1;
    display: inline-block;
}

/* Alternate brand colors by card position */
.features-grid .feature-card:nth-child(1) .feature-icon,
.features-grid .feature-card:nth-child(3) .feature-icon {
    color: var(--primary-green);
}
.features-grid .feature-card:nth-child(2) .feature-icon,
.features-grid .feature-card:nth-child(4) .feature-icon {
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.diagram-mockup {
    margin-top: 4rem;
}

.mockup-placeholder {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: #000000;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-feature {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.pricing-cta {
    margin-top: 3rem;
}

.pricing-cta p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Feature Comparison Section */
.feature-comparison {
    padding: 6rem 2rem;
    background: rgba(26, 31, 46, 0.3);
}

/* Center the Feature Comparison title */
.feature-comparison .section-title {
    text-align: center;
}

.feature-comparison .section-subtitle {
    text-align: center;
}

/* Make all sections after the Feature Comparison use the dark base background */
#feature-comparison ~ section {
    background: var(--dark-bg) !important;
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-col {
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-col {
    text-align: center;
    position: relative;
}

.plan-col.popular {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
}

.popular-badge-small {
    background: var(--primary-green);
    color: #000000;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-weight: 800;
    font-size: 1.2rem;
}

.feature-section {
    padding: 2rem;
}

.section-header {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(42, 47, 62, 0.5);
    align-items: center;
}

.feature-name {
    text-align: left;
}

.feature-name strong {
    display: block;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.feature-check {
    text-align: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-cross {
    text-align: center;
    color: #ff4757;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Generic centered value cell (for badges/labels) */
.feature-value {
    text-align: center;
}

/* Pills for capability levels */
.pill {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
}
.pill-basic,
.pill-static {
    background: transparent;
    color: var(--text-gray);
    border-color: var(--border-color);
}
.pill-advanced,
.pill-dynamic {
    background: var(--primary-green);
    color: #000000;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-green);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--primary-green);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-icon {
    margin-bottom: 1.5rem;
}

/* SVG sizing for step icons */
.step-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

/* Step icon brand colors: 1 & 3 green, 2 blue */
.how-it-works .steps-grid .step-card:nth-child(1) .step-icon,
.how-it-works .steps-grid .step-card:nth-child(3) .step-icon {
    color: var(--primary-green);
}
.how-it-works .steps-grid .step-card:nth-child(2) .step-icon {
    color: var(--primary-blue);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(74, 158, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-blue);
}

/* Integrations Section */
.integrations {
    padding: 6rem 2rem;
    background: rgba(26, 31, 46, 0.3);
    text-align: center;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}

.integration-icon {
    margin-bottom: 1rem;
}

.integration-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.integration-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Ensure PNG logos display crisply and centered */
.integration-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Monitoring Section */
.monitoring {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.monitoring-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.monitoring-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.monitoring-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--dark-bg); /* icon color; overridden per card when needed */
}

.monitoring-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

/* Colored circle backgrounds per card */
.monitoring-card:nth-child(1) .monitoring-icon {
    background: var(--primary-green);
    color: var(--dark-bg);
}
.monitoring-card:nth-child(2) .monitoring-icon {
    background: var(--primary-blue);
    color: #ffffff;
}
.monitoring-card:nth-child(3) .monitoring-icon {
    background: var(--accent-yellow);
    color: var(--dark-bg);
}

/* Small colored divider under icon */
.monitoring-divider {
    width: 120px;
    height: 4px;
    border-radius: 2px;
    margin: 0.75rem auto 1.25rem;
    background: var(--border-color);
}
.monitoring-card:nth-child(1) .monitoring-divider { background: var(--primary-green); }
.monitoring-card:nth-child(2) .monitoring-divider { background: var(--primary-blue); }
.monitoring-card:nth-child(3) .monitoring-divider { background: var(--accent-yellow); }

.monitoring-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.monitoring-card p {
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: rgba(26, 31, 46, 0.3);
    text-align: center;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--primary-green);
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-title {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-disclaimer {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: rgba(26, 31, 46, 0.3);
    text-align: center;
}

/* About page hero */
.about-hero {
    /* Center hero content both vertically and horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--header-height));
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-hero .section-title {
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    text-align: left;
}

.about-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Centered variant for a single about card */
.about-card.center {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-points {
    margin-top: 2rem;
    padding-left: 1.25rem; /* room for bullets */
    list-style: disc;
}
.mission-points li {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.values-list {
    margin-top: 2rem;
    padding-left: 0;
    list-style: none;
}
.values-list li {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.values-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
    line-height: 1.2;
}
.values-list li:last-child {
    margin-bottom: 0;
}
.values-list h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    margin-top: 0;
}
.values-list p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

blockquote {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
    margin-top: 2rem;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    text-align: center;
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
}
.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000000;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}
.team-role {
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    text-align: left;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.contact-option {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}


.option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.option-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* (Free Trial highlight, badges, and button styles removed per request) */

.option-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.option-content p {
    color: var(--text-gray);
    line-height: 1.5;
}

.contact-details {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.contact-details p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem; /* more breathing room between columns */
    max-width: 1400px; /* align with wider sections */
    margin: 0 auto;
}

/* Make Product, Company, Resources independent columns */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 6rem; /* row-gap, column-gap: larger column spacing */
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .monitoring-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links { grid-template-columns: 1fr; }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animations for hero image and its shadow */
@keyframes floatY {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes shadowFloat {
    0%   { transform: translateX(-50%) scale(1); opacity: 0.75; }
    50%  { transform: translateX(-50%) scale(0.95); opacity: 0.6; }
    100% { transform: translateX(-50%) scale(1); opacity: 0.75; }
}

.hero-content,
.feature-card,
.pricing-card,
.step-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}




/* File: styles.css — logo sizing fix
   Paste this block at the END of your current CSS so it overrides earlier rules.
*/

:root {
  /* independent from your color vars */
  --logo-size-min: 28px;
  --logo-size-pref: 36px;
  --logo-size-max: 44px;
}

/* Header/logo sizing & containment */
.nav-left { align-items: center; }
.logo { gap: 0.5rem; min-width: 0; }

/* The square that holds the image */
.brand-logo {
  inline-size: clamp(var(--logo-size-min), 4.2vw, var(--logo-size-max));
  block-size: clamp(var(--logo-size-min), 4.2vw, var(--logo-size-max));
  display: grid;
  place-items: center;
  flex: 0 0 auto; /* why: prevent flex from stretching/shrinking the logo */
}

/* Ensure image never overflows and keeps aspect ratio */
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* why: avoids distortion/cropping for wide/tall source logos */
  display: block;
}

/* Hard cap if some global rule inflates images inside .nav */
.nav .logo-img { max-width: var(--logo-size-max); max-height: var(--logo-size-max); }

/* Optional: keep text tidy next to the logo */
.logo-text {
  font-family: 'Orbitron', 'Sora', 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500; /* Medium */
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  white-space: nowrap;
}

/* Safety net for all images (does not up-scale) */
img { max-width: 100%; height: auto; }

/* Footer-specific cap if you ever switch to an <img> there */
.footer .logo .logo-img { max-width: 24px; max-height: 24px; }

/* Slightly smaller logo on very small screens */
@media (max-width: 420px) {
  :root { --logo-size-pref: 30px; --logo-size-max: 36px; }
}

/* Optional compact mode: add .header--compact on scroll for a tighter header */
.header.header--compact .brand-logo { inline-size: 28px; block-size: 28px; }
.header.header--compact .logo-text { font-size: 0.9rem; }

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile Navigation Toggle - Base styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Tablet Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav {
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
    
    .nav-right .btn-secondary,
    .nav-right .btn-primary {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        padding: calc(var(--header-height) + 1rem) 1rem 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Stats Section */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Form Layout */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Simple mobile navigation */
    .nav {
        padding: 0.5rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Mobile dropdown menu */
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1f2e;
        flex-direction: column;
        padding: 1rem;
        z-index: 1000;
    }
    
    /* Video Section */
    .video-section {
        padding: 2rem 1rem;
    }
    
    .video-container {
        gap: 2rem;
    }
    
    .video-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Hero section spacing */
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    /* Stats Section */
    .stats {
        padding: 2rem 1rem;
        padding-top: calc(var(--header-height) + 1rem);
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Features */
    .value-prop {
        padding: 2rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Pricing */
    .pricing {
        padding: 2rem 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    /* Feature Comparison */
    .feature-comparison {
        padding: 2rem 1rem;
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 2rem 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* About Section */
    .about {
        padding: 2rem 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact */
    .contact {
        padding: 2rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Typography Adjustments */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    /* Button Adjustments */
    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-secondary-large {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Touch-friendly targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 320px) {
    .nav {
        padding: 0.125rem 0.5rem;
        height: 40px;
        min-height: 40px;
    }
    
    .brand-logo {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-toggle {
        font-size: 1rem;
        min-width: 28px;
        min-height: 28px;
    }
    
    .hero {
        height: 100vh;
        padding: calc(var(--header-height) + 0.25rem) 1rem 1.75rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-primary-large,
    .btn-secondary-large {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: calc(var(--header-height) + 0.5rem) 1rem 1.5rem;
    }
    
    .hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-image {
        flex: 0 0 200px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
