/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0D0F1A;
    color: #F2F2F2;
    line-height: 1.6;
    font-size: 16px;
}

/* ===== COLOR PALETTE VARIABLES ===== */
:root {
    --bg-primary: #0D0F1A;
    --bg-secondary: #1A1D2E;
    --accent-gold: #F5C845;
    --highlight-glow: #FFD877;
    --fox-light: #D9A365;
    --fox-dark: #4B3A28;
    --text-light: #F2F2F2;
    --text-muted: #B8B8B8;
    --button-hover: #FFB341;
    --border-color: #2A2D3A;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-gold); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

/* ===== LAYOUT CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--bg-secondary);
}

.section-dark {
    background-color: var(--bg-primary);
}

/* ===== GRID SYSTEM ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(13, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background-color: rgba(13, 15, 26, 0.98);
    border-bottom-color: var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--highlight-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== MOBILE NAVIGATION ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-hover) 100%);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--button-hover) 0%, var(--highlight-glow) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 200, 69, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HERO SECTIONS ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 15, 26, 0.9) 0%,
        rgba(26, 29, 46, 0.8) 50%,
        rgba(13, 15, 26, 0.9) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--highlight-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-cta {
    margin-top: 2rem;
}

/* ===== PAGE BANNERS ===== */
.page-banner,
.services-hero,
.service-detail-hero,
.get-started-hero,
.email-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 15, 26, 0.8) 0%, rgba(26, 29, 46, 0.9) 100%);
    z-index: -1;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* ===== CARDS ===== */
.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--highlight-glow) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 200, 69, 0.1);
    border-color: var(--accent-gold);
}

.card h3 {
    margin-bottom: 1rem;
}

/* ===== SERVICE CARDS ===== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--highlight-glow) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(245, 200, 69, 0.15);
    border-color: var(--accent-gold);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--highlight-glow) 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--bg-primary);
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.service-ideal {
    background-color: var(--bg-primary);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    font-style: italic;
    color: var(--text-muted);
}

/* ===== FORMS ===== */
.contact-form,
.email-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(245, 200, 69, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== WORKFLOW & PROCESS STYLES ===== */
.workflow-example {
    background-color: var(--bg-secondary);
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.workflow-screenshot {
    text-align: center;
    margin: 2rem 0;
}

.workflow-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.image-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.workflow-steps-container {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.workflow-step {
    background-color: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--highlight-glow) 100%);
    border-radius: 50%;
    color: var(--bg-primary);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.process-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

/* ===== VALUES & FEATURES ===== */
.values-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item,
.feature-item {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover,
.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(245, 200, 69, 0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--highlight-glow) 100%);
    border-radius: 50%;
    color: var(--bg-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== INDUSTRIES & USE CASES ===== */
.industries-grid,
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-item,
.use-case {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-item:hover,
.use-case:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.industry-item h4,
.use-case h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* ===== PRICING ===== */
.pricing-box {
    background-color: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.pricing-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.pricing-note {
    color: var(--text-muted);
    font-style: italic;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.story-highlight {
    position: sticky;
    top: 100px;
}

.highlight-card {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
}

.founder-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.founder-quote {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    font-style: italic;
    margin-top: 2rem;
    position: relative;
}

.founder-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-style: normal;
    font-weight: 600;
}

/* ===== WORK PROCESS ===== */
.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-step {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.work-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.work-step h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* ===== FAQ STYLES ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-method h3 {
    margin-bottom: 1rem;
}

.contact-method a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--accent-gold);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* ===== UTILITY CLASSES ===== */
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .email-form-wrapper {
        padding: 2rem 1rem;
    }
    
    .workflow-example {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .card,
    .service-card,
    .value-item,
    .feature-item {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== SPECIAL EFFECTS ===== */
.card-automation {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(245, 200, 69, 0.05) 100%);
}

.card-automation:hover {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(245, 200, 69, 0.1) 100%);
}

/* ===== PROBLEM/SOLUTION STYLES ===== */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.problem-box, .solution-box {
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-glow);
}

.problem-box h2, .solution-box h2 {
  margin-bottom: 1.5rem;
}

.problem-list, .solution-list {
  list-style: none;
  padding: 0;
}

.problem-list li, .solution-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ff4444;
  font-weight: bold;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-circuitry);
  font-weight: bold;
}

/* Workflow Example */
.workflow-example {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-glow);
}

.workflow-description {
  text-align: center;
  margin-bottom: 3rem;
}

/* Workflow Screenshot */
.workflow-screenshot {
  margin: 2rem 0 3rem;
  text-align: center;
}

.workflow-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.workflow-image:hover {
  transform: scale(1.02);
}

.image-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.workflow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.workflow-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-circuitry);
  color: var(--bg-primary);
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 1rem;
}

.workflow-arrow {
  color: var(--accent-circuitry);
  font-size: 2rem;
  flex: 0 0 auto;
}

.action-items {
  text-align: left;
  margin-top: 1rem;
}

.action-item {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.workflow-result {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(245, 200, 69, 0.1);
  border-radius: 10px;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-circuitry);
  transform: translateY(-3px);
}

.feature-item h3 {
  color: var(--accent-circuitry);
  margin-bottom: 1rem;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.use-case {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-glow);
  text-align: center;
}

.use-case h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Pricing Box */
.pricing-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--accent-circuitry);
  box-shadow: 0 10px 40px var(--shadow-glow);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-circuitry);
  margin: 1rem 0;
  font-family: 'Orbitron', sans-serif;
}

.pricing-includes {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-includes li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-circuitry);
  font-weight: bold;
}

.pricing-note {
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Responsive Updates */
@media (max-width: 968px) {
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-steps {
    flex-direction: column;
  }
  
  .workflow-arrow {
    transform: rotate(90deg);
  }
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-glow);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 200, 69, 0.1);
  color: var(--text-muted);
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 15, 26, 0.9) 0%, rgba(26, 29, 46, 0.7) 100%);
  z-index: -1;
}

.banner-content {
  text-align: center;
  z-index: 1;
}

.banner-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.banner-subtitle {
  font-size: 1.25rem;
  color: var(--highlight-glow);
}

/* About Page Specific Styles */
.about-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-light);
}

.story-content {
  max-width: 1000px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.highlight-card {
  background: var(--bg-secondary);
  border: 2px solid var(--accent-circuitry);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--shadow-glow) 0%, transparent 70%);
  animation: glow 3s ease-in-out infinite;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 1rem;
}

.value-icon {
  margin-bottom: 1.5rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-circuitry) 0%, var(--button-hover) 100%);
  color: var(--bg-primary);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 20px var(--shadow-glow);
}

.value-item h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Founder Section */
.founder-section {
  max-width: 800px;
  margin: 0 auto;
}

.founder-content {
  margin-top: 2rem;
}

.founder-quote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent-circuitry);
  padding: 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.8;
  position: relative;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: var(--accent-circuitry);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.founder-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 1rem;
  color: var(--highlight-glow);
  text-align: right;
}

/* CTA Buttons Group */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Links */
.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-circuitry);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .page-banner {
    height: 30vh;
  }
  .workflow-step .action-items.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 1rem auto 0;
    width: 100%;
  }
  
  .workflow-step .action-item {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }
}