:root {
    --bg-primary: #050810;
    --bg-secondary: #0f131f;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-color: #0ea5e9;
    --accent-glow: #38bdf8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --nav-height: 80px;
    --section-spacing: 40px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: var(--section-spacing) 0
}

.fade-in-up {
    opacity: 1;
    transform: none
}

.faq-item,
.glass-card,
.service-card,
.stat-item,
.testimonial-card,
.trust-card {
    opacity: 1;
    transform: none
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s ease, border-color .4s ease
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(14, 165, 233, .1);
    border-color: rgba(14, 165, 233, .3)
}

.btn {
    display: inline-block;
    padding: .9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #0284c7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, .3)
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(14, 165, 233, .5);
    transform: translateY(-2px)
}

.btn-secondary {
    background: 0 0;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(5px)
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, .05)
}

.btn-sm {
    padding: .6rem 1.4rem;
    font-size: .9rem
}

.full-width {
    width: 100%
}

.text-center {
    text-align: center
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(5, 8, 16, .8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff
}

.logo-img {
    height: 32px;
    width: auto
}

.nav-list {
    display: flex;
    gap: 2rem
}

.nav-link {
    color: var(--text-secondary);
    font-size: .95rem;
    font-weight: 500
}

.nav-link:hover {
    color: var(--accent-color)
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: .3s
}

.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    contain: strict;
    pointer-events: none
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%)
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    will-change: opacity;
    contain: layout style
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 10%;
    left: -100px
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    bottom: 10%;
    right: -100px
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center
}

.hero-tagline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(14, 165, 233, .1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, .2)
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px
}

.hero-btns {
    display: flex;
    gap: 1rem
}

.visual-card {
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01))
}

.shield-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite
}

.code-lines {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    opacity: .2
}

.line {
    height: 6px;
    background: #fff;
    margin-bottom: 12px;
    border-radius: 3px
}

.w-70 {
    width: 70%
}

.w-50 {
    width: 50%
}

.w-90 {
    width: 90%
}

.w-60 {
    width: 60%
}

.status-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(16, 185, 129, .15);
    color: #34d399;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, .2)
}

.dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px #34d399
}

.pulse .dot {
    animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .7;
        transform: scale(1.2)
    }
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(0)
    }
}

.trust-signals {
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    background: rgba(255, 255, 255, .01)
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: .95rem
}

.check-icon {
    color: var(--accent-color)
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px
}

.section-title {
    font-size: 2rem;
    margin-bottom: .75rem;
    color: #fff
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 2rem
}

.service-icon {
    background: rgba(14, 165, 233, .1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--accent-color)
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: .75rem;
    color: #fff
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1
}

.link-btn {
    color: var(--accent-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .3s
}

.link-btn:hover {
    gap: 10px
}

.why-us {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.why-list li {
    display: flex;
    gap: 1rem
}

.check-circle {
    min-width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    box-shadow: 0 0 15px rgba(14, 165, 233, .3)
}

.why-list strong {
    display: block;
    color: #fff;
    margin-bottom: .25rem;
    font-size: 1rem
}

.why-list p {
    color: var(--text-secondary);
    font-size: .9rem
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    position: relative
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: var(--accent-color)
}

.step h3 {
    margin-bottom: .5rem;
    color: #fff
}

.step p {
    color: var(--text-secondary);
    font-size: .9rem;
    padding: 0 10px
}

.step-line {
    height: 2px;
    background: var(--glass-border);
    flex-grow: 1;
    margin-top: 25px;
    position: relative;
    z-index: 1
}

.about-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .01) 100%);
    padding: 2rem
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem
}

.about-content strong {
    color: #fff
}

.cta-banner {
    padding: 40px 0
}

.cta-content {
    background: linear-gradient(90deg, #1e293b, #0f172a);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, .2), transparent 70%)
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem
}

.info-item svg {
    color: var(--accent-color)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.form-group label {
    font-size: .9rem;
    font-weight: 500;
    color: #fff
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all .3s
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, .06)
}

.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    background: #080b12
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 30px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.logo-img-sm {
    height: 24px;
    width: auto
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: .75rem
}

.msme-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: .8rem;
    color: var(--text-secondary)
}

.footer-links {
    display: flex;
    gap: 2rem
}

.footer-links a {
    color: var(--text-secondary);
    font-size: .95rem
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 15px 15px;
    text-align: center;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto
}

.contact-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: .75rem;
    text-decoration: none;
    transition: all .3s ease
}

.contact-social-card svg {
    color: var(--accent-color);
    transition: transform .3s ease
}

.contact-social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, .4)
}

.contact-social-card:hover svg {
    transform: scale(1.15)
}

.contact-social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff
}

.contact-social-handle {
    font-size: .9rem;
    color: var(--text-secondary)
}

.udyam-number {
    font-size: .75rem;
    color: var(--text-secondary);
    margin-top: .5rem;
    font-family: monospace;
    letter-spacing: .5px
}

@media (max-width:992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem
    }

    .hero-tagline {
        margin: 0 auto 1rem
    }

    .hero-subtitle {
        margin: 0 auto 2rem
    }

    .hero-btns {
        justify-content: center
    }

    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .contact-social-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        flex-direction: column;
        gap: 1.5rem
    }

    .step-line {
        display: none
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto
    }
}

@media (max-width:768px) {
    .nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: 0;
        background: var(--bg-primary);
        overflow: hidden;
        transition: height .3s ease;
        border-bottom: 1px solid var(--glass-border)
    }

    .nav.active {
        height: 260px
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem
    }

    .mobile-menu-btn {
        display: flex
    }

    .header .btn {
        display: none
    }

    .hero-title {
        font-size: 2.25rem
    }

    .cta-btns {
        flex-direction: column
    }

    .footer-container {
        flex-direction: column;
        text-align: center
    }

    .footer-logo {
        justify-content: center
    }

    .contact-social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .contact-social-card {
        padding: 1.5rem 1rem
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.visual-card-premium {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    background: 0 0
}

.hero-img-3d {
    width: 100%;
    height: auto;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%)
}

.technologies-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, .01)
}

.tech-marquee-wrapper {
    text-align: center
}

.tech-label {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500
}

.tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px
}

.tech-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: .9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all .3s
}

.tech-item:hover {
    background: rgba(14, 165, 233, .1);
    color: var(--accent-color);
    border-color: rgba(14, 165, 233, .3);
    transform: translateY(-2px)
}

.trust-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem
}

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .2), rgba(14, 165, 233, 0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(14, 165, 233, .1)
}

.trust-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    color: #fff
}

.trust-card p {
    color: var(--text-secondary);
    font-size: .9rem
}

.project-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    transition: all .4s ease
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px
}

.project-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600
}

.project-badge {
    font-size: .75rem;
    padding: 6px 12px;
    background: rgba(14, 165, 233, .1);
    color: var(--accent-color);
    border: 1px solid rgba(14, 165, 233, .2);
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin: 1rem 0 auto;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border)
}

.tech-stack img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, .1));
    transition: transform .3s;
    opacity: .9;
    width: 28px;
    height: 28px;
    object-fit: contain
}

.tech-stack img:hover {
    transform: scale(1.2);
    opacity: 1
}

.project-card .btn-sm {
    margin-top: 1.5rem;
    width: fit-content
}

.footer-socials {
    display: flex;
    gap: 15px;
    align-items: center
}

.footer-socials a {
    color: var(--text-secondary);
    transition: color .3s, transform .3s;
    background: rgba(255, 255, 255, .05);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid transparent
}

.footer-socials a:hover {
    color: var(--accent-color);
    background: rgba(14, 165, 233, .15);
    border-color: rgba(14, 165, 233, .3);
    transform: translateY(-2px)
}

.page-header {
    position: relative;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
    overflow: hidden
}

.page-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: .75rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: .9rem;
    color: var(--text-secondary)
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color .3s
}

.breadcrumb a:hover {
    color: var(--accent-color)
}

.breadcrumb span:not(:last-child) {
    opacity: .5
}

.nav-link.active {
    color: var(--accent-color)
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color)
}

.service-detail-content h2 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: #fff
}

.service-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem
}

.feature-item h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: .5rem
}

.feature-item p {
    font-size: .9rem;
    color: var(--text-secondary)
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.service-intro-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.service-intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color)
}

.service-intro-block p {
    color: var(--text-secondary);
    font-size: 1.05rem
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem
}

.service-feature-card h2 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: .75rem
}

.service-feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem
}

.feature-list {
    list-style: none
}

.feature-list li {
    color: var(--text-secondary);
    padding: .4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: .9rem
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%
}

.why-choose-section {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px
}

.why-choose-section h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem
}

.why-item {
    display: flex;
    gap: 1rem
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.why-item h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: .25rem
}

.why-item p {
    color: var(--text-secondary);
    font-size: .9rem
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.process-step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-color);
    flex-shrink: 0
}

.process-step-content h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: .5rem
}

.process-step-content>p {
    color: var(--text-secondary);
    margin-bottom: 1rem
}

.process-list {
    list-style: none
}

.process-list li {
    color: var(--text-secondary);
    padding: .3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: .9rem
}

.process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color)
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem
}

.about-section h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: .75rem
}

.about-section p {
    color: var(--text-secondary);
    margin-bottom: .75rem
}

.highlight-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, .1), rgba(14, 165, 233, .02));
    border-color: rgba(14, 165, 233, .2)
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, .15);
    color: #34d399;
    border-radius: 8px;
    font-weight: 600;
    margin: .75rem 0
}

.small-text {
    font-size: .85rem;
    opacity: .8
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem
}

.contact-page .contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: .75rem;
    color: #fff
}

@media (max-width:768px) {
    .page-title {
        font-size: 1.75rem
    }

    .process-step-card,
    .service-detail-card {
        grid-template-columns: 1fr
    }

    .process-step-number,
    .service-detail-icon {
        margin: 0 auto
    }

    .process-step-content,
    .service-detail-content {
        text-align: center
    }

    .service-cta {
        justify-content: center
    }

    .service-intro-block {
        flex-direction: column;
        text-align: center
    }

    .why-choose-section {
        padding: 1.5rem 1rem
    }

    .why-item {
        flex-direction: column;
        text-align: center
    }

    .why-icon {
        margin: 0 auto
    }
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    z-index: 9999;
    transition: width .1s ease-out
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all .3s ease;
    animation: whatsapp-pulse 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
}

.whatsapp-float svg {
    width: 28px;
    height: 28px
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.05);
        opacity: .9
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, .4)
}

.back-to-top svg {
    width: 20px;
    height: 20px
}

.hero-title-animated {
    background: linear-gradient(90deg, #fff 0, #38bdf8 25%, #fff 50%, #38bdf8 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.btn {
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease
}

.btn:active::before {
    width: 300px;
    height: 300px
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #0284c7);
    position: relative
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-glow), #0284c7);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
    filter: blur(10px)
}

.btn-primary:hover::after {
    opacity: .5
}

.glass-card {
    transform-style: preserve-3d;
    perspective: 1000px
}

.glass-card.tilt-effect {
    transition: transform .1s ease-out, box-shadow .3s ease
}

.tech-marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent)
}

.tech-marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee 25s linear infinite;
    padding: 10px 0
}

.tech-marquee-track:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.tech-marquee .tech-item {
    white-space: nowrap;
    flex-shrink: 0
}

.stats-section {
    padding: 50px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, .08), transparent 70%);
    pointer-events: none
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item {
    padding: 1.5rem
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.2
}

.stat-suffix {
    font-size: 2rem;
    color: var(--accent-color)
}

.stat-label {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-top: .25rem;
    display: block
}

.testimonials-section {
    padding: var(--section-spacing) 0
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem
}

.testimonial-card {
    padding: 2rem;
    position: relative
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: .15;
    font-family: Georgia, serif
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1
}

.avatar-initials {
    display: none
}

.author-info {
    display: flex;
    flex-direction: column
}

.author-name {
    color: #fff;
    font-weight: 600;
    font-size: .95rem
}

.author-role {
    color: var(--text-secondary);
    font-size: .85rem
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: .75rem
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
    color: #fbbf24
}

.faq-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--glass-border)
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color .3s
}

.faq-question:hover {
    color: var(--accent-color)
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    transition: transform .3s ease;
    flex-shrink: 0
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.6
}

.header.scrolled {
    height: 60px;
    background: rgba(5, 8, 16, .95)
}

.header.scrolled .logo-img {
    height: 28px
}

.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.glass-card,
.glow,
.hero-visual {
    will-change: transform
}

section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px
}

@media (prefers-reduced-motion:no-preference) {
    .fade-in-up {
        transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1)
    }
}

@media (max-width:768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px
    }

    .back-to-top {
        right: 20px;
        width: 44px;
        height: 44px
    }

    .stat-number {
        font-size: 2rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .stat-item {
        padding: 1rem
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .faq-question {
        font-size: .95rem;
        padding: 1rem 0
    }
}

@media (max-width:480px) {
    .contact-social-grid {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 1.85rem
    }

    .section-title {
        font-size: 1.5rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-number {
        font-size: 1.75rem
    }

    .stat-suffix {
        font-size: 1.25rem
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: var(--section-spacing) 0
}

.fade-in-up {
    opacity: 1;
    transform: none
}

.faq-item,
.glass-card,
.service-card,
.stat-item,
.testimonial-card,
.trust-card {
    opacity: 1;
    transform: none
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s ease, border-color .4s ease
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(14, 165, 233, .1);
    border-color: rgba(14, 165, 233, .3)
}

.btn {
    display: inline-block;
    padding: .9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #0284c7);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, .3)
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(14, 165, 233, .5);
    transform: translateY(-2px)
}

.btn-secondary {
    background: 0 0;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(5px)
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, .05)
}

.btn-sm {
    padding: .6rem 1.4rem;
    font-size: .9rem
}

.full-width {
    width: 100%
}

.text-center {
    text-align: center
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(5, 8, 16, .8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff
}

.logo-img {
    height: 32px;
    width: auto
}

.nav-list {
    display: flex;
    gap: 2rem
}

.nav-link {
    color: var(--text-secondary);
    font-size: .95rem;
    font-weight: 500
}

.nav-link:hover {
    color: var(--accent-color)
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: .3s
}

.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    contain: strict;
    pointer-events: none
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%)
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    will-change: opacity;
    contain: layout style
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: 10%;
    left: -100px
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    bottom: 10%;
    right: -100px
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center
}

.hero-tagline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(14, 165, 233, .1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, .2)
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px
}

.hero-btns {
    display: flex;
    gap: 1rem
}

.visual-card {
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01))
}

.shield-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite
}

.code-lines {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    opacity: .2
}

.line {
    height: 6px;
    background: #fff;
    margin-bottom: 12px;
    border-radius: 3px
}

.w-70 {
    width: 70%
}

.w-50 {
    width: 50%
}

.w-90 {
    width: 90%
}

.w-60 {
    width: 60%
}

.status-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(16, 185, 129, .15);
    color: #34d399;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, .2)
}

.dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px #34d399
}

.pulse .dot {
    animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .7;
        transform: scale(1.2)
    }
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(0)
    }
}

.trust-signals {
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    background: rgba(255, 255, 255, .01)
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: .95rem
}

.check-icon {
    color: var(--accent-color)
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #fff
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%
}

.service-icon {
    background: rgba(14, 165, 233, .1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--accent-color)
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1
}

.link-btn {
    color: var(--accent-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .3s
}

.link-btn:hover {
    gap: 10px
}

.why-us {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem
}

.why-list li {
    display: flex;
    gap: 1.2rem
}

.check-circle {
    min-width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    box-shadow: 0 0 15px rgba(14, 165, 233, .3)
}

.why-list strong {
    display: block;
    color: #fff;
    margin-bottom: .5rem;
    font-size: 1.1rem
}

.why-list p {
    color: var(--text-secondary);
    font-size: .95rem
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
    position: relative
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    color: var(--accent-color)
}

.step h3 {
    margin-bottom: .5rem;
    color: #fff
}

.step p {
    color: var(--text-secondary);
    font-size: .9rem;
    padding: 0 10px
}

.step-line {
    height: 2px;
    background: var(--glass-border);
    flex-grow: 1;
    margin-top: 25px;
    position: relative;
    z-index: 1
}

.about-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .01) 100%)
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem
}

.about-content strong {
    color: #fff
}

.cta-banner {
    padding: 60px 0
}

.cta-content {
    background: linear-gradient(90deg, #1e293b, #0f172a);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, .2), transparent 70%)
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem
}

.info-item svg {
    color: var(--accent-color)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.form-group label {
    font-size: .9rem;
    font-weight: 500;
    color: #fff
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all .3s
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, .06)
}

.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
    background: #080b12
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 40px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.logo-img-sm {
    height: 24px;
    width: auto
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 1rem
}

.msme-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: .8rem;
    color: var(--text-secondary)
}

.footer-links {
    display: flex;
    gap: 2rem
}

.footer-links a {
    color: var(--text-secondary);
    font-size: .95rem
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 15px;
    text-align: center;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem
}

@media (max-width:992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem
    }

    .hero-tagline {
        margin: 0 auto 1.5rem
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem
    }

    .hero-btns {
        justify-content: center
    }

    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem
    }

    .step-line {
        display: none
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto
    }
}

@media (max-width:768px) {
    .nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: 0;
        background: var(--bg-primary);
        overflow: hidden;
        transition: height .3s ease;
        border-bottom: 1px solid var(--glass-border)
    }

    .nav.active {
        height: 260px
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem
    }

    .mobile-menu-btn {
        display: flex
    }

    .header .btn {
        display: none
    }

    .hero-title {
        font-size: 2.5rem
    }

    .cta-btns {
        flex-direction: column
    }

    .footer-container {
        flex-direction: column;
        text-align: center
    }

    .footer-logo {
        justify-content: center
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.visual-card-premium {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    background: 0 0
}

.hero-img-3d {
    width: 100%;
    height: auto;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%)
}

.technologies-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, .01)
}

.tech-marquee-wrapper {
    text-align: center
}

.tech-label {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500
}

.tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px
}

.tech-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: .9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all .3s
}

.tech-item:hover {
    background: rgba(14, 165, 233, .1);
    color: var(--accent-color);
    border-color: rgba(14, 165, 233, .3);
    transform: translateY(-2px)
}

.trust-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.trust-card {
    text-align: center;
    padding: 3rem 2rem
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .2), rgba(14, 165, 233, 0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(14, 165, 233, .1)
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff
}

.trust-card p {
    color: var(--text-secondary);
    font-size: .95rem
}

.project-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    height: 100%;
    transition: all .4s ease
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 10px
}

.project-header h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600
}

.project-badge {
    font-size: .75rem;
    padding: 6px 12px;
    background: rgba(14, 165, 233, .1);
    color: var(--accent-color);
    border: 1px solid rgba(14, 165, 233, .2);
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin: 1.5rem 0 auto;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border)
}

.tech-stack img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, .1));
    transition: transform .3s;
    opacity: .9;
    width: 28px;
    height: 28px;
    object-fit: contain
}

.tech-stack img:hover {
    transform: scale(1.2);
    opacity: 1
}

.project-card .btn-sm {
    margin-top: 2rem;
    width: fit-content
}

.footer-socials {
    display: flex;
    gap: 15px;
    align-items: center
}

.footer-socials a {
    color: var(--text-secondary);
    transition: color .3s, transform .3s;
    background: rgba(255, 255, 255, .05);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid transparent
}

.footer-socials a:hover {
    color: var(--accent-color);
    background: rgba(14, 165, 233, .15);
    border-color: rgba(14, 165, 233, .3);
    transform: translateY(-2px)
}

.page-header {
    position: relative;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
    overflow: hidden
}

.page-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: var(--text-secondary)
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color .3s
}

.breadcrumb a:hover {
    color: var(--accent-color)
}

.breadcrumb span:not(:last-child) {
    opacity: .5
}

.nav-link.active {
    color: var(--accent-color)
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color)
}

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: .75rem;
    color: #fff
}

.service-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem
}

.feature-item h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: .5rem
}

.feature-item p {
    font-size: .9rem;
    color: var(--text-secondary)
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.service-intro-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem
}

.service-intro-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color)
}

.service-intro-block p {
    color: var(--text-secondary);
    font-size: 1.1rem
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem
}

.service-feature-card h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem
}

.service-feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem
}

.feature-list {
    list-style: none
}

.feature-list li {
    color: var(--text-secondary);
    padding: .5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: .95rem
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%
}

.why-choose-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px
}

.why-choose-section h2 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.why-item {
    display: flex;
    gap: 1rem
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.why-item h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: .5rem
}

.why-item p {
    color: var(--text-secondary);
    font-size: .95rem
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.process-step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-color);
    flex-shrink: 0
}

.process-step-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: .75rem
}

.process-step-content>p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem
}

.process-list {
    list-style: none
}

.process-list li {
    color: var(--text-secondary);
    padding: .4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: .95rem
}

.process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color)
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.about-section h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem
}

.about-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem
}

.highlight-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, .1), rgba(14, 165, 233, .02));
    border-color: rgba(14, 165, 233, .2)
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, .15);
    color: #34d399;
    border-radius: 8px;
    font-weight: 600;
    margin: 1rem 0
}

.small-text {
    font-size: .85rem;
    opacity: .8
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem
}

.contact-page .contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff
}

@media (max-width:768px) {
    .page-title {
        font-size: 2rem
    }

    .process-step-card,
    .service-detail-card {
        grid-template-columns: 1fr
    }

    .process-step-number,
    .service-detail-icon {
        margin: 0 auto
    }

    .process-step-content,
    .service-detail-content {
        text-align: center
    }

    .service-cta {
        justify-content: center
    }

    .service-intro-block {
        flex-direction: column;
        text-align: center
    }

    .why-choose-section {
        padding: 2rem 1.5rem
    }

    .why-item {
        flex-direction: column;
        text-align: center
    }

    .why-icon {
        margin: 0 auto
    }
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-glow));
    z-index: 9999;
    transition: width .1s ease-out
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all .3s ease;
    animation: whatsapp-pulse 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
}

.whatsapp-float svg {
    width: 28px;
    height: 28px
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.05);
        opacity: .9
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, .4)
}

.back-to-top svg {
    width: 20px;
    height: 20px
}

.hero-title-animated {
    background: linear-gradient(90deg, #fff 0, #38bdf8 25%, #fff 50%, #38bdf8 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.btn {
    position: relative;
    overflow: hidden
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease
}

.btn:active::before {
    width: 300px;
    height: 300px
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #0284c7);
    position: relative
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-glow), #0284c7);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
    filter: blur(10px)
}

.btn-primary:hover::after {
    opacity: .5
}

.glass-card {
    transform-style: preserve-3d;
    perspective: 1000px
}

.glass-card.tilt-effect {
    transition: transform .1s ease-out, box-shadow .3s ease
}

.tech-marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent)
}

.tech-marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee 25s linear infinite;
    padding: 10px 0
}

.tech-marquee-track:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.tech-marquee .tech-item {
    white-space: nowrap;
    flex-shrink: 0
}

.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, .08), transparent 70%);
    pointer-events: none
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item {
    padding: 2rem
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-glow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1.2
}

.stat-suffix {
    font-size: 2.5rem;
    color: var(--accent-color)
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: .5rem;
    display: block
}

.testimonials-section {
    padding: var(--section-spacing) 0
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem
}

.testimonial-card {
    padding: 2.5rem;
    position: relative
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: .15;
    font-family: Georgia, serif
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.author-info {
    display: flex;
    flex-direction: column
}

.author-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem
}

.author-role {
    color: var(--text-secondary);
    font-size: .9rem
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
    color: #fbbf24
}

.faq-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary)
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--glass-border)
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color .3s
}

.faq-question:hover {
    color: var(--accent-color)
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    transition: transform .3s ease;
    flex-shrink: 0
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7
}

.header.scrolled {
    height: 60px;
    background: rgba(5, 8, 16, .95)
}

.header.scrolled .logo-img {
    height: 28px
}

.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.glass-card,
.glow,
.hero-visual {
    will-change: transform
}

section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px
}

@media (prefers-reduced-motion:no-preference) {
    .fade-in-up {
        transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1)
    }
}

@media (max-width:768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px
    }

    .back-to-top {
        right: 20px;
        width: 44px;
        height: 44px
    }

    .stat-number {
        font-size: 2.5rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0
    }
}

/* Contact Page Styles */
.contact-page-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto
}

.contact-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: .75rem;
    text-decoration: none;
    transition: all .3s ease;
    min-height: 180px
}

.contact-social-card svg {
    color: var(--accent-color);
    transition: transform .3s ease
}

.contact-social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, .4)
}

.contact-social-card:hover svg {
    transform: scale(1.15)
}

.contact-social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff
}

.contact-social-handle {
    font-size: .9rem;
    color: var(--text-secondary)
}

.udyam-number {
    font-size: .75rem;
    color: var(--text-secondary);
    margin-top: .5rem;
    font-family: monospace;
    letter-spacing: .5px
}

@media (max-width:992px) {
    .contact-social-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:480px) {
    .contact-social-grid {
        grid-template-columns: 1fr
    }

    .contact-social-card {
        padding: 1.5rem 1rem;
        min-height: auto
    }
}