:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: #121212;
    --bg-card-hover: #1a1a1a;
    --primary: #00f2ea;
    --primary-dim: rgba(0, 242, 234, 0.1);
    --primary-glow: rgba(0, 242, 234, 0.4);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #333333;
    --gradient-text: linear-gradient(90deg, #ffffff, #00f2ea);

    /* Fonts */
    --font-main: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand__logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--primary-dim));
}

.brand__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand__text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: block;
}

.brand__text small {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-dim);
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    text-align: left;
    /* Changed from center */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Changed from center */
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bullets i {
    color: var(--primary);
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    /* Changed from center */
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 1.5rem;
}

.partner-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 350px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.badge-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.meta-badge i {
    color: #0668E1;
    /* Meta Blue */
    font-size: 1.2rem;
}

.tn-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.verified-icon {
    color: #1DA1F2;
    /* Verified Blue */
    font-size: 0.8rem;
    margin-left: -2px;
}

.image-wrapper {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0) 50%);
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    /* Moved dirtier */
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 234, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Dashboard Image */
.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

/* Metrics Section */
.metrics-section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 242, 234, 0.2);
    /* Turquoise subtle border */
    text-align: center;
    box-shadow: 0 0 0 transparent;
    transition: all 0.3s ease;
}

.metric-card:hover {
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.metric-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.services-section {
    padding: var(--spacing-lg) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-list {
    margin-bottom: 2rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-muted);
}

.service-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.service-link {
    color: var(--text-main);
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
}

.service-link:hover {
    color: var(--primary);
}

.ideal-for {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
}

.about-container {
    max-width: 800px;
}

.about-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Process */
.process-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.process-section h2 {
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Changed to flex-start for alignment */
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-dim);
}

.step p {
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin-top: 25px;
    /* Half of step-number height */
    min-width: 50px;
    display: none;
    /* Hidden on mobile by default */
}

@media(min-width: 768px) {
    .step-line {
        display: block;
    }
}

/* Dashboard Section */
.dashboard-section {
    padding: var(--spacing-lg) 0;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dashboard-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.dashboard-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.dashboard-list i {
    color: var(--primary);
    background: rgba(0, 242, 234, 0.1);
    padding: 0.25rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.mockup-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.mockup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.badge {
    background: rgba(0, 242, 234, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.mockup-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.mockup-graph {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.bar {
    flex: 1;
    background: #333;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.bar.active {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-dim);
}

.mockup-roas {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.val-highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ */
.faq-section {
    padding: var(--spacing-lg) 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.faq-item p {
    color: var(--text-muted);
}

/* CTA Footer */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(180deg, var(--bg-card) 0%, #000 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.contact-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: inherit;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.whatsapp-alternative p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* --- Application Form Styling --- */
.application-form {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.application-form label {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.15);
}

.application-form textarea {
    resize: vertical;
}

.radio-group,
.checkbox-group {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-option,
.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.radio-option:hover,
.check-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.radio-option input,
.check-option input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.microcopy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

@media (max-width: 768px) {
    .application-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.application-form label {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.15);
}

.application-form textarea {
    resize: vertical;
}

.radio-group,
.checkbox-group {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-option,
.check-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.radio-option:hover,
.check-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.radio-option input,
.check-option input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.microcopy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
}

@media (max-width: 768px) {
    .application-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: #080808;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-location p {
    color: #ccc;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-location strong {
    color: var(--primary);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 1.2rem;
    color: var(--primary);
}

.social-link:hover {
    color: var(--primary);
    background: rgba(0, 242, 234, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 234, 0.1);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
}

/* --- Success Message --- */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 242, 234, 0.05);
    /* Slight turquoise tint */
    border: 1px solid var(--primary);
    border-radius: 12px;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.success-message p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- Case Study Section (Redesigned) --- */
.case-study-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #0a0a0a 0%, #050505 100%);
    position: relative;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.case-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.text-glow-primary {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.case-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.meta-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.growth-highlight {
    background: rgba(0, 242, 234, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 234, 0.2);
    margin-top: 2rem;
}

.growth-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.growth-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.growth-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.growth-bar-wrapper {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.growth-bar-fill {
    height: 100%;
    width: 90%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    border-radius: 10px;
    animation: growBar 2s ease-out forwards;
}

@keyframes growBar {
    from {
        width: 0;
    }

    to {
        width: 90%;
    }
}

/* Comparison Layout Right Side */
.comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-card {
    border-color: var(--primary);
    background: rgba(0, 242, 234, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.tag-muted {
    background: #333;
    color: #aaa;
}

.tag-primary {
    background: var(--primary);
    color: #000;
}

.img-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: #000;
    width: 100%;
}

.metric-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 242, 234, 0.3);
    box-shadow: 0 0 10px var(--primary);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.vs-divider {
    text-align: center;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    margin: -0.5rem 0;
    position: relative;
    z-index: 3;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-footer .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card-footer .value {
    font-weight: 700;
    color: #fff;
}

.card-footer .value-highlight {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.3rem;
}

@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-title {
        font-size: 2.8rem;
    }

    .glass-panel {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .case-title {
        font-size: 2.2rem;
    }

    .growth-number {
        font-size: 2.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        display: block;
        width: 2px;
        height: 30px;
        margin: 0;
        min-width: 2px;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none !important;
    }

    /* Navbar Brand Adjustments */
    .brand__text strong {
        font-size: 0.9rem !important;
    }

    .brand__text small {
        font-size: 0.6rem !important;
    }

    .nav-container {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .navbar .btn-sm {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    /* Hero Center Alignment on Mobile */
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 2.2rem !important;
    }

    .hero-bullets {
        justify-content: center !important;
        margin-bottom: 2rem;
    }

    .cta-group {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 1rem !important;
    }

    .cta-group .btn {
        width: 100% !important;
        margin: 0 !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .navbar .brand__text small {
        display: none !important;
    }

    .brand {
        gap: 6px !important;
    }

    .brand__logo {
        height: 32px !important;
    }
}

/* Service Button Styles */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
    margin-top: 1rem;
}

.service-link:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 234, 0.2);
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Social Proof Stats Bar (Cyberpunk) --- */
.stats-bar-wrapper {
    margin-top: 1rem;
    margin-bottom: 3rem;
    width: 100%;
}

.stats-bar {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    padding: 0 10px;
}

.stat-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    text-shadow: 0 0 15px var(--primary-glow);
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #E0E0E0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

@media (max-width: 600px) {
    .stats-bar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .stat-item {
        flex: 1;
        justify-content: center;
        padding: 0;
        text-align: center;
        flex-direction: column;
        width: 100%;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .application-form {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 1.5rem;
        float: none !important;
    }

    .form-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .radio-group,
    .checkbox-group {
        width: 100%;
    }

    .radio-option,
    .check-option {
        width: 100%;
        padding: 12px;
    }
}