/* Custom Font - InflatePTX */
@font-face {
    font-family: 'InflatePTX';
    src: url('fonts/inflateptx-chrome.woff2') format('woff2'),
         url('fonts/inflateptx-chrome.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-black: #0a0a0a;
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --neon-green: #39ff14;
    --neon-purple: #b026ff;
    --chrome-light: #e0e0e0;
    --chrome-dark: #808080;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-glow: rgba(57, 255, 20, 0.3);
    --purple-glow: rgba(176, 38, 255, 0.3);
}

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Starfield Background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-black);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'InflatePTX', 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    background: linear-gradient(135deg, #e0e0e0, #808080, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    cursor: pointer;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: var(--neon-green);
    color: var(--bg-black);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px var(--accent-glow);
}

.cta-button::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.chrome-text {
    font-family: 'InflatePTX', 'Orbitron', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: normal;
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #e0e0e0 20%,
        #808080 40%,
        #e0e0e0 60%,
        #ffffff 80%,
        #e0e0e0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(57, 255, 20, 0.6)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    letter-spacing: 8px;
    line-height: 1;
    animation: chromeShine 3s ease-in-out infinite;
}

@keyframes chromeShine {
    0%, 100% {
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 5px 25px rgba(57, 255, 20, 0.4)) brightness(1.2);
    }
}

.subtitle-glow {
    font-family: 'InflatePTX', 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: normal;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 20px var(--accent-glow);
    margin-top: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        text-shadow: 0 0 20px var(--accent-glow);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-glow);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 2rem auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--accent-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.cta-primary {
    display: inline-block;
    background: var(--neon-green);
    color: var(--bg-black);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 0 30px var(--accent-glow);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px var(--accent-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--neon-green), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--neon-green);
    margin: 0 auto;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Apps Section */
.apps-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2);
}

.app-card:hover::before {
    opacity: 1;
}

.app-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.15);
}

.app-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.app-badge.live {
    background: var(--neon-green);
    color: var(--bg-black);
}

.app-badge.coming-soon {
    background: var(--neon-purple);
    color: var(--text-primary);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.app-image {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-card:hover .app-image img {
    transform: scale(1.05);
}

.app-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.app-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.app-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.app-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.app-link:hover {
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Services Section */
.services-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.02), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* Process Section */
.process-section {
    margin-top: 6rem;
}

.process-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.workflow-detail {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Spotlight Section */
.spotlight-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05), rgba(176, 38, 255, 0.05));
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.spotlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.spotlight-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.2);
    color: var(--neon-green);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.spotlight-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.spotlight-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.spotlight-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.spotlight-link {
    color: var(--neon-green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.spotlight-link:hover {
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.consultation-price {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon {
    font-size: 2rem;
}

.method-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-content a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-content a:hover {
    text-shadow: 0 0 10px var(--accent-glow);
}

.contact-cta {
    margin-top: 2rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px var(--accent-glow);
}

.form-submit {
    background: var(--neon-green);
    color: var(--bg-black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--accent-glow);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px var(--accent-glow);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-family: 'InflatePTX', 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: normal;
    background: linear-gradient(135deg, #e0e0e0, #808080, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

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

.footer-column h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Page Hero (for Property AI page) */
.page-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.05), transparent);
}

.page-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.2);
    color: var(--neon-green);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Property Overview */
.property-overview {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.overview-main h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.overview-main > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--neon-green);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--accent-glow);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.02), transparent);
    max-width: 1400px;
    margin: 0 auto;
}

.workflow-steps {
    display: grid;
    gap: 2rem;
}

.workflow-step {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 4px solid var(--neon-green);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.15);
}

.workflow-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-green);
    opacity: 0.2;
    flex-shrink: 0;
    line-height: 1;
}

.workflow-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.workflow-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.workflow-content strong {
    color: var(--neon-green);
}

/* Categories */
.categories-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.15);
}

/* Pricing */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(176, 38, 255, 0.03), transparent);
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2);
}

.price-card.featured {
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.15);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--bg-black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--neon-green);
}

.amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-feature {
    color: var(--text-secondary);
    padding-left: 0.5rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Tech Section */
.tech-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.tech-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Consent Section */
.consent-section,
.terms-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.02), transparent);
}

.consent-content,
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.consent-block,
.terms-block {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3rem;
}

.consent-block h3,
.terms-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.consent-block p,
.terms-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.consent-details h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.consent-details ul,
.terms-block ul {
    list-style: none;
    margin-left: 0;
}

.consent-details li,
.terms-block li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.consent-details li::before,
.terms-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.consent-form-preview {
    background: var(--bg-dark);
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-preview-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.form-preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-field label {
    color: var(--text-primary);
    font-weight: 600;
}

.field-line {
    color: var(--text-secondary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(57, 255, 20, 0.05);
    border-radius: 4px;
}

.form-checkbox label {
    color: var(--text-secondary);
    line-height: 1.6;
}

.consent-understanding {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(57, 255, 20, 0.05);
    border-radius: 4px;
}

.consent-understanding strong {
    color: var(--neon-green);
}

.consent-understanding ul {
    margin-top: 1rem;
}

.contact-info-box {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    margin-top: 1.5rem;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
}

.contact-info-box strong {
    color: var(--neon-green);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(176, 38, 255, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--neon-green);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--neon-green);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--neon-green);
    color: var(--bg-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px var(--accent-glow);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
    }
    
    .workflow-number {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .chrome-text {
        font-size: 3.5rem;
    }
    
    .subtitle-glow {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
