:root {
    --primary-color: #0a0a23;
    --secondary-color: #00ffff;
    --text-color: #e0e0e0;
    --background-color: #000000;
    --glass-bg: rgba(10, 10, 35, 0.6);
    --glow-color: rgba(0, 255, 255, 0.7);
    --container-max: 1200px;
    --section-padding: clamp(56px, 10vw, 120px);
    --grid-gap: clamp(20px, 5vw, 40px);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 16px;
}

#neural-net {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(14px, 3vw, 24px) clamp(18px, 5vw, 48px);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    min-height: 68px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    text-shadow: 0 0 10px var(--glow-color);
}

nav ul {
    list-style: none;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

nav ul li {
    margin-left: 40px;
}

nav a {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--glow-color);
}

.buttons button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-left: 10px;
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
}

.buttons button.signup {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.buttons button:hover {
    box-shadow: 0 0 15px var(--glow-color), 0 0 25px var(--glow-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other nav elements */
    background: transparent;
    border: none;
    padding: 4px;
    line-height: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--secondary-color);
    transition: 0.4s;
}

.hamburger:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 4px;
}

main {
    position: relative;
    z-index: 1;
}

main > section {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
}

.hero {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 8vw, 60px);
    min-height: 100vh;
    padding: calc(var(--section-padding) + 60px) clamp(20px, 6vw, 60px) var(--section-padding);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
    width: min(100%, var(--container-max));
    margin: 0 auto;
}

.hero-metrics,
.metrics-grid,
.metrics .logos,
.service-grid,
.insights-inner,
.timeline,
.case-grid,
.pricing-grid,
.testimonial-grid,
.stack-grid,
.faq-list,
.studio-content,
.cta-inner,
.contact-card {
    width: min(100%, var(--container-max));
    margin: 0 auto;
}

.hero-copy {
    background: var(--glass-bg);
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    padding: 50px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    text-align: left;
}

.hero-copy p {
    max-width: 620px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.4rem, 4vw + 1rem, 4.2rem);
    line-height: 1.2;
    text-shadow: 0 0 15px var(--glow-color);
    color: #fff;
}

.hero p {
    font-size: clamp(1.05rem, 1.3vw + 1rem, 1.4rem);
    line-height: 1.8;
    color: rgba(224, 224, 224, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.cta {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff;
}

.cta.ghost {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: var(--text-color);
    box-shadow: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta.small {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: var(--text-color);
    font-size: 1em;
    padding: 12px 24px;
}

.cta.ghost:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.cta.small:hover {
    background: rgba(0, 255, 255, 0.12);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.45);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95em;
    color: rgba(224, 224, 224, 0.8);
    width: 100%;
}

.hero-badges span {
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-card {
    width: 100%;
    max-width: 420px;
    padding: 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(10, 10, 35, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
    color: rgba(224, 224, 224, 0.7);
}

.status-up {
    color: #27ffb5;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(39, 255, 181, 0.5);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.metric {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px;
}

.metric p {
    font-size: 0.85em;
    text-transform: uppercase;
    color: rgba(224, 224, 224, 0.6);
    margin-bottom: 6px;
    letter-spacing: 0.08em;
}

.metric h3 {
    font-size: 1.8em;
    color: #fff;
}

.metric small {
    display: block;
    margin-top: 6px;
    font-size: 0.8em;
    color: rgba(224, 224, 224, 0.55);
}

.chart-placeholder {
    position: relative;
    height: 180px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.1));
    overflow: hidden;
}

.chart-line {
    position: absolute;
    width: 140%;
    height: 2px;
    top: 40%;
    left: -20%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 255, 255, 0.7));
    transform: rotate(6deg);
}

.chart-line.alt {
    top: 65%;
    transform: rotate(-4deg);
    background: linear-gradient(90deg, rgba(255, 0, 255, 0), rgba(255, 0, 255, 0.6));
}

.chart-bar {
    position: absolute;
    bottom: 0;
    width: 40px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.6), rgba(0, 255, 255, 0));
}

.chart-bar.bar-1 { left: 14%; height: 74%; }
.chart-bar.bar-2 { left: 32%; height: 52%; }
.chart-bar.bar-3 { left: 54%; height: 88%; }
.chart-bar.bar-4 { left: 74%; height: 63%; }

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hero-metric-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-metric-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.hero-metric-card p {
    font-size: 1em;
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.6;
}

.metrics, .services, .playbook, .cases, .stack, .studio, .cta-section {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
    position: relative;
    z-index: 1;
}

.metrics {
    background: rgba(0, 0, 0, 0.55);
}

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

.logos {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-items: center;
    gap: 20px;
    color: rgba(224, 224, 224, 0.45);
    font-size: 0.95em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metric-card {
    background: var(--glass-bg);
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.metric-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem);
}

.highlight-counter {
    color: var(--secondary-color);
    display: inline-block;
    margin-right: 6px;
}

.metric-card p {
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.6;
}

.tag {
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 255, 255, 0.12);
    color: var(--secondary-color);
    font-size: 0.85em;
}

.services {
    background: rgba(0, 0, 0, 0.75);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(10, 10, 35, 0.65);
    border-radius: 18px;
    border: 1px solid rgba(255, 0, 255, 0.18);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: clamp(1.3rem, 1.6vw + 1rem, 1.8rem);
}

.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card li {
    color: rgba(224, 224, 224, 0.8);
    line-height: 1.6;
}

.insights {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(10, 10, 35, 0.9));
}

.insights-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.insights-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insights-copy ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(224, 224, 224, 0.8);
}

.insights-copy ul span {
    color: var(--secondary-color);
    font-weight: 700;
}

.insights-visual {
    display: flex;
    justify-content: center;
}

.insight-chart {
    width: 100%;
    max-width: 420px;
    padding: 34px;
    border-radius: 22px;
    border: 1px solid rgba(255, 0, 255, 0.25);
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.insight-chart header,
.insight-chart footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(224, 224, 224, 0.75);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.06em;
}

.insight-chart footer div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-transform: none;
}

.insight-chart strong {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.2em;
}

.insight-graph {
    position: relative;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(10, 10, 35, 0.7);
}

.graph-line {
    position: absolute;
    width: 140%;
    height: 2px;
    left: -20%;
    opacity: 0.6;
}

.graph-line.one {
    top: 30%;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0), rgba(0, 255, 255, 0.9));
}

.graph-line.two {
    top: 65%;
    background: linear-gradient(90deg, rgba(255, 0, 255, 0), rgba(255, 0, 255, 0.8));
}

.graph-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.2), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.2), transparent 60%);
}

.playbook {
    background: rgba(0, 0, 0, 0.6);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
    margin-bottom: clamp(40px, 6vw, 70px);
    color: #fff;
    text-shadow: 0 0 10px var(--glow-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    box-shadow: 0 0 5px var(--glow-color);
}

.timeline-item {
    padding: 10px 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--background-color);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    top: 35px;
    right: -10px;
    z-index: 1;
    box-shadow: 0 0 10px var(--glow-color);
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.cases {
    background: rgba(0, 0, 0, 0.75);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.case-card {
    background: rgba(10, 10, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
    color: rgba(224, 224, 224, 0.8);
}

.case-metric {
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
}

.case-metric span {
    color: var(--secondary-color);
}

.case-card p {
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.6;
}

.case-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(224, 224, 224, 0.8);
}

.pricing {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
    margin-bottom: 40px;
}

.pricing-toggle .toggle {
    background: transparent;
    border: none;
    color: rgba(224, 224, 224, 0.6);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-toggle .toggle.active {
    background: rgba(0, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.pricing-card {
    background: rgba(10, 10, 35, 0.65);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.18), transparent 70%);
    z-index: 0;
}

.pricing-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 1.6vw + 1rem, 1.9rem);
    color: #fff;
    z-index: 1;
}

.pricing-card .price {
    font-size: clamp(1.2rem, 1.2vw + 1rem, 1.6rem);
    color: var(--secondary-color);
    z-index: 1;
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(224, 224, 224, 0.8);
    z-index: 1;
}

.pricing-card .cta {
    margin-top: auto;
    z-index: 1;
}

.pricing-card.active {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 25px 60px rgba(0, 255, 255, 0.15);
    transform: translateY(-8px);
}

.testimonials {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 255, 0.15), transparent 55%), rgba(0, 0, 0, 0.55);
}

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

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.testimonial-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(224, 224, 224, 0.8);
}

.testimonial-card .score {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
}

.testimonial-card p {
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.7;
}

.stack {
    background: rgba(0, 0, 0, 0.5);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stack-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.stack-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    color: #fff;
}

.stack-card p {
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.6;
}

.faq {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
    background: rgba(0, 0, 0, 0.5);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1em;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question .icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-answer p {
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.7;
    padding: 0 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 28px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.studio {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(10, 10, 35, 0.95));
}

.studio-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(0, 255, 255, 0.18);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.studio-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: rgba(224, 224, 224, 0.8);
}

.studio-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.studio-list h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.cta-section {
    background: rgba(0, 0, 0, 0.65);
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(10, 10, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 26px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.cta-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-copy p {
    font-size: 1.1em;
    line-height: 1.7;
    color: rgba(224, 224, 224, 0.8);
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-points span {
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 8px 18px;
    color: rgba(224, 224, 224, 0.85);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-color);
    font-size: 1em;
    resize: vertical;
}

.lead-form textarea {
    min-height: 120px;
}

.lead-form button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 16px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.lead-form small {
    font-size: 0.8em;
    color: rgba(224, 224, 224, 0.6);
}

.lead-form small a {
    color: var(--secondary-color);
}

.form-feedback {
    font-size: 0.95em;
    line-height: 1.4;
    color: rgba(224, 224, 224, 0.75);
    margin-top: 4px;
}

.form-feedback.success {
    color: #27ffb5;
}

.form-feedback.error {
    color: #ff8c7a;
}

.contact {
    padding: var(--section-padding) clamp(20px, 6vw, 60px);
    background: rgba(0, 0, 0, 0.55);
}

.contact-card {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    background: rgba(10, 10, 35, 0.6);
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-card p,
.contact-details span,
.contact-details a {
    color: rgba(224, 224, 224, 0.8);
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-details span {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
}

.contact-details a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
}

footer {
    text-align: center;
    padding: 30px;
    background: var(--primary-color);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

footer a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-left: 20px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--glass-bg);
    margin: auto;
    padding: 40px;
    border: 1px solid var(--secondary-color);
    width: 80%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px var(--glow-color);
}

.close-button {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2em;
    text-shadow: 0 0 10px var(--glow-color);
}

.modal-content form input {
    width: calc(100% - 20px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--secondary-color);
    background-color: rgba(0,0,0,0.5);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 1em;
}

.modal-content form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.modal-content form button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.modal-content form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffff;
}

.error-message {
    color: #ff6347;
    margin-top: 15px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    main > section {
        padding: clamp(60px, 10vw, 100px) clamp(18px, 6vw, 48px);
    }

    nav ul li {
        margin-left: clamp(18px, 3vw, 32px);
    }
}

@media (max-width: 1024px) {
    header {
        padding: clamp(12px, 3vw, 18px) clamp(16px, 5vw, 32px);
    }

    .hero {
        padding: calc(var(--section-padding) + 30px) clamp(20px, 5vw, 42px) var(--section-padding);
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
    }

    .hero-visual {
        order: -1;
        justify-content: flex-start;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .cta {
        width: 100%;
        justify-content: center;
    }

    .hero-copy {
        padding: clamp(36px, 8vw, 48px);
    }

    .dashboard-card {
        max-width: 100%;
    }

    .dashboard-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .insights-inner {
        gap: clamp(28px, 6vw, 40px);
    }
}

@media (max-width: 900px) {
    nav ul li {
        margin-left: 18px;
    }

    .hero-metrics {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .case-grid,
    .pricing-grid,
    .testimonial-grid {
        gap: clamp(18px, 6vw, 28px);
    }
}

@media (max-width: 768px) {
    header {
        padding: clamp(12px, 4vw, 18px) clamp(16px, 6vw, 32px);
    }

    .buttons {
        display: none;
    }

    nav ul {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        display: flex;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: -1;
        padding: 20px clamp(16px, 6vw, 32px);
        gap: 16px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 0;
        text-align: left;
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-copy {
        padding: clamp(30px, 9vw, 44px);
        gap: clamp(20px, 6vw, 28px);
    }

    .hero-badges span {
        width: 100%;
        text-align: center;
    }

    .hero-badges {
        gap: 10px;
        justify-content: flex-start;
    }

    .hero-metrics {
        gap: clamp(16px, 6vw, 24px);
    }

    .hero-metric-card {
        padding: clamp(20px, 7vw, 26px);
    }

    .metrics-grid,
    .service-grid,
    .case-grid,
    .stack-grid,
    .studio-list {
        gap: clamp(16px, 6vw, 24px);
    }

    h2 {
        text-align: left;
    }

    .timeline::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding: 10px 20px 10px 70px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 15px;
    }

    .cta-inner,
    .contact-card {
        padding: clamp(32px, 8vw, 40px);
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: clamp(44px, 12vw, 72px);
    }

    main > section {
        padding: clamp(44px, 12vw, 72px) clamp(16px, 6vw, 28px);
    }

    body {
        font-size: 15px;
    }

    .logo {
        font-size: 1.4em;
    }

    .hero {
        padding-top: calc(var(--section-padding) + 20px);
        gap: clamp(24px, 10vw, 36px);
    }

    .hero-badges {
        gap: 10px;
    }

    .hero-badges span {
        padding: 6px 14px;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .metrics-grid,
    .service-grid,
    .case-grid,
    .pricing-grid,
    .testimonial-grid,
    .stack-grid,
    .studio-list,
    .logos {
        grid-template-columns: 1fr;
        gap: clamp(16px, 7vw, 24px);
    }

    .pricing-toggle {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-toggle .toggle {
        width: 100%;
    }

    .faq-question {
        padding: 20px clamp(16px, 6vw, 24px);
    }

    .faq-answer {
        padding: 0 clamp(16px, 6vw, 24px);
    }

    .modal-content {
        width: 92%;
        padding: 28px 20px;
    }

    .hero p,
    .metric-card p,
    .service-card li,
    .case-card p,
    .testimonial-card p,
    .stack-card p,
    .studio-content p,
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 420px) {
    header {
        padding: 12px 16px;
    }

    .hero-actions .cta {
        font-size: 1rem;
        padding: 12px 18px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 6vw + 1rem, 2.6rem);
    }

    .hero-badges span {
        font-size: 0.85em;
    }

    .hero-metric-card {
        padding: 20px;
    }

    .case-card,
    .service-card,
    .pricing-card,
    .testimonial-card {
        padding: 26px 22px;
    }

    footer {
        padding: 24px 16px;
    }
}
