:root {
    --bg-dark: #0a0a1f;
    --bg-darker: #050510;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;

    --primary-cyan: #00f3ff;
    --primary-purple: #bc13fe;
    --primary-blue: #3b82f6;
    --primary-green: #27c93f;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --container-width: 1200px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.125rem;
    /* 18px for better Desktop readability */
    line-height: 1.6;
    overflow-x: hidden;
}

/* ... existing background styles ... */

/* Typography & Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

h2 {
    font-size: 2.75rem;
    /* Slightly larger section titles */
}

h3 {
    font-size: 1.75rem;
    /* Better hierarchy for card titles */
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Urgency Banner */
.urgency-banner {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    color: white;
    padding: 10px 0;
    z-index: 102;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.urgency-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.urgency-text svg {
    width: 18px;
    height: 18px;
}

.seats-left {
    color: var(--primary-cyan);
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.countdown {
    color: #ffbd2e;
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 42px;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(10, 10, 31, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-cyan);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-cyan);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    color: var(--primary-purple);
    transform: scale(1.1);
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(188, 19, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 19, 254, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    background: linear-gradient(rgba(10, 10, 31, 0.85), rgba(10, 10, 31, 0.95)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--glass-border);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
    /* Increased breathing room */
}

.hero-sub strong {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    /* Subtle glow */
}

.highlight-text {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    color: var(--primary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 12px;
    border-radius: 4px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    margin: 8px 0;
}

.badge-glitch {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-cyan);
}

/* Value Highlight Box */
.value-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 24px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.value-item div {
    display: flex;
    flex-direction: column;
}

.value-item strong {
    font-size: 1.3rem;
    color: white;
    font-family: var(--font-heading);
}

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

/* Floating Code Card */
.arch-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s;
}

.arch-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.card-code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a5b3ce;
}

.c-purple {
    color: #c678dd;
}

.c-blue {
    color: #61afef;
}

.c-comment {
    color: #5c6370;
    font-style: italic;
}

.indent {
    padding-left: 20px;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0) perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0) perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }
}

@media (max-width: 960px) {

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
        z-index: 101;
    }

    /* Mobile navigation menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(10, 10, 31, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        border-left: 1px solid var(--glass-border);
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links .btn {
        margin-top: 20px;
        width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .arch-card {
        display: none;
        /* Hide visual on mobile for now to keep it clean */
    }
}

/* Tech Marquee */
.tech-marquee {
    background: var(--bg-darker);
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    margin-top: -50px;
    /* Pull up to overlap hero bottom slightly */
    z-index: 10;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.3s;
}

.tech-item:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.tech-item svg {
    color: var(--primary-purple);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Projects Section */
.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.arch-window {
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    overflow: hidden;
    font-family: 'Fira Code', monospace;
}

.window-bar {
    background: #252526;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
}

.window-bar .title {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #888;
}

.window-content {
    padding: 20px;
}

.window-content pre {
    margin: 0;
    color: #d4d4d4;
    font-size: 0.9rem;
}

.status-bar {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #4ec9b0;
}

.status-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-bar svg {
    width: 14px;
    height: 14px;
}

.mb-20 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 50px;
}

/* Project Timeline Mini */
.project-timeline-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.timeline-step {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s;
}

.timeline-step:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}

.step-week {
    font-size: 0.85rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.f-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.f-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.f-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.c-cyan {
    color: var(--primary-cyan);
}

.c-purple {
    color: var(--primary-purple);
}

.c-blue {
    color: var(--primary-blue);
}

.c-green {
    color: #27c93f;
}

.f-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
}

.f-item small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mini Projects Section */
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: -40px auto 60px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.mini-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.mini-icon {
    width: 40px;
    height: 40px;
    background: rgba(188, 19, 254, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    margin-bottom: 16px;
}

.mini-card h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.mini-card ul {
    list-style: none;
    padding: 0;
}

.mini-card ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 12px;
}

.mini-card ul li::before {
    content: "•";
    color: var(--primary-cyan);
    position: absolute;
    left: 0;
}

.mini-card ul li strong {
    color: var(--text-main);
    font-weight: 600;
}

.mini-badge {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-cyan);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 45px;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none;
    /* Hidden by default, JS will toggle */
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Sections Common */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.3);
}

/* Value Props */
.value-card .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-cyan);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple), transparent);
    box-shadow: 0 0 10px var(--primary-cyan);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-cyan);
    z-index: 2;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-purple);
    box-shadow: 0 5px 20px rgba(188, 19, 254, 0.1);
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.timeline-content:hover::after {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Week Header & Tag */
.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-content h3 {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
}

.week-tag {
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.week-tag.highlight {
    background: rgba(188, 19, 254, 0.2);
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

/* Week Content */
.week-story {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
    border-left: 3px solid var(--primary-purple);
    padding-left: 12px;
    font-size: 0.95rem;
}

.week-detail h4 {
    color: var(--primary-cyan);
    font-size: 1rem;
    margin: 16px 0 12px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.week-detail ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.week-detail ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.week-detail ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

/* Tech Icons in Timeline */
.week-tech {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.week-tech i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.timeline-content:hover .week-tech i {
    color: var(--primary-cyan);
}

/* Lab Highlights */
.lab-highlight {
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(0, 243, 255, 0.05);
    border-left: 3px solid var(--primary-cyan);
    border-radius: 4px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.lab-highlight strong {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Final Week Highlight */
.week-final {
    border: 1px solid var(--primary-purple);
    background: linear-gradient(145deg, rgba(188, 19, 254, 0.05), rgba(10, 10, 31, 0.8));
}

/* Pricing */
/* ROI Value Proposition */
.roi-banner {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(188, 19, 254, 0.1) 100%);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
}

.roi-content h3 {
    font-size: 1.75rem;
    color: var(--text);
    font-weight: 600;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.roi-item {
    background: rgba(10, 10, 31, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roi-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

.roi-item.highlight {
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.15) 0%, rgba(0, 243, 255, 0.15) 100%);
    border-color: var(--primary-purple);
}

.roi-icon {
    margin: 0 auto 12px;
}

.roi-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
}

.roi-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.roi-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Discount Calculation Examples */
.discount-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.example-card {
    background: rgba(10, 10, 31, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
}

.example-card.featured {
    border-color: var(--primary-cyan);
    background: linear-gradient(180deg, rgba(0, 243, 255, 0.05) 0%, rgba(10, 10, 31, 0.9) 100%);
}

.example-card.highlight {
    border-color: var(--primary-purple);
    background: linear-gradient(180deg, rgba(188, 19, 254, 0.1) 0%, rgba(10, 10, 31, 0.9) 100%);
}

.example-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-cyan);
    color: var(--bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.example-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.example-card h4 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

.calc-breakdown {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-row.discount span:last-child {
    color: var(--primary-cyan);
    font-weight: 600;
}

.calc-row.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-purple);
    border-bottom: none;
}

.calc-row.total span:last-child {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.calc-row.bonus {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(188, 19, 254, 0.1) 100%);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    border-bottom: none;
}

.bonus-text {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-cyan);
    font-weight: 600;
}

.bonus-text svg {
    width: 16px;
    height: 16px;
}

.saving-badge {
    display: block;
    text-align: center;
    background: var(--primary-cyan);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
}

.saving-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    }
}

/* AWS Cost Transparency Section */
.aws-cost-section {
    background: rgba(10, 10, 31, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
}

.aws-cost-section h3 {
    font-size: 1.75rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 40px;
}

.cost-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cost-option {
    background: rgba(10, 10, 31, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.cost-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
}

.cost-option.recommended {
    border-color: var(--primary-cyan);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(10, 10, 31, 0.9) 100%);
}

.cost-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.cost-header h4 {
    font-size: 1.25rem;
    color: var(--text);
    margin: 0;
}

.recommend-badge {
    background: var(--primary-cyan);
    color: var(--bg);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.cost-details {
    margin-bottom: 20px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.cost-item:last-child {
    border-bottom: none;
}

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

.cost-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.cost-value.highlight {
    color: var(--primary-cyan);
    font-size: 1.25rem;
}

.cost-value.bonus {
    color: #22c55e;
}

.cost-value.negative {
    color: #ef4444;
}

.cost-value.muted {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.cost-item.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-purple);
    border-bottom: none;
}

.cost-item.total .cost-value {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.cost-benefits {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.cost-benefits p {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
}

.cost-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cost-benefits li:last-child {
    margin-bottom: 0;
}

.cost-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.cost-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.cost-warning p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cost-warning svg {
    width: 18px;
    height: 18px;
    color: #ef4444;
    flex-shrink: 0;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(188, 19, 254, 0.1) 0%, rgba(10, 10, 31, 1) 100%);
    border-color: var(--primary-purple);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-purple);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.tier-name {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.featured .pricing-header h3 {
    color: var(--primary-cyan);
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary-cyan);
}

.pricing-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

.installment-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

/* Pricing Value Comparison */
.value-comparison {
    margin-bottom: 10px;
}

.original-price {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.savings {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-cyan);
    font-weight: 700;
    margin-top: 8px;
}

/* Pricing Urgency */
.pricing-urgency {
    background: linear-gradient(90deg, rgba(188, 19, 254, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid var(--primary-purple);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-urgency svg {
    width: 24px;
    height: 24px;
    color: var(--primary-purple);
}

.pricing-urgency span {
    font-size: 1.05rem;
    color: var(--text-main);
}

/* Pulse Button Animation */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(188, 19, 254, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(188, 19, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(188, 19, 254, 0);
    }
}

/* Social Proof Section */
.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.proof-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s;
}

.proof-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.proof-card svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--primary-cyan);
}

.proof-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-header svg {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-cyan);
}

.story-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #fff;
}

.story-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.story-quote {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid var(--primary-cyan);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Pricing Comparison Table */
.pricing-comparison {
    max-width: 900px;
    margin: 60px auto;
}

.table-container {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.comparison-table th {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    color: #fff;
}

.comparison-table tr.highlight-row {
    background: rgba(188, 19, 254, 0.05);
}

/* Discounts Section */
.discounts-section {
    max-width: 900px;
    margin: 60px auto;
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.discount-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

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

.discount-card.highlight {
    border: 2px solid var(--primary-purple);
    background: linear-gradient(145deg, rgba(188, 19, 254, 0.1), transparent);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
    position: relative;
    overflow: hidden;
}

.discount-card.highlight::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 12px;
    right: -25px;
    background: var(--primary-purple);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 25px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-card.highlight:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.d-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
}

.highlight .d-icon {
    background: rgba(188, 19, 254, 0.1);
    color: var(--primary-purple);
}

.discount-card h4 {
    color: #fff;
    margin-bottom: 8px;
}

.discount-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.d-code {
    display: inline-block;
    padding: 4px 12px;
    border: 1px dashed var(--text-muted);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--primary-cyan);
}

/* Responsive for Discounts */
@media (max-width: 768px) {
    .discount-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    background: var(--bg-darker);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 243, 255, 0.3);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .footer-social {
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    /* ROI responsive - tablet */
    .roi-banner.mb-60 {
        margin-bottom: 45px !important;
    }

    .pricing-urgency {
        margin-bottom: 35px;
        padding: 18px 16px;
    }

    .roi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .roi-item {
        padding: 20px 16px;
    }

    .roi-value {
        font-size: 1.5rem;
    }

    .mt-50 {
        margin-top: 40px !important;
    }

    /* Discount examples - tablet */
    .discount-examples {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* AWS cost transparency - tablet */
    .aws-cost-section {
        padding: 35px 25px;
    }

    .aws-cost-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cost-option {
        padding: 25px;
    }

    .cost-header h4 {
        font-size: 1.15rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-marker {
        width: 40px;
        font-size: 0.8rem;
    }

    .nav-content {
        justify-content: space-between;
    }

    /* Responsive: New conversion elements */
    .value-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .success-stories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-timeline-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Tablet: System header responsive */
    .sys-header {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 1rem;
        /* Revert to 16px on mobile */
    }

    .section-title {
        font-size: 2rem;
        /* Smaller font for mobile */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    /* Ensure only Logo and CTA are visible or just Logo */
    .nav-content {
        justify-content: space-between;
    }

    .project-showcase {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .project-timeline-mini {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .timeline-step {
        padding: 10px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    /* ROI responsive - mobile */
    .roi-banner {
        padding: 30px 20px;
    }

    .roi-banner.mb-60 {
        margin-bottom: 40px !important;
    }

    .pricing-urgency {
        margin-bottom: 30px;
        padding: 15px 12px;
    }

    .roi-content h3 {
        font-size: 1.25rem;
    }

    .roi-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .roi-item {
        padding: 16px 12px;
    }

    .roi-icon svg {
        width: 24px;
        height: 24px;
    }

    .roi-value {
        font-size: 1.35rem;
    }

    .roi-sub {
        font-size: 0.75rem;
    }

    /* Discount examples - mobile */
    .discount-examples {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .example-card {
        padding: 24px 16px;
    }

    .calc-breakdown {
        padding: 16px;
    }

    .calc-row {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 5px;
    }

    .calc-row.total span:last-child {
        font-size: 1.25rem;
    }

    .example-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .mt-50 {
        margin-top: 35px !important;
    }

    /* AWS cost transparency - mobile */
    .aws-cost-section {
        padding: 30px 20px;
    }

    .aws-cost-section h3 {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }

    .cost-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cost-option {
        padding: 20px 16px;
    }

    .cost-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cost-header h4 {
        font-size: 1.1rem;
    }

    .recommend-badge {
        align-self: flex-start;
    }

    .cost-item {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 5px;
    }

    .cost-label {
        font-size: 0.85rem;
    }

    .cost-value {
        font-size: 1rem;
    }

    .cost-value.highlight {
        font-size: 1.15rem;
    }

    .cost-item.total .cost-value {
        font-size: 1.3rem;
    }

    .cost-benefits {
        padding: 16px;
    }

    .cost-benefits li {
        font-size: 0.85rem;
    }

    .cost-warning {
        padding: 12px;
    }

    .cost-warning p {
        font-size: 0.85rem;
    }

    .arch-diagram {
        display: none;
        /* Hide complex diagram on very small screens if it breaks */
    }

    /* Mobile: System header responsive */
    .sys-header {
        font-size: 0.65rem !important;
        padding: 8px 12px !important;
        gap: 6px !important;
    }

    .sys-coords-full {
        display: none !important;
    }

    .sys-coords-short {
        display: inline !important;
    }

    /* Mobile: New conversion elements */
    .urgency-banner {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .urgency-banner .container {
        padding: 0 15px;
    }

    .urgency-text {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .seats-left,
    .countdown {
        display: inline-block;
        white-space: nowrap;
    }

    .value-highlight {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .value-item {
        font-size: 0.9rem;
    }

    .value-item strong {
        font-size: 1.1rem;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .proof-card {
        padding: 20px 15px;
    }

    .proof-card h3 {
        font-size: 1.5rem;
    }

    .success-stories {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .story-card {
        padding: 20px;
    }

    .story-header svg {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .pricing-urgency {
        font-size: 0.85rem;
        padding: 12px;
    }

    .value-comparison {
        margin: 15px 0;
    }

    .original-price {
        font-size: 0.85rem;
    }

    .savings {
        font-size: 0.8rem;
    }
}

/* =========================================
   Instructor Section (Cyberpunk/Premium)
   ========================================= */

.instructor {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.instructor-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: rgba(10, 10, 31, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 24px;
    padding: 60px;
    max-width: 1000px;
    margin: 60px auto 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(188, 19, 254, 0.2);
    border-color: var(--primary-purple);
}

/* Cyberpunk Decoration Details */
.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    opacity: 0.7;
}

.instructor-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.instructor-visual {
    position: relative;
    text-align: center;
    z-index: 1;
}

.instructor-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 243, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.instructor-card:hover .instructor-img {
    border-color: var(--primary-purple);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.4);
    transform: scale(1.02);
}

.instructor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 5, 20, 0.9);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 8px 20px;
    border-radius: 4px;
    /* More tech/angular */
    font-weight: 700;
    font-size: 0.9rem;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.instructor-info {
    position: relative;
    z-index: 1;
}

.instructor-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instructor-role {
    display: inline-block;
    color: var(--primary-purple);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--primary-purple);
    padding-bottom: 5px;
}

.instructor-bio {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-quote {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid var(--primary-cyan);
    color: #e2e8f0;
    font-style: italic;
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.05) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 3rem;
    color: rgba(0, 243, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive for Instructor */
@media (max-width: 900px) {
    .instructor-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .instructor-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -30px;
        /* Pull it up over the image slightly */
        background: var(--bg-dark);
    }

    .instructor-stats {
        gap: 15px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .highlight-quote {
        text-align: left;
        /* Keep quote readable */
    }

    .instructor-info h3 {
        font-size: 2rem;
    }
}

/* Architecture Showcase Split */
.showcase-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    overflow: hidden;
    height: 380px;
    /* Fixed height for consistency */
    background: #0f111a;
}

.showcase-diagram {
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-diagram:hover .arch-img {
    transform: scale(1.05);
}

.arch-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-cyan);
    padding: 5px 12px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.arch-label {
    color: var(--primary-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-code {
    padding: 20px;
    font-size: 0.85rem;
    overflow-y: auto;
    background: rgba(10, 10, 31, 0.5);
}

/* Responsive for Split Showcase */
@media (max-width: 600px) {
    .showcase-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-diagram {
        height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .showcase-code {
        height: 200px;
    }
}

/* Full Diagram Showcase Override */
.full-diagram {
    height: 450px;
    /* Taller for full impact */
    position: relative;
    overflow: hidden;
    background: #0f111a;
    padding: 0 !important;
    /* Force remove padding to ensure full width */
}

.arch-img.full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the area, cropping top/bottom if needed */
    /* Ensure the whole diagram is visible */
    padding: 0;
    background: radial-gradient(circle at center, rgba(30, 30, 60, 0.5) 0%, #0f111a 100%);
}

.arch-overlay {
    /* Adjust overlay for full view */
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 31, 0.8);
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.arch-label i {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

/* =========================================
   Holographic System Monitor Visuals
   ========================================= */

.holographic-monitor {
    border: 1px solid rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    border-radius: 8px;
    /* Sharper corners for tech look */
    overflow: hidden;
    background: #050510;
}

.sys-header {
    background: rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    /* Fallback to monospace */
    font-size: 0.75rem;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

.sys-status,
.sys-title,
.sys-coords {
    white-space: nowrap;
}

.sys-coords-full {
    display: inline;
}

.sys-coords-short {
    display: none;
}

.blink-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 5px var(--primary-green);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.monitor-screen {
    position: relative;
    /* Ensure image sits below overlays */
}

/* Grid Overlay */
.scan-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 2;
}

/* Scanning Animation */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 243, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
    opacity: 0.6;
    animation: scan 4s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: -5%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

/* Cyberpunk Badge Override */
.cyberpunk-badge {
    background: rgba(10, 10, 31, 0.85);
    border: 1px solid var(--primary-purple);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
    border-radius: 4px;
    /* Techy */
}

.cyberpunk-badge .arch-label {
    color: var(--primary-purple);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* Ensure hero visual handles the badge overflow */
.hero-visual {
    position: relative;
    /* Re-asserting just in case */
    z-index: 2;
}

/* AWS Services Section */
.aws-services {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 243, 255, 0.05) 50%, var(--bg-dark) 100%);
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-header svg {
    color: var(--primary-purple);
    width: 24px;
    height: 24px;
}

.cat-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.service-list li::before {
    content: "▹";
    color: var(--primary-cyan);
    font-size: 0.8rem;
}

.service-list li:hover {
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 960px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Company Badges for Instructor */
.company-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0 25px;
}

.company-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s;
}

.company-tag:hover {
    background: rgba(188, 19, 254, 0.1);
    border-color: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
}

/* Refund Policy Section */
.refund-policy-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 15px;
}

.guarantee-box {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid var(--primary-gold);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Subtle gold glow effect */
.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.guarantee-icon-wrapper {
    flex-shrink: 0;
}

/* Money Back Seal Badge */
.money-back-seal {
    width: 130px;
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 223, 0, 0.1), rgba(0, 0, 0, 0.4));
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.seal-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px double var(--primary-gold);
    animation: rotate-shine 8s linear infinite;
}

.seal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 20, 0.8);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.seal-percent {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 2px 5px rgba(0, 0, 0, 0.5);
}

.seal-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    text-align: center;
    line-height: 1.2;
}

/* Shine Animation */
@keyframes rotate-shine {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    }

    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
    }
}



.guarantee-text h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-text p {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.guarantee-text .commitment-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 3px solid var(--primary-gold);
    padding-left: 10px;
    margin-top: 15px;
}

.policy-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: var(--primary-cyan);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.policy-link i {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .guarantee-box {
        padding: 25px 20px;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .money-back-seal {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .guarantee-text .commitment-note {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        padding-top: 15px;
        padding-left: 0;
    }
}
/* Centered Tech Grid - 3 top, 2 bottom centered */
.tech-grid-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tech-grid-centered .service-category {
    width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    /* Logo styling */
    display: flex;
    flex-direction: column;
}

.tech-logo {
    height: 40px;
    width: auto;
    /* max-width: 50px; */
    margin-right: 15px;
    vertical-align: middle;
}

.cat-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 960px) {
    .tech-grid-centered {
        flex-direction: column;
    }

    .tech-grid-centered .service-category {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .tech-grid-centered .cat-header {
        justify-content: center;
    }
}
