/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e6ed;
    background-color: #0a0f1c;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #a0aec0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Primary Button */
.btn-primary {
    background: #00b894;
    color: #0a0f1c;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 184, 148, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #009c85; /* slightly darker teal */
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 184, 148, 0.5);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: #00b894;
    border: 2px solid #00b894;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 184, 148, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 184, 148, 0.12);
    color: #00b894;
    box-shadow: 0 0 14px rgba(0, 184, 148, 0.4);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.98);
    box-shadow: 0 2px 20px rgba(0, 255, 157, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 300px;
    height: 80px;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.3));
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #a0aec0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* Navbar Links */
.nav-link:hover,
.nav-link.active {
    color: #00b894;
    text-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00b894;  /* was gradient neon */
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 184, 148, 0.5);
}

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

/* Mobile nav toggle bars */
.bar {
    width: 25px;
    height: 3px;
    background: #00b894;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 184, 148, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ff9d;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0f1419 100%);
    z-index: -2;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 15, 28, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'JetBrains Mono', monospace;
}

.highlight {
    color: #798602;
    background: none;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #a0aec0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff9d, #00eaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.badge-icon i {
    font-size: 1.2rem;
    color: #0a0f1c;
}

.badge-text {
    font-weight: 600;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff9d;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: grid;
    gap: 2rem;
}

.about-card {
    background: rgba(0, 255, 157, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff9d, #00eaff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.card-icon i {
    font-size: 1.5rem;
    color: #0a0f1c;
}

.about-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: #a0aec0;
}

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

.about-logo {
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.3);
    filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.2));
}

/* Services Section */
.services {
    background: #0a0f1c;
}

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

.service-card {
    background: rgba(0, 255, 157, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff9d, transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.1);
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #a0aec0;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: #a0aec0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff9d;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.service-link {
    color: #00ff9d;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
}

.service-link:hover {
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

/* Tools Section */
.tools {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

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

.tool-card {
    background: rgba(0, 255, 157, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.tool-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-header img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    filter: brightness(1.2) contrast(1.1);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.tool-header h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.tool-card p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 157, 0.3);
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
}

.tools-cta {
    text-align: center;
    background: rgba(0, 255, 157, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
}

.tools-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.tools-cta p {
    margin-bottom: 2rem;
    color: #a0aec0;
}

/* Case Studies Section */
.case-studies {
    background: #0a0f1c;
}

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

.case-card {
    background: rgba(0, 255, 157, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

.case-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.8) contrast(1.2);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-overlay i {
    font-size: 2rem;
    color: #00ff9d;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.8);
}

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

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.case-content p {
    margin-bottom: 1.5rem;
    color: #a0aec0;
}

.case-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.case-link {
    color: #00ff9d;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-top: 1px solid rgba(0, 255, 157, 0.1);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(0, 255, 157, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff9d, #00eaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #0a0f1c;
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.contact-card p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #00ff9d;
    text-decoration: none;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #00eaff;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

.contact-card span {
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(0, 255, 157, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(0, 255, 157, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 255, 157, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff9d;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    background: rgba(0, 255, 157, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0f1c;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #0a0f1c;
    color: #a0aec0;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff9d, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.3));
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.footer-brand p {
    color: #a0aec0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'JetBrains Mono', monospace;
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-section a:hover {
    color: #00ff9d;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
    padding-left: 0.5rem;
}

.footer-section a i {
    margin-right: 0.5rem;
    color: #00ff9d;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 157, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #00ff9d;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 15, 28, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 255, 157, 0.1);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        flex: 1;
        min-width: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    section {
        padding: 3rem 0;
    }

    .services-grid,
    .tools-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .badge {
        min-width: auto;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .badge-text {
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f1c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff9d, #00eaff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00eaff, #00ff9d);
}

/* Selection */
::selection {
    background: rgba(0, 255, 157, 0.3);
    color: #ffffff;
}