:root {
    /* Refined Modern Corporate Palette */
    --primary: #00D4FF;    /* Electric Cyan */
    --primary-glow: rgba(0, 212, 255, 0.3);
    --primary-dark: #00A3CC;
    --secondary: #0A192F;  /* Deep Space Navy */
    --secondary-light: #112240; /* Lighter Navy for cards */
    --accent: #64FFDA;     /* Teal accent */
    --accent-glow: rgba(100, 255, 218, 0.2);
    --dark: #020C1B;       /* Deepest blue/black */
    --light: #CCD6F6;      /* High contrast light text */
    --white: #E6F1FF;
    --text-muted: #8892B0;
    --container-max: 1200px;
    --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: width 0.3s, height 0.3s;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
}

header .container {
    max-width: 100%;
    padding: 0 4rem;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px; /* Neater base desktop height, down from 160px */
    transition: var(--transition);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.brand-text {
    font-size: 2.6rem; /* Neater base size, down from 3.2rem */
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    line-height: 1;
}

.brand-blue {
    color: #0161E3; 
}

.brand-highlight {
    color: #ffffff; 
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0px;
    margin-left: 10px;
    font-size: 2.6rem; /* Neater base size, down from 3.2rem */
    transition: var(--transition);
}

.logo-img {
    height: 95px; /* Neater base height, down from 120px */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    transition: var(--transition);
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px var(--primary));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Scroll Shrink State for Laptop/Desktop (screens wider than 992px) */
@media (min-width: 993px) {
    header.scrolled nav {
        height: 85px; /* Extremely neat and sleek sticky bar height */
    }
    header.scrolled .logo-img {
        height: 60px; /* Small clean logo */
    }
    header.scrolled .brand-text,
    header.scrolled .brand-highlight {
        font-size: 2.0rem; /* Compact clean typography lockup */
    }
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
}

/* Hero Section */
#hero {
    padding: 280px 0 160px;
    background: radial-gradient(circle at 50% 30%, rgba(10, 25, 47, 1) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.river-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 200%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230A192F" fill-opacity="0.6" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 50% 100%;
    animation: wave 20s linear infinite;
}

.wave:nth-child(2) {
    bottom: -30px;
    opacity: 0.3;
    animation: wave 15s linear infinite reverse;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
}

#hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    font-weight: 800;
    color: var(--white);
}

.highlight {
    color: var(--primary);
    position: relative;
}

#hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tech Stack Marquee / Banner */
.tech-banner {
    background: var(--secondary-light);
    border-top: 1px solid rgba(100, 255, 218, 0.05);
    border-bottom: 1px solid rgba(100, 255, 218, 0.05);
    padding: 2rem 0;
    overflow: hidden;
}

.tech-banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.7;
}

.tech-banner-content span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border: none;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn.primary {
    border: 2px solid var(--primary);
    color: var(--dark);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn.primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-5px);
}

.btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: 1rem;
}

.btn.secondary:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.btn.full-width {
    width: 100%;
    margin-left: 0;
}

/* Local Impact Section */
#local-impact {
    padding: 80px 0;
    background: var(--dark);
}

.trust-label {
    text-align: center;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 4rem;
}

.impact-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
}

.impact-stat {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.impact-stat span {
    color: var(--primary);
}

.impact-desc {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services */
#services {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--secondary-light) 100%);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
}

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

.service-card {
    padding: 3.5rem 2.5rem;
    background: var(--dark);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(100, 255, 218, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: rgba(10, 25, 47, 0.9);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 1.5rem;
}

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

.service-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Pricing */
#pricing {
    padding: 140px 0;
    background: var(--secondary-light);
}

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

.pricing-card {
    padding: 4rem 3rem;
    background: var(--dark);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px -12px rgba(0, 212, 255, 0.15);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.5rem;
    color: var(--light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

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

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
}

.maintenance-banner {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

/* Process */
#process {
    padding: 140px 0;
    background: var(--dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    padding: 3rem;
    background: rgba(17, 34, 64, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step:hover {
    border-color: var(--accent);
    background: rgba(17, 34, 64, 0.8);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.1;
    margin-bottom: 1rem;
    line-height: 1;
}

.step h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

/* About Section */
#about {
    padding: 140px 0;
    background: var(--secondary-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--light);
}

.about-visual {
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, var(--dark) 100%);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    justify-content: center;
    box-shadow: var(--shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    width: 100%;
}

.glass-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.glass-stats h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.glass-stats p {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Why Us */
#why-us {
    padding: 100px 0;
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-item h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--text-muted);
}

/* Contact Section */
#contact {
    padding: 160px 0;
    background: var(--dark);
    position: relative;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--secondary-light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    border-right: 1px solid rgba(100, 255, 218, 0.05);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    padding: 1.4rem 2.8rem;
}

.btn-icon {
    font-size: 1.4rem;
}

.location-badge {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form-container {
    padding: 5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    color: var(--light);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-group input, 
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(2, 12, 27, 0.4);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 1.4rem;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1.05rem;
    transition: var(--transition);
    appearance: none;
}

.form-group select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238892B0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1.4rem center;
    background-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(2, 12, 27, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #000000;
    border-top: 1px solid rgba(100, 255, 218, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    header .container {
        padding: 0 2rem;
    }
    .brand-text, .brand-highlight {
        font-size: 2.4rem;
    }
    .logo-img {
        height: 90px;
    }
    .about-wrapper, .contact-box {
        grid-template-columns: 1fr;
    }
    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(100, 255, 218, 0.05);
        padding: 4rem 2rem;
    }
    .contact-form-container {
        padding: 4rem 2rem;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 1.5rem 0 0.5rem;
    }
    .brand-text, .brand-highlight { font-size: 1.8rem; } 
    .logo-img { height: 75px; } 
    nav { height: 110px; } 
    
    #hero h1 { font-size: 3.5rem; }
    .impact-grid { flex-direction: column; gap: 3rem; }
    .section-title { font-size: 2.8rem; }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }

    .menu-toggle, .nav-links {
        display: none !important;
    }

    body {
        padding-bottom: 80px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        justify-content: space-around;
        padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
        z-index: 2000;
        border-top: 1px solid rgba(100, 255, 218, 0.1);
        height: auto;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.75rem;
        transition: var(--transition);
        width: 25%;
    }

    .nav-item.active, .nav-item:hover {
        color: var(--primary);
    }

    .nav-icon {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
}

/* Payment Buttons for Pricing */
.btn-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    padding: 1.4rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    width: 100%;
}

.btn-payment .btn-icon {
    font-size: 1.4rem;
}

.btn-pay-starter {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pay-starter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-pay-pro {
    background: linear-gradient(135deg, var(--primary) 0%, #007bb5 100%);
    color: var(--dark);
    border: none;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.btn-pay-pro:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #0091d6 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
    color: var(--dark);
}

.btn-pay-custom {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-pay-custom:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.15);
}

/* Sub-page Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding: 100px 0;
}

.about-main-text h2, .about-main-text h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-main-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.core-services-list {
    list-style: none;
    margin: 1.5rem 0;
}

.core-services-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--light);
}

.core-services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.slogan-box {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
}

.slogan-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-link {
    margin-top: auto;
    padding-top: 1.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Service Detail Styles */
.service-detail-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(10, 25, 47, 0.5) 100%);
}

.service-intro-card {
    background: rgba(17, 34, 64, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 255, 218, 0.08);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow);
}

.service-intro-card h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-intro-card p {
    font-size: 1.15rem;
    color: var(--light);
    line-height: 1.8;
}

.features-subgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-subcard {
    background: rgba(2, 12, 27, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-subcard:hover {
    transform: translateY(-5px);
    background: rgba(17, 34, 64, 0.6);
    border-color: var(--primary);
}

.feature-subcard h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-subcard p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.tech-spec-box {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(2, 12, 27, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
}

.tech-spec-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.tech-spec-box p {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-box-sub {
    margin-top: 4rem;
    text-align: center;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(2, 12, 27, 0.8) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 4rem 2rem;
}

.cta-box-sub h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box-sub p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 60px 0;
    }
    .service-intro-card, .tech-spec-box {
        padding: 2rem;
    }
}
