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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: #025c3e;
}

.btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-white {
    background: #fff;
    color: #025c3e;
}

.btn-white:hover {
    background: #f0fdf4;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-icon, .btn-icon-left {
    margin-left: 0.5rem;
}

.btn-icon-left {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

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

.logo-image {
    height: 45px;
    width: auto;
    max-width: 225px;
    display: block;
    object-fit: contain;
}

.logo-icon {
    color: #025c3e;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #025c3e;
    font-family: 'Courier New', monospace;
}

.version {
    font-size: 0.75rem;
    color: #6b7280;
    font-family: 'Courier New', monospace;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #025c3e;
}

.nav-cta {
    background: #025c3e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-cta:hover {
    background: #032f20;
    color: #fff;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

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

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

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

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #032f20 0%, #025c3e 50%, #032f20 100%);
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(74, 222, 128, 0.2);
}

.hero-orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(74, 222, 128, 0.1);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.highlight {
    color: #86efac;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.check-icon {
    color: #86efac;
}

.hero-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.hero-card-image {
    position: relative;
    height: 12rem;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-large {
    color: #86efac;
    opacity: 0.5;
}

.live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: #ef4444;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
}

.hero-card-content {
    display: flex;
    gap: 0.75rem;
}

.hero-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eye-icon { background: rgba(74, 222, 128, 0.2); color: #86efac; }
.zap-icon { background: rgba(74, 222, 128, 0.2); color: #86efac; }
.trend-icon { background: rgba(74, 222, 128, 0.2); color: #86efac; }

.hero-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1fae5;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(2, 92, 62, 0.1);
    color: #025c3e;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-red {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-green {
    color: #025c3e;
}

.text-gray {
    color: #9ca3af;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-code {
    color: #025c3e;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: 'Courier New', monospace;
}

/* Specs Section */
.specs-section {
    padding: 5rem 0;
    background: #fff;
}

.unique-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.unique-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.unique-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    transition: opacity 0.3s ease;
}

.unique-card:hover .unique-card-bg {
    opacity: 0.1;
}

.gradient-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.gradient-green { background: linear-gradient(135deg, #025c3e, #032f20); }
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.unique-card-content {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: border-color 0.3s ease;
}

.unique-card:hover .unique-card-content {
    border-color: #025c3e;
}

.unique-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.unique-icon svg {
    color: #fff;
}

.unique-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.unique-card p {
    color: #6b7280;
}

.subsection-title {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.spec-card {
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.spec-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #025c3e;
}

.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.spec-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(2, 92, 62, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #025c3e;
}

.spec-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: #fff;
}

.badge-exclusive { background: #ef4444; }
.badge-core { background: #025c3e; }
.badge-auto { background: #3b82f6; }

.spec-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.spec-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.spec-features {
    list-style: none;
}

.spec-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.check-small {
    color: #025c3e;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Tech Excellence */
.tech-excellence {
    background: linear-gradient(135deg, #032f20, #025c3e);
    border-radius: 1rem;
    padding: 3rem 2rem;
    color: #fff;
}

.tech-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 2rem;
}

.tech-left h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.tech-features {
    display: grid;
    gap: 1rem;
}

.tech-feature {
    display: flex;
    gap: 0.75rem;
}

.tech-icon {
    color: #86efac;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tech-feature h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tech-feature p {
    color: #d1fae5;
    font-size: 0.875rem;
}

.tech-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.tech-right h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tech-specs {
    display: grid;
    gap: 0.75rem;
}

.tech-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.tech-spec-label {
    color: #d1fae5;
}

.tech-spec-value {
    font-weight: 600;
}

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff, #f9fafb);
}

.comparison-table {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-cell {
    padding: 1.5rem;
    font-weight: 700;
}

.comparison-highlight {
    background: linear-gradient(135deg, #025c3e, #032f20);
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-brand {
    font-size: 1.25rem;
}

.comparison-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f3f4f6;
}

.comparison-row:nth-child(even) {
    background: #f9fafb;
}

.comparison-row .comparison-cell {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.comparison-row .comparison-cell:first-child {
    justify-content: flex-start;
    color: #374151;
}

.comparison-yes {
    background: #f0fdf4 !important;
    border-left: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
}

.comparison-yes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon-green {
    color: #025c3e;
}

.x-icon {
    color: #ef4444;
}

.comparison-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #1f2937;
    color: #fff;
}

.comparison-footer .comparison-cell {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-footer .comparison-cell:first-child {
    align-items: flex-start;
    font-weight: 700;
}

.comparison-footer .comparison-highlight {
    background: #025c3e;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-note {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Reality Comparison */
.reality-comparison {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reality-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid;
}

.reality-bad {
    background: #fef2f2;
    border-color: #fecaca;
}

.reality-good {
    background: #f0fdf4;
    border-color: #025c3e;
}

.reality-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reality-bad h3 {
    color: #7f1d1d;
}

.reality-good h3 {
    color: #025c3e;
}

.reality-list {
    list-style: none;
    counter-reset: item;
    margin-bottom: 1rem;
}

.reality-list li {
    counter-increment: item;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.reality-list li::before {
    content: counter(item) ".";
    font-weight: 700;
}

.reality-bad .reality-list li::before {
    color: #ef4444;
}

.reality-good .reality-list li::before {
    color: #025c3e;
}

.reality-total {
    padding-top: 1rem;
    border-top: 1px solid;
}

.reality-bad .reality-total {
    border-color: #fecaca;
    color: #7f1d1d;
}

.reality-good .reality-total {
    border-color: #025c3e;
    color: #025c3e;
}

/* Comparison CTA */
.comparison-cta {
    background: linear-gradient(135deg, #032f20, #025c3e);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}

.comparison-cta h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.comparison-cta > p {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.comparison-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.comparison-footer-note {
    font-size: 0.875rem;
    color: #d1fae5;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #025c3e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-popular {
    border-color: #025c3e;
    box-shadow: 0 10px 40px rgba(2, 92, 62, 0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #025c3e;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #025c3e;
}

.price-period {
    font-size: 1.25rem;
    color: #6b7280;
}

.pricing-description {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.pricing-trial {
    background: rgba(2, 92, 62, 0.1);
    color: #025c3e;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.feature-highlight {
    font-weight: 600;
    color: #025c3e;
}

.pricing-highlight {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff, #f9fafb);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-form-wrapper {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
}

.text-green {
    color: #025c3e;
}

.contact-form {
    padding: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #025c3e;
}

.contact-sidebar {
    display: grid;
    gap: 1.5rem;
    height: fit-content;
}

.contact-info-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(2, 92, 62, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #025c3e;
    flex-shrink: 0;
}

.contact-info-label {
    font-weight: 600;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #025c3e;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.contact-info-value:hover {
    text-decoration: underline;
}

.contact-info-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.consultation-card {
    background: linear-gradient(135deg, #032f20, #025c3e);
    border-radius: 1rem;
    padding: 1.5rem;
    color: #fff;
}

.consultation-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.75rem;
}

.consultation-card p {
    color: #d1fae5;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.consultation-features {
    list-style: none;
}

.consultation-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.check-green {
    color: #86efac;
}

.response-time {
    background: #fff;
    border: 2px solid rgba(2, 92, 62, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.response-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.response-label {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #025c3e;
}

.response-value {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.footer-code {
    margin-top: 0.5rem;
}

.heart {
    color: #ef4444;
}

/* Bosses Lobby Section */
.lobby-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, #fff);
    position: relative;
    overflow: hidden;
}

.lobby-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
    z-index: 0;
}

.lobby-section .container {
    position: relative;
    z-index: 1;
}

.badge-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
}

.highlight-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lobby-hero {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
}

.lobby-hero-content {
    color: #fff;
}

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

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

.lobby-stat-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.lobby-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.lobby-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.lobby-tagline {
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border-left: 4px solid #fff;
}

.lobby-features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.lobby-feature-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lobby-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lobby-feature-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
    transform: translateY(-4px);
}

.lobby-feature-card:hover::before {
    transform: scaleX(1);
}

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

.lobby-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auction-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
}

.wholesale-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.alert-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.news-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
}

.group-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.emergency-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
}

.job-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #fff;
}

.equipment-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
}

.mentor-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #fff;
}

.lobby-feature-card h4 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.lobby-feature-description {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.lobby-feature-list {
    list-style: none;
    margin-bottom: 1rem;
}

.lobby-feature-list li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

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

.lobby-feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.lobby-tag-urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Lobby Access */
.lobby-access {
    background: linear-gradient(135deg, #f9fafb, #fff);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    border: 2px solid #e5e7eb;
}

.lobby-access-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.lobby-access-left h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.lobby-access-left > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.lobby-access-benefits {
    list-style: none;
}

.lobby-access-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.lobby-access-benefits li:last-child {
    border-bottom: none;
}

.lobby-access-benefits .check-icon {
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.lobby-verification-card {
    background: #fff;
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 2rem;
}

.lobby-verification-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.verification-steps {
    list-style: none;
    margin-bottom: 1.5rem;
}

.verification-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.verification-steps li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    padding-top: 0.25rem;
}

.verification-note {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border-left: 4px solid #fbbf24;
}

.lobby-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 1rem;
}

.lobby-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.lobby-cta-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.feature-disabled {
    color: #9ca3af;
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .comparison-buttons {
        flex-direction: row;
    }
    
    .stats-bar {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lobby-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .unique-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .reality-comparison {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .lobby-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lobby-access-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-popular {
        transform: scale(1.05);
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
    }
    
    .lobby-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
